| Bio::Das::FeatureIterator - Iterate over a set of Bio::Das::Features |
Bio::Das::FeatureIterator - Iterate over a set of Bio::Das::Features
my $iterator = $das->features(-dsn => ['http://www.wormbase.org/db/das/elegans', 'http://dev.wormbase.org/db/das/elegans' ], -segment => ['I:1,10000','II:1,10000'], -category => 'transcription', -iterator => 1, ); while (my $feature = $iterator=>next_seq) { print $feature,"\n"; }
When the Bio::Das->features() method is called with the -iterator
argument, the method will return an iterator over the features
returned from the various data sources. Each feature can be returned
by calling next_seq() iteratively until the method returns undef.
This is not as neat as it seems, because it works by creating all the
features in advance and storing them in memory. For true pipelined
access to the features, call features() with a callback subroutine.
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2001 Cold Spring Harbor Laboratory
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See DISCLAIMER.txt for disclaimers of warranty.
the Bio::Das::Request manpage, the Bio::Das::HTTP::Fetch manpage, the Bio::Das::Segment manpage, the Bio::Das::Type manpage, the Bio::Das::Stylesheet manpage, the Bio::Das::Source manpage, the Bio::RangeI manpage
| Bio::Das::FeatureIterator - Iterate over a set of Bio::Das::Features |