Represents a single line of a GFF-formatted file. See Bio::GFF for more information.
Creates a Bio::GFF::Record object. Is typically not called directly, but is called automatically when creating a Bio::GFF object.
Arguments:
str: a tab-delimited line in GFF format
# File lib/bio/db/gff.rb, line 125 def initialize(str) @comment = str.chomp[/#.*/] return if /^#/.match(str) @seqname, @source, @feature, @start, @end, @score, @strand, @frame, attributes, = str.chomp.split("\t") @attributes = parse_attributes(attributes) if attributes end
Generated with the Darkfish Rdoc Generator 2.
Comments for the GFF record