NAME
Bio::SFF::Reader - An SFF reader
VERSION
version 0.001
SYNOPSIS
my $reader = Bio::SFF::Reader(file => $filename);
while (my $entry = $reader->next_entry) {
say '>', $entry->name;
say $entry->bases;
}
DESCRIPTION
METHODS
new(...)
This method creates a new SFF object
file
The file that should be read. This can either be a filename or a filehandle.
next_entry()
Read an entry and return it as a Bio::SFF:Entry object.
reset()
Reset the iterator to the start of the file.
header()
Returns the Bio::SFF::Header object associated with this reader.
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.