Skip to content
Snippets Groups Projects
Commit 5b271a2e authored by Jon Gesell's avatar Jon Gesell
Browse files

Corrected missing escape character.

parent 303f7ade
Branches
Tags
2 merge requests!95Update rna-seq.nf,!88Update rna-seq.nf
Pipeline #10343 failed with stages
in 3 hours and 9 minutes
......@@ -634,7 +634,7 @@ process fastqc {
# run fastqc
echo -e "LOG: running fastq on raw fastqs" >> ${repRID}.fastqc.log
fastqc *.fastq.gz -o . &> fastqc.out || true
fastqcErrorOut=$(cat fastqc.out | grep -c 'Failed to process') || fastqcErrorOut=0
fastqcErrorOut=\$(cat fastqc.out | grep -c 'Failed to process') || fastqcErrorOut=0
fastqFileError=false
fastqFileError_details=""
if [ "\${fastqcErrorOut}" -ne "0" ]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment