2 # BioPerl module for Bio::SimpleAnalysisI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Martin Senger <martin.senger@gmail.com>
7 # For copyright and disclaimer see below.
10 # POD documentation - main docs before the code
14 Bio::SimpleAnalysisI - A simple interface to any (local or remote) analysis tool
18 This is an interface module - you do not instantiate it.
19 Use other modules instead (those that implement this interface).
23 This interface contains public methods for accessing and controlling
24 local and remote analysis tools. It is meant to be used on the client
25 side. The interface consists only of a necessary set of methods for
26 synchronous invocation of analysis tools. For more complex set,
27 including an asynchronous access, see interface C<Bio::AnalysisI>
28 (which inherits from this one, by the way).
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
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.
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
58 https://github.com/bioperl/bioperl-live/issues
62 Martin Senger (martin.senger@gmail.com)
66 Copyright (c) 2003, Martin Senger and EMBL-EBI.
69 This module is free software; you can redistribute it and/or modify
70 it under the same terms as Perl itself.
74 This software is provided "as is" without warranty of any kind.
82 http://www.ebi.ac.uk/Tools/webservices/soaplab/guide
88 This is actually the main documentation...
90 If you try to call any of these methods directly on this
91 C<Bio::SimpleAnalysisI> object you will get a I<not implemented> error
97 # Let the code begin...
99 package Bio
::SimpleAnalysisI
;
103 use base
qw(Bio::Root::RootI);
105 # -----------------------------------------------------------------------------
109 Usage : $tool->analysis_name;
110 Returns : a name of this analysis
115 sub analysis_name
{ shift->throw_not_implemented(); }
117 # -----------------------------------------------------------------------------
121 Usage : $tool->analysis_spec;
122 Returns : a hash reference describing this analysis
125 The returned hash reference uses the following keys (not all of them always
126 present, perhaps others present as well): C<name>, C<type>, C<version>,
127 C<supplier>, C<installation>, C<description>.
131 sub analysis_spec
{ shift->throw_not_implemented(); }
133 # -----------------------------------------------------------------------------
137 Usage : $tool->input_spec;
138 Returns : an array reference with hashes as elements
141 The analysis input data are named, and can be also associated with a
142 default value, with allowed values and with few other attributes. The
143 names are important for feeding the analysis with the input data (the
144 inputs are given to methods C<run> and C<wait_for> as name/value
149 sub input_spec
{ shift->throw_not_implemented(); }
151 # -----------------------------------------------------------------------------
155 Usage : $tool->result_spec;
156 Returns : a hash reference with result names as keys
157 and result types as values
160 An analysis can produce several results, or the same result in several
161 different formats. All such results are named and can be retrieved
162 using their names by metod C<result>.
164 Here is an example of the result specification:
167 'outseq' => 'String',
168 'report' => 'String',
169 'detailed_status' => 'String'
174 sub result_spec
{ shift->throw_not_implemented(); }
176 # -----------------------------------------------------------------------------
180 Usage : $tool->run ( ['sequence=@my.seq', 'osformat=embl'] )
182 Args : data and parameters for this execution
185 Create a job, start it, and wait for its completion. The method is
186 identical to the method C<wait_for>. Why there are two methods doing
187 the same? Because it is expected that the sub-classes may implement
188 them differently (an example is an interface C<Bio::AnalysisI> which
189 uses method C<run> for an asynchronous execution and method
190 C<wait_for> for a synchronous one.
192 Usually, after this call, you ask for results of the finished job:
194 $analysis->run (...)->result;
196 The input data and prameters for this execution can be specified in
201 =item array reference
203 The array has scalar elements of the form
207 where C<name> is the name of an input data or input parameter (see
208 method C<input_spec> for finding what names are recognized by this
209 analysis) and C<value> is a value for this data/parameter. If C<value>
210 is missing a 1 is assumed (which is convenient for the boolean
211 options). If C<value> starts with C<@> it is treated as a local
212 filename, and its contents is used as the data/parameter value.
216 The same as with the array reference but now there is no need to use
217 an equal sign. The hash keys are input names and hash values their
218 data. The values can again start with a C<@> sign indicating a local
225 sub run
{ shift->throw_not_implemented(); }
227 # -----------------------------------------------------------------------------
231 Usage : $tool->wait_for ( { 'sequence' => '@my,file' } )
233 Args : the same as for method 'run'
235 Create a job, start it and wait for its completion. The method is
236 identical to the method C<run>. See details in the C<run> method.
240 sub wait_for
{ shift->throw_not_implemented(); }
242 # -----------------------------------------------------------------------------
246 Usage : $tool->status
247 Returns : string describing a status of the execution
250 It returns one of the following strings (and perhaps more if a server
251 implementation extended possible job states):
253 CREATED (not run yet)
254 COMPLETED (run and finished normally)
255 TERMINATED_BY_ERROR (run and finished with an error or a signal)
259 sub status
{ shift->throw_not_implemented(); }
261 # -----------------------------------------------------------------------------
265 Usage : $job->result (...)
266 Returns : a result created by running an analysis
267 Args : none (but an implementation may choose
268 to add arguments for instructions how to process
271 The method returns a scalar representing a result of an executed
272 job. If the job was terminated by an error the result may contain an
273 error message instead of the real data (or both, depending on the
278 sub result
{ shift->throw_not_implemented(); }
280 # -----------------------------------------------------------------------------