# File lib/bio/graphics/page.rb, line 111 def self.parse_gff(gff_file) require 'bio' a = [] File.open(gff_file).each do |line| next if line =~ /^#/ a << Bio::GFF::GFF3::Record.new(line) end a end