Skip to content
Snippets Groups Projects
Commit 51a3d78c authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Merge branch '135-fix.endforce' into 'develop'

If ends force then override fastq read error

Closes #135

See merge request !97
parents f453d711 f591e997
Branches
Tags
2 merge requests!98Develop,!97If ends force then override fastq read error
Pipeline #10638 passed with stages
in 4 minutes and 11 seconds
......@@ -18,6 +18,7 @@
* Replace default seqwho reference location to one provided by source lab (#127)
* Update NF Tower access token to BICF user
* Disable NF Tower
* Fix endness force (#135)
# v2.0.0
**User Facing**
......
......@@ -439,6 +439,11 @@ process parseMetadata {
fastqReadError_details="**Number of reads do not match for R1 and R2:** there may be a trunkation or mismatch of fastq files"
fi
fi
if [ "${params.endsForce}" != "" ]
then
fastqReadError=false
fastqReadError_details=""
fi
# save design file
echo "\${endsMeta},\${endsRaw},\${endsManual},\${stranded},\${spike},\${species},\${readLength},\${exp},\${study}" > design.csv
......
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