Skip to content

Commit

Permalink
Set tmp_dir to CODON right place.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoooo committed Sep 9, 2021
1 parent 1c0a85a commit bf5c671
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/Bio/EnsEMBL/VEP/Pipeline/DumpVEP/DumpVEP_conf.pm
Expand Up @@ -32,6 +32,7 @@ package Bio::EnsEMBL::VEP::Pipeline::DumpVEP::DumpVEP_conf;

use strict;
use warnings;
use File::Spec::Functions qw(catdir);

use Bio::EnsEMBL::Hive::PipeConfig::HiveGeneric_conf;
# All Hive databases configuration files should inherit from HiveGeneric, directly or indirectly
Expand Down Expand Up @@ -70,7 +71,7 @@ sub default_options {
dump_vep_data_dir => $self->o('data_dir') . '/dump_vep',

# temporary space
tmp_dir => '/hps/scratch/vepdump',
tmp_dir => catdir('/hps/nobackup/flicek/ensembl', $ENV{'USER'}, $self->o('pipeline_name'), 'vepdump'),

# dump databases of this version number
ensembl_release => undef,
Expand Down

0 comments on commit bf5c671

Please sign in to comment.