Bio::EnsEMBL::Compara::RunnableDB
Dummy
Toolbar
Summary
Bio::EnsEMBL::Compara::RunnableDB::Dummy
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
my $db = Bio::EnsEMBL::Compara::DBAdaptor->new($locator);
my $repmask = Bio::EnsEMBL::Compara::RunnableDB::Dummy->new (
-db => $db,
-input_id => $input_id
-analysis => $analysis );
$repmask->fetch_input(); #reads from DB
$repmask->run();
$repmask->output();
$repmask->write_output(); #writes to DB
Description
This object is used as a place holder in the hive system.
It does nothing, but is needed so that a Worker can grab
a job, pass the input through to output, and create the
next layer of jobs in the system.
Methods
fetch_input | No description | Code |
run | No description | Code |
write_output | No description | Code |
Methods description
None available.
Methods code
sub fetch_input
{ my $self = shift;
$self->db->dbc->disconnect_when_inactive(0);
return 1; } |
sub run
{
my $self = shift;
return 1; } |
sub write_output
{ my $self = shift;
return 1;
}
1; } |
General documentation
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _