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

Allow Single Read for backwards compatibility

parent 52c66590
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9099 failed with stages
in 3 minutes and 41 seconds
# v1.0.3 # v1.0.3
**User Facing** **User Facing**
* Endness metadata "Single Read" changed to "Single End" in data-hub, pipeline updated to handle (#110) * Endness metadata "Single Read" changed to "Single End" in data-hub, pipeline updated to handle (#110) ("Single Read" still acceptable for backwards compatibility)
**Background** **Background**
* Add memory limit (75%) per thread for samtools sort (#108) * Add memory limit (75%) per thread for samtools sort (#108)
......
...@@ -343,6 +343,10 @@ process parseMetadata { ...@@ -343,6 +343,10 @@ process parseMetadata {
elif [ "\${endsRaw}" == "Paired End" ] elif [ "\${endsRaw}" == "Paired End" ]
then then
endsMeta="pe" endsMeta="pe"
elseif [ "\${endsRaw}" == "Single Read" ]
# "Single Read" depreciated as of Jan 2021, this option is present for backwards compatibility
then
endsMeta="se"
elif [ "\${endsRaw}" == "nan" ] elif [ "\${endsRaw}" == "nan" ]
then then
endsRaw="_No value_" endsRaw="_No value_"
......
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