NAME

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

VERSION

version 0.007

SYNOPSIS

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

DESCRIPTION

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

METHODS

next_entry()

Read an entry and return it as a Bio::SFF:Entry object.

reset()

Reset the iterator to the start of the file.

AUTHOR

Leon Timmermans <leont@cpan.org>

COPYRIGHT AND LICENSE

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.