Sha256: 9ae3fa75fcb3668979945c2503c7abfa57d54bf648f70b91e7c0b83a4965eb41

Contents?: true

Size: 261 Bytes

Versions: 5

Compression:

Stored size: 261 Bytes

Contents

module Bio

  module GFFbrowser

    class FastaRecord

      attr_reader :id, :seq

      def initialize id, seq
        @id = id
        @seq = seq
      end

      def entry_id
        @id
      end

      def to_s
        @seq
      end
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bio-gff3-0.9.1 lib/bio/db/gff/gff3fasta.rb
bio-gff3-0.9.0 lib/bio/db/gff/gff3fasta.rb
bio-gff3-0.8.7 lib/bio/db/gff/gff3fasta.rb
bio-gff3-0.8.6 lib/bio/db/gff/gff3fasta.rb
bio-gff3-0.8.5 lib/bio/db/gff/gff3fasta.rb