* sync with trunk
[bioperl-live.git] / Bio / SeqAnalysisParserI.pm
blob2f24a33d17ae6a11329cbb1b99c959a7366cb85e
1 # $Id$
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
14 =head1 NAME
16 Bio::SeqAnalysisParserI - Sequence analysis output parser interface
18 =head1 SYNOPSIS
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";
27 =head1 DESCRIPTION
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
41 interface.
43 See Bio::Factory::SeqAnalysisParserFactoryI and
44 Bio::Factory::SeqAnalysisParserFactory for interface and an implementation
45 of the corresponding factory.
47 =head1 FEEDBACK
49 =head2 Mailing Lists
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
59 =head2 Reporting Bugs
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
63 web:
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>
71 =head1 APPENDIX
73 The rest of the documentation details each of the object methods.
74 Internal methods are usually preceded with a _
76 =cut
78 package Bio::SeqAnalysisParserI;
79 use strict;
80 use Carp;
81 use base qw(Bio::Root::RootI);
83 =head2 next_feature
85 Title : next_feature
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.
89 Example :
90 Returns : A Bio::SeqFeatureI implementing object, or undef if there are no
91 more features.
92 Args : none
94 =cut
96 sub next_feature {
97 my ($self) = shift;
98 $self->throw_not_implemented();