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

Fix qutes to echo

parent c03c60c9
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9126 failed with stages
in 36 seconds
......@@ -2014,18 +2014,18 @@ process aggrQC {
else
input=\${echo "Inferred\t${speciesI} (FORCED)\t")
fi
input=\$(echo "\${input}${endsI}\t")
input=\$(echo \${input}"${endsI}\t")
if [ "${params.strandedForce}" == "" ]
then
input=\$(echo "\${input}${strandedI}\t")
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