BioPerl
view release on metacpan or search on metacpan
Bio/AnalysisParserI.pm view on Meta::CPAN
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via the
web:
https://github.com/bioperl/bioperl-live/issues
=head1 AUTHOR - Steve Chervitz, Jason Stajich, Hilmar Lapp
Email sac@bioperl.org
Authors of Bio::SeqAnalysisParserI on which this module is based:
Email jason@bioperl.org
Email hlapp@gmx.net
=head1 COPYRIGHT
Copyright (c) 2001 Steve Chervitz. All Rights Reserved.
=head1 DISCLAIMER
This software is provided "as is" without warranty of any kind.
=head1 APPENDIX
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
=cut
package Bio::AnalysisParserI;
use strict;
use base qw(Bio::Root::RootI);
=head2 next_result
Title : next_result
Usage : $result = $obj->next_result();
Function: Returns the next result available from the input, or
undef if there are no more results.
Example :
Returns : A Bio::Search::Result::ResultI implementing object,
or undef if there are no more results.
Args : none
=cut
sub next_result {
my ($self);
$self->throw_not_implemented;
}
1;
__END__
NOTE (sac): My ten-month old son Russell added the following line.
It doesn't look like it will compile so I'm putting it here:
mt6 j7qa
( run in 1.472 second using v1.01-cache-2.11-cpan-39bf76dae61 )