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

Fix getRef use of new spike values

parent c2a7f9b0
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9114 failed with stages
in 2 hours, 29 minutes, and 20 seconds
......@@ -1375,7 +1375,7 @@ process uploadExecutionRun {
then
genomeName=\$(echo GRCm${refMoVersion})
fi
if [ "${spike}" == "yes" ]
if [ "${spike}" == "true" ]
then
genomeName=\$(echo \${genomeName}-S)
fi
......@@ -1480,10 +1480,10 @@ process getRef {
echo -e "LOG: ERROR - References could not be set!\nSpecies reference found: ${species}" >> ${repRID}.getRef.log
exit 1
fi
if [ "${spike}" == "yes" ]
if [ "${spike}" == "true" ]
then
references=\$(echo \${reference}-S)
elif [ "${spike}" == "no" ]
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