Skip to content

Commit

Permalink
bugfix fastqc task
Browse files Browse the repository at this point in the history
  • Loading branch information
golobor committed Jan 3, 2019
1 parent 19d33e0 commit 0f39d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distiller.nf
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ process fastqc{

"""
TASK_TMP_DIR=\$(mktemp -d -p ${task.distillerTmpDir} distiller.tmp.XXXXXXXXXX)
ln -s \"\$(readlink -f ${fastq})\" ./temp_fastqc/${library}.${run}.${chunk}.${side}.fastq.gz
fastqc --threads ${task.cpus} -o ./ -f fastq ./temp_fastqc/${library}.${run}.${chunk}.${side}.fastq.gz
ln -s \"\$(readlink -f ${fastq})\" \$TASK_TMP_DIR/${library}.${run}.${chunk}.${side}.fastq.gz
fastqc --threads ${task.cpus} -o ./ -f fastq \$TASK_TMP_DIR/${library}.${run}.${chunk}.${side}.fastq.gz
rm -r \$TASK_TMP_DIR
"""

Expand Down

0 comments on commit 0f39d28

Please sign in to comment.