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

Fix bool spike override in getRef

parent 04dbe532
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9179 failed with stages
in 2 hours and 6 seconds
......@@ -1539,10 +1539,10 @@ process getRef {
echo -e "LOG: ERROR - References could not be set!\nSpecies reference found: ${species}" >> ${repRID}.getRef.log
exit 1
fi
if [ "${spike}" == "t" ]
if [ "${spike}" == "true" ]
then
references=\$(echo \${reference}-S)
elif [ "${spike}" == "f" ]
elif [ "${spike}" == "false" ]
then
reference=\$(echo \${references})
fi
......
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