Browse Source

[Fix Bug] No space on the driver

tags/v0.1.0
choppy 4 years ago
parent
commit
baaa3ab252
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      tasks/fastqscreen.wdl

+ 3
- 2
tasks/fastqscreen.wdl View File

@@ -13,8 +13,9 @@ task fastqscreen {
set -o pipefail
set -e
nt=$(nproc)
mkdir -p /cromwell_root/tmp
cp -r ${screen_ref_dir} /cromwell_root/tmp/
# mkdir -p /cromwell_root/tmp
# cp -r ${screen_ref_dir} /cromwell_root/tmp/
sed -i "s#/cromwell_root/fastq_screen_reference#${screen_ref_dir}#g" ${fastq_screen_conf}
fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read1}
fastq_screen --aligner bowtie2 --conf ${fastq_screen_conf} --top 100000 --threads $nt ${read2}
>>>

Loading…
Cancel
Save