Bio::DB::HTS::Kseq::Iterator
The Kseq iterator
- Provided by: libbio-db-hts-perl (Version: 3.01-5)
- Report a bug
The Kseq iterator
Bio::DB::HTS::Kseq::Iterator - The Kseq iterator
An object for iterating through the available records. Other methods are available but are undocumented because you should be using the "next_seq" methods as much as possible.
my $iter = $kseq->iterator();
while(my $r = $iter->next_seq()) {
say $r->name;
say $r->desc;
say $r->seq;
say $r->qual;
}