Class: Bio::PhyloXML::Reference
- 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
-
#desc ⇒ Object
String.
-
#doi ⇒ Object
String.
Instance Method Summary collapse
-
#to_xml ⇒ Object
Converts elements to xml representation.
Instance Attribute Details
#desc ⇒ Object
String. Free text description.
983 984 985 |
# File 'lib/bio/db/phyloxml/phyloxml_elements.rb', line 983 def desc @desc end |
#doi ⇒ Object
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_xml ⇒ Object
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 |