Method: Bio::Fastq#seq

Defined in:
lib/bio/db/fastq.rb

#seqObject

returns Bio::Sequence::Generic



439
440
441
442
443
444
# File 'lib/bio/db/fastq.rb', line 439

def seq
  unless defined? @seq then
    @seq = Bio::Sequence::Generic.new(@sequence_string)
  end
  @seq
end