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

Add missing excapes

parent 4d50fe8f
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9128 failed with stages
in 45 seconds
......@@ -2019,13 +2019,13 @@ process aggrQC {
then
input=\$(echo \${input}"${strandedI}\t")
else
input=$(echo \${input}"${strandedI} (FORCED)\t")
input=\$(echo \${input}"${strandedI} (FORCED)\t")
fi
if [ "${params.spikeForce}" == "" ]
then
input=$(echo \${input}"${spikeI}\t-\t-\t-\t-"")
input=\$(echo \${input}"${spikeI}\t-\t-\t-\t-"")
else
input=$(echo \${input}"${spikeI} (FORCED)\t-\t-\t-\t-" >> metadata.tsv
input=\$(echo \${input}"${spikeI} (FORCED)\t-\t-\t-\t-" >> metadata.tsv
fi
echo -e \${input} >> metadata.tsv
echo -e "Measured\t-\t${endsManual}\t-\t-\t'${rawReadsI}'\t'${assignedReadsI}'\t'${readLengthI}'\t'${tinMedI}'" >> metadata.tsv
......
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