class Bio::GFFbrowser::FastaRecord

Attributes

id[R]
seq[R]

Public Class Methods

new(id, seq) click to toggle source
# File lib/bio/db/gff/gff3fasta.rb, line 10
def initialize id, seq
  @id = id
  @seq = seq
end

Public Instance Methods

entry_id() click to toggle source
# File lib/bio/db/gff/gff3fasta.rb, line 15
def entry_id
  @id
end
to_s() click to toggle source
# File lib/bio/db/gff/gff3fasta.rb, line 19
def to_s
  @seq
end