Skip to content
Snippets Groups Projects
Commit ccaab585 authored by Leo Gordon's avatar Leo Gordon
Browse files

Bugfix. It wasnt possible to pass hive_output_dir as pipeline_wide_parameter. Now it should be.

parent 5fc21dbb
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ use Getopt::Long;
use Bio::EnsEMBL::Hive::DBSQL::DBAdaptor;
use Bio::EnsEMBL::Hive::Worker;
use Bio::EnsEMBL::Hive::Queen;
use Bio::EnsEMBL::Hive::Utils 'destringify'; # import 'destringify()'
use Bio::EnsEMBL::Registry;
use Bio::EnsEMBL::Hive::Meadow::LSF;
......@@ -180,7 +181,7 @@ if(defined($self->{'outdir'})) { $worker->output_dir($self->{'outdir'}); }
else {
my $arrRef = $DBA->get_MetaContainer->list_value_by_key( 'hive_output_dir' );
if( @$arrRef ) {
$worker->output_dir($arrRef->[0]);
$worker->output_dir( destringify($arrRef->[0]) );
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment