Method: Bio::Nexus::NexusMatrix#get_name

Defined in:
lib/bio/db/nexus.rb

#get_name(row) ⇒ Object

Convenience method which return the value of column 0 and row ‘row’ which is usually the name.


Arguments:

  • (required) row: Integer

Returns

String



1667
1668
1669
# File 'lib/bio/db/nexus.rb', line 1667

def get_name( row )
  get_value( row, 0 ).to_s
end