Class: Bio::PhyloXML::Reference

Inherits:
Object
  • Object
show all
Defined in:
lib/bio/db/phyloxml/phyloxml_elements.rb

Overview

Description

A literature reference for a clade. It is recommended to use the ‘doi’ attribute instead of the free text ‘desc’ element whenever possible.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#descObject

String. Free text description.



983
984
985
# File 'lib/bio/db/phyloxml/phyloxml_elements.rb', line 983

def desc
  @desc
end

#doiObject

String. Digital Object Identifier.



980
981
982
# File 'lib/bio/db/phyloxml/phyloxml_elements.rb', line 980

def doi
  @doi
end

Instance Method Details

#to_xmlObject

Converts elements to xml representation. Called by PhyloXML::Writer class.



986
987
988
989
990
991
992
# File 'lib/bio/db/phyloxml/phyloxml_elements.rb', line 986

def to_xml
  ref = LibXML::XML::Node.new('reference')
  Writer.generate_xml(ref, self, [
        [:attr, 'doi'],
        [:simple, 'desc', @desc]])
   return ref
end