Bio::Nexus::TaxaBlock represents a taxa nexus block.
Begin Taxa;
Dimensions NTax=4; TaxLabels fish [comment] 'african frog' "rat snake" 'red mouse';
End;
require 'bio/db/nexus' # Create a new parser: nexus = Bio::Nexus.new( nexus_data_as_string ) # Get first taxa block: taxa_block = nexus.get_taxa_blocks[ 0 ] # Get number of taxa: number_of_taxa = taxa_block.get_number_of_taxa.to_i # Get name of first taxon: first_taxon = taxa_block.get_taxa[ 0 ]
Adds a taxon name to this block.
Arguments:
(required) taxon: String
# File lib/bio/db/nexus.rb, line 904 def add_taxon( taxon ) @taxa.push( taxon ) end
Gets the “number of taxa” property.
Returns |
Integer |
# File lib/bio/db/nexus.rb, line 878 def get_number_of_taxa @number_of_taxa end
Gets the taxa of this block.
Returns |
Array |
# File lib/bio/db/nexus.rb, line 886 def get_taxa @taxa end
Sets the “number of taxa” property.
Arguments:
(required) number_of_taxa: Integer
# File lib/bio/db/nexus.rb, line 895 def set_number_of_taxa( number_of_taxa ) @number_of_taxa = number_of_taxa end
Returns a String describing this block as nexus formatted data.
Returns |
# File lib/bio/db/nexus.rb, line 862 def to_nexus line_1 = String.new line_1 << DIMENSIONS if ( Nexus::Util::larger_than_zero( get_number_of_taxa ) ) line_1 << " " << NTAX << "=" << get_number_of_taxa end line_1 << DELIMITER line_2 = String.new line_2 << TAXLABELS << " " << Nexus::Util::array_to_string( get_taxa ) << DELIMITER Nexus::Util::to_nexus_helper( TAXA_BLOCK, [ line_1, line_2 ] ) end
Generated with the Darkfish Rdoc Generator 2.