From 35fc8164c14c754fd88ea5996ad140b7076ba7c7 Mon Sep 17 00:00:00 2001 From: Jessica Severin <jessica@ebi.ac.uk> Date: Fri, 4 Mar 2005 13:58:46 +0000 Subject: [PATCH] switched output_dir logic back to simple one level since subdir tree actually made the worse (Tim Cutts). This will do until we figure this out.... I like the '>/dev/null + rerun failed jobs manually with debug' option personally :) --- modules/Bio/EnsEMBL/Hive/Worker.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/Bio/EnsEMBL/Hive/Worker.pm b/modules/Bio/EnsEMBL/Hive/Worker.pm index 8d08b9429..bf1538501 100755 --- a/modules/Bio/EnsEMBL/Hive/Worker.pm +++ b/modules/Bio/EnsEMBL/Hive/Worker.pm @@ -251,9 +251,8 @@ sub last_check_in { sub output_dir { my( $self, $outdir ) = @_; if($outdir and (-d $outdir)) { - my $str = join("/", split(//, $self->hive_id)); - $outdir .= "/$str/hive_id_" . $self->hive_id ."/"; - system("mkdir -p $outdir"); + $outdir .= "/worker_" . $self->hive_id ."/"; + mkdir($outdir); $self->{'_output_dir'} = $outdir } return $self->{'_output_dir'}; -- GitLab