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 { ...@@ -1375,7 +1375,7 @@ process uploadExecutionRun {
then then
genomeName=\$(echo GRCm${refMoVersion}) genomeName=\$(echo GRCm${refMoVersion})
fi fi
if [ "${spike}" == "yes" ] if [ "${spike}" == "true" ]
then then
genomeName=\$(echo \${genomeName}-S) genomeName=\$(echo \${genomeName}-S)
fi fi
...@@ -1480,10 +1480,10 @@ process getRef { ...@@ -1480,10 +1480,10 @@ process getRef {
echo -e "LOG: ERROR - References could not be set!\nSpecies reference found: ${species}" >> ${repRID}.getRef.log echo -e "LOG: ERROR - References could not be set!\nSpecies reference found: ${species}" >> ${repRID}.getRef.log
exit 1 exit 1
fi fi
if [ "${spike}" == "yes" ] if [ "${spike}" == "true" ]
then then
references=\$(echo \${reference}-S) references=\$(echo \${reference}-S)
elif [ "${spike}" == "no" ] elif [ "${spike}" == "false" ]
then then
reference=\$(echo \${references}) reference=\$(echo \${references})
fi 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