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

Fix stranded override

parent 6e617062
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9158 failed with stages
in 51 minutes and 37 seconds
......@@ -1190,12 +1190,17 @@ process checkMetadata {
ulimit -a >> ${repRID}.checkMetadata.log
pipelineError=false
pipelineError_ends=false
pipelineError_stranded=false
pipelineError_spike=false
pipelineError_species=false
# check if submitted metadata matches inferred
if [ "${strandedMeta}" != "${strandedInfer}" ]
then
if [ "${params.strandedForce}" != "" ]
then
pipelineError=false
pipelineError_stranded=false
echo -e "LOG: stranded forced: Submitted=${strandedMeta}; Inferred=${strandedInfer}" >> ${repRID}.checkMetadata.log
else
pipelineError=true
......@@ -1216,6 +1221,7 @@ process checkMetadata {
fi
else
pipelineError=false
pipelineError_stranded=false
echo -e "LOG: stranded matches: Submitted=${strandedMeta}; Inferred=${strandedInfer}" >> ${repRID}.checkMetadata.log
fi
if [ "${endsMeta}" != "${endsInfer}" ]
......
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