class Bio::NeXML::Row

Attributes

id[RW]

A file level unique identifier.

label[RW]

A human readable description.

Public Class Methods

new( id, options = {} ) click to toggle source
# File lib/bio/db/nexml/matrix.rb, line 657
def initialize( id, options = {} )
  @id = id
  properties( options ) unless options.empty?
  block.arity < 1 ? instance_eval( &block ) : block.call( self ) if block_given?
end