Record class.
Internal use only.
# File lib/bio/io/flatfile/index.rb, line 714 def self.create(size, key, val) self.new(self.to_string(size, key, val)) end
# File lib/bio/io/flatfile/index.rb, line 696 def initialize(str, size = nil) a = str.split("\t") a.each { |x| x.to_s.gsub!(/[\0000 ]+\z/, '') } @key = a.shift.to_s @val = a @size = (size or str.length) #DEBUG.print "key=#{@key.inspect},val=#{@val.inspect},size=#{@size}\n" end
Generated with the Darkfish Rdoc Generator 2.