Skip to content
Snippets Groups Projects
Commit bb1e0848 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch '129-Fix_FastQ_Error' into 'develop'

Update rna-seq.nf

Closes #129

See merge request !88
parents 9690aab3 64fa9678
Branches
Tags
2 merge requests!95Update rna-seq.nf,!88Update rna-seq.nf
Pipeline #10353 passed with stages
in 6 minutes and 45 seconds
# v.2.x.x (indev)
**User Facing**
**Background**
* Corrected file search parameters due to name inconsistency (#129)
# v2.0.0
**User Facing**
* Endness metadata "Single Read" changed to "Single End" in data-hub, pipeline updated to handle (#110) ("Single Read" still acceptable for backwards compatibility)
......
......@@ -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 file') || 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