Skip to content

Commit

Permalink
Merge pull request #1047 from Ensembl/bugfix/vep-scratch-dir
Browse files Browse the repository at this point in the history
Set tmp_dir to CODON right place.
  • Loading branch information
sarahhunt committed Sep 9, 2021
2 parents 1c0a85a + bf5c671 commit c5e88e8
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 c5e88e8

Please sign in to comment.