3 # BioPerl module for Bio::SeqAnalysisParserI
5 # Cared for by Jason Stajich <jason@bioperl.org>,
6 # and Hilmar Lapp <hlapp@gmx.net>
8 # Copyright Jason Stajich, Hilmar Lapp
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::SeqAnalysisParserI - Sequence analysis output parser interface
20 # get a SeqAnalysisParserI somehow, e.g. by
21 my $parser = Bio::Factory::SeqAnalysisParserFactory->get_parser(
22 '-input' => 'inputfile', '-method' => 'genscan');
23 while( my $feature = $parser->next_feature() ) {
24 print "Feature from ", $feature->start, " to ", $feature->end, "\n";
29 SeqAnalysisParserI is a generic interface for describing sequence analysis
30 result parsers. Sequence analysis in this sense is a search for similarities
31 or the identification of features on the sequence, like a databank search or a
32 a gene prediction result.
34 The concept behind this interface is to have a generic interface in sequence
35 annotation pipelines (as used e.g. in high-throughput automated
36 sequence annotation). This interface enables plug-and-play for new analysis
37 methods and their corresponding parsers without the necessity for modifying
38 the core of the annotation pipeline. In this concept the annotation pipeline
39 has to rely on only a list of methods for which to process the results, and a
40 factory from which it can obtain the corresponding parser implementing this
43 See Bio::Factory::SeqAnalysisParserFactoryI and
44 Bio::Factory::SeqAnalysisParserFactory for interface and an implementation
45 of the corresponding factory.
51 User feedback is an integral part of the evolution of this
52 and other Bioperl modules. Send your comments and suggestions preferably
53 to one of the Bioperl mailing lists.
54 Your participation is much appreciated.
56 bioperl-l@bioperl.org - General discussion
57 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
61 Report bugs to the Bioperl bug tracking system to help us keep track
62 the bugs and their resolution. Bug reports can be submitted via the
65 http://bugzilla.open-bio.org/
67 =head1 AUTHOR - Hilmar Lapp, Jason Stajich
69 Email Hilmar Lapp E<lt>hlapp@gmx.netE<gt>, Jason Stajich E<lt>jason@bioperl.orgE<gt>
73 The rest of the documentation details each of the object methods.
74 Internal methods are usually preceded with a _
78 package Bio
::SeqAnalysisParserI
;
81 use base
qw(Bio::Root::RootI);
86 Usage : $seqfeature = $obj->next_feature();
87 Function: Returns the next feature available in the analysis result, or
88 undef if there are no more features.
90 Returns : A Bio::SeqFeatureI implementing object, or undef if there are no
98 $self->throw_not_implemented();