|
NAMEBio::Tools::Run::Analysis::soap - A SOAP-based access to the analysis toolsSYNOPSISDo not use this object directly, it is recommended to access it and use it through the "Bio::Tools::Run::Analysis" module:use Bio::Tools::Run::Analysis; my $tool = Bio::Tools::Run::Analysis->new(-access => 'soap', -name => 'seqret'); DESCRIPTIONThis object allows to execute and to control a remote analysis tool (an application, a program) using the SOAP middleware,All its public methods are documented in the interface module "Bio::AnalysisI" and explained in tutorial available in the "analysis.pl" script. FEEDBACKMailing ListsUser feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated.bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists SupportPlease direct usage questions or support issues to the mailing list: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. Reporting BugsReport bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web:http://redmine.open-bio.org/projects/bioperl/ AUTHORMartin Senger (martin.senger@gmail.com)COPYRIGHTCopyright (c) 2003, Martin Senger and EMBL-EBI. All Rights Reserved.This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMERThis software is provided "as is" without warranty of any kind.SEE ALSO
BUGS AND LIMITATIONSNone known at the time of writing this.APPENDIXHere is the rest of the object methods. Internal methods are preceded with an underscore _._initializeUsage : my $tool = Bio::Tools::Run::Analysis->new(-access => 'soap', -name => 'seqret', ...); (_initialize is internally called from the 'new()' method) Returns : nothing interesting Args : This module recognises and uses following arguments: -location -name -httpproxy -timeout Additionally, the main module Bio::Tools::Run::Analysis recognises also: -access It populates calling object with the given arguments, and then - for some attributes and only if they are not yet populated - it assigns some default values. This is an actual new() method (except for the real object creation and its blessing which is done in the parent class Bio::Root::Root in method _create_object). Note that this method is called always as an object method (never as a class method) - and that the object who calls this method may already be partly initiated (from Bio::Tools::Run::Analysis::new method); so if you need to do some tricks with the 'class invocation' you need to change Bio::Analysis new method, not this one.
is_binaryUsage : if ($service->is_binary ('graph_result')) { ... } Returns : 1 or 0 Args : $name is a result name we are interested in VERSION and RevisionUsage : print $Bio::Tools::Run::Analysis::soap::VERSION; print $Bio::Tools::Run::Analysis::soap::Revision; DefaultsUsage : print $Bio::Tools::Run::Analysis::soap::DEFAULT_LOCATION;
Visit the GSP FreeBSD Man Page Interface. |