tag fourth (and hopefully last) alpha
[bioperl-live.git] / branch-1-6 / Bio / Factory / AnalysisI.pm
blob83641e20de16b9b38a950a3d639804f7c626dd0f
1 # $Id$
3 # BioPerl module for Bio::Factory::AnalysisI
5 # Please direct questions and support issues to <bioperl-l@bioperl.org>
7 # Cared for by Martin Senger <martin.senger@gmail.com>
8 # For copyright and disclaimer see below.
11 # POD documentation - main docs before the code
13 =head1 NAME
15 Bio::Factory::AnalysisI - An interface to analysis tool factory
17 =head1 SYNOPSIS
19 This is an interface module - you do not instantiate it.
20 Use I<Bio::Tools::Run::AnalysisFactory> module:
22 use Bio::Tools::Run::AnalysisFactory;
23 my $list = Bio::Tools::Run::AnalysisFactory->new->available_analyses;
25 =head1 DESCRIPTION
27 This interface contains all public methods for showing available
28 analyses and for creating objects representing them.
30 =head1 FEEDBACK
32 =head2 Mailing Lists
34 User feedback is an integral part of the evolution of this and other
35 Bioperl modules. Send your comments and suggestions preferably to
36 the Bioperl mailing list. Your participation is much appreciated.
38 bioperl-l@bioperl.org - General discussion
39 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
41 =head2 Support
43 Please direct usage questions or support issues to the mailing list:
45 I<bioperl-l@bioperl.org>
47 rather than to the module maintainer directly. Many experienced and
48 reponsive experts will be able look at the problem and quickly
49 address it. Please include a thorough description of the problem
50 with code and data examples if at all possible.
52 =head2 Reporting Bugs
54 Report bugs to the Bioperl bug tracking system to help us keep track
55 of the bugs and their resolution. Bug reports can be submitted via the
56 web:
58 http://bugzilla.open-bio.org/
60 =head1 AUTHOR
62 Martin Senger (martin.senger@gmail.com)
64 =head1 COPYRIGHT
66 Copyright (c) 2003, Martin Senger and EMBL-EBI.
67 All Rights Reserved.
69 This module is free software; you can redistribute it and/or modify
70 it under the same terms as Perl itself.
72 =head1 DISCLAIMER
74 This software is provided "as is" without warranty of any kind.
76 =head1 SEE ALSO
78 =over
80 =item *
82 http://www.ebi.ac.uk/Tools/webservices/soaplab/guide
84 =back
86 =head1 APPENDIX
88 This is actually the main documentation...
90 If you try to call any of these methods directly on this
91 C<Bio::Factory::AnalysisI> object you will get a I<not implemented>
92 error message. You need to call them on a
93 C<Bio::Tools::Run::AnalysisFactory> object instead.
95 =cut
98 # Let the code begin...
100 package Bio::Factory::AnalysisI;
101 use strict;
103 use base qw(Bio::Root::RootI);
106 # -----------------------------------------------------------------------------
108 =head2 available_categories
110 Usage : $factory->available_categories;
111 Returns : an array reference with the names of
112 available categories
113 Args : none
115 The analysis tools may be grouped into categories by their functional
116 similarity, or by the similar data types they deal with. This method
117 shows all available such categories.
119 =cut
121 sub available_categories { shift->throw_not_implemented(); }
123 # -----------------------------------------------------------------------------
125 =head2 available_analyses
127 Usage : $factory->available_analyses;
128 $factory->available_analyses ($category);
129 Returns : an array reference with the names of
130 all available analyses, or the analyses
131 available in the given '$category'
132 Args : none || category_name
134 Show available analyses. Their names usually consist of category
135 analysis names, separated by C<::>.
137 =cut
139 sub available_analyses { shift->throw_not_implemented(); }
141 # -----------------------------------------------------------------------------
143 =head2 create_analysis
145 Usage : $factory->create_analysis ($name);
146 Returns : a Bio::Tools::Run::Analyis object
147 Args : analysis name
149 A real I<factory> method creating an analysis object. The created
150 object gets all access and location information from the factory
151 object.
153 =cut
155 sub create_analysis { shift->throw_not_implemented(); }
157 # -----------------------------------------------------------------------------
161 __END__