diff --git a/modules/Bio/EnsEMBL/Hive/Extensions.pm b/modules/Bio/EnsEMBL/Hive/Extensions.pm index add7da3eb6a0f5bc102b76dc663e03707a685461..d081d9c5110141e0757881aca1bec7ea166c2ca4 100755 --- a/modules/Bio/EnsEMBL/Hive/Extensions.pm +++ b/modules/Bio/EnsEMBL/Hive/Extensions.pm @@ -31,6 +31,7 @@ use strict; use Bio::EnsEMBL::Analysis; use Bio::EnsEMBL::DBSQL::DBConnection; use Bio::EnsEMBL::DBSQL::AnalysisAdaptor; +use Bio::EnsEMBL::Pipeline::RunnableDB; =head2 runnableDB @@ -147,5 +148,18 @@ sub Bio::EnsEMBL::Analysis::stats return $stats; } + +sub Bio::EnsEMBL::Pipeline::RunnableDB::reset_job +{ + my $self = shift; + return 1; +} + +sub Bio::EnsEMBL::Pipeline::RunnableDB::global_cleanup +{ + my $self = shift; + return 1; +} + 1; diff --git a/modules/Bio/EnsEMBL/Hive/Worker.pm b/modules/Bio/EnsEMBL/Hive/Worker.pm index 5f99b791cb5baedc54767c9ece3af45e7f7e8ed8..3b8b79d0c6e0a404bc8e321f096ed4daa0dcb52d 100755 --- a/modules/Bio/EnsEMBL/Hive/Worker.pm +++ b/modules/Bio/EnsEMBL/Hive/Worker.pm @@ -310,6 +310,8 @@ sub run } if($self->cause_of_death) { $alive=undef; } } + #have runnable cleanup any global/process files/data it may have created + $self->analysis->runnableDB->global_cleanup(); $self->queen->register_worker_death($self); @@ -345,7 +347,7 @@ sub run_module_with_job $job->status('WRITE_OUTPUT'); my $branch_code = $runObj->write_output; - #runnableDB is allowed to alter it is input_id on output + #runnableDB is allowed to alter its input_id on output #This modified input_id is passed as input to the next jobs in the graph $job->input_id($runObj->input_id); $job->branch_code($branch_code);