runService.pm - Functionality to run BioMOBY Services.
This library is used to run BioMOBY Services internally; you shouldn't attempt to use its methods (See the service methods libraries).
Usage:
eval {
my $hmm = inb_bsc_es::runHMMBuild(
'alignment' => $obj,
'fast_construction' => 9.0,
'fast_algorithm' => "false"
)->{hmm};
};
if ($@){
print "Service execution failed:\n$@";
} else {
print $hmm->content;
}
Runs BioMOBY services.
Take a look at the service libraries to know what methods are available and its parameters.
Errors: When a service fails the method returns an exception. Warnings are printed on STDERR.
Josep Lluis Gelpi INB 2006