
Bio::SFF::Reader::Sequential - Sequential SFF reader

version 0.005

my $reader = Bio::SFF::Reader::Sequential->new(file => $filename);
while (my $entry = $reader->next_entry) {
say '>', $entry->name;
say $entry->bases;
}

This class implements Bio::SFF::Reader. It provides sequential access to an SFF file.

Read an entry and return it as a Bio::SFF:Entry object.
Reset the iterator to the start of the file.

Leon Timmermans <leont@cpan.org>

This software is copyright (c) 2011 by Leon Timmermans, Utrecht University.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.