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

Fix extra quotes in pares

parent 82ec93f3
Branches
Tags
2 merge requests!58Develop,!56Resolve "Detect error in inferMetadata for tracking"
Pipeline #8817 failed with stages
in 3 minutes and 55 seconds
......@@ -344,7 +344,7 @@ process parseMetadata {
# get read length metadata
readLength=\$(python3 ${script_parseMeta} -r ${repRID} -m "${experimentSettings}" -p readLength)
if [ "\${readLength}" = "nan"]
if [ "\${readLength}" = "nan" ]
then
readLength="NA"
fi
......@@ -357,11 +357,11 @@ process parseMetadata {
then
fastqCountError=true
fastqCountError_details="Too many fastqs detected (>2)"
elif [ "\${endsMeta}"" == "se" ] && [ "${fastqCount}" -ne "1" ]
elif [ "\${endsMeta}" == "se" ] && [ "${fastqCount}" -ne "1" ]
then
fastqCountError=true
fastqCountError_details="Number of fastqs detected does not match submitted endness"
elif [ "\${endsMeta}"" == "pe" ] && [ "${fastqCount}" -ne "2" ]
elif [ "\${endsMeta}" == "pe" ] && [ "${fastqCount}" -ne "2" ]
then
fastqCountError=true
fastqCountError_details="Number of fastqs detected does not match submitted endness"
......
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