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

Fix metadata echo

parent 63fbe5e4
Branches
Tags
2 merge requests!68Develop,!67Resolve "Change Single Read to Single End for submitted endness"
Pipeline #9164 canceled with stages
in 2 hours, 56 minutes, and 38 seconds
......@@ -2024,22 +2024,22 @@ process aggrQC {
echo -e "Submitter\t${speciesM}\t${endsM}\t${strandedM}\t${spikeM}\t-\t-\t'${readLengthM}'\t-" >> metadata.tsv
if [ "${params.speciesForce}" == "" ]
then
input=\$(echo "Inferred\t${speciesI}\t")
input=\$(echo -e "Inferred\t${speciesI}\t")
else
input=\$(echo "Inferred\t${speciesI} (FORCED)\t")
input=\$(echo -e "Inferred\t${speciesI} (FORCED)\t")
fi
input=\$(echo \${input}"${endsI}\t")
input=\$(echo -e \${input}"${endsI}\t")
if [ "${params.strandedForce}" == "" ]
then
input=\$(echo \${input}"${strandedI}\t")
input=\$(echo -e \${input}"${strandedI}\t")
else
input=\$(echo \${input}"${strandedI} (FORCED)\t")
input=\$(echo -e \${input}"${strandedI} (FORCED)\t")
fi
if [ "${params.spikeForce}" == "" ]
then
input=\$(echo \${input}"${spikeI}\t-\t-\t-\t-")
input=\$(echo -e \${input}"${spikeI}\t-\t-\t-\t-")
else
input=\$(echo \${input}"${spikeI} (FORCED)\t-\t-\t-\t-")
input=\$(echo -e \${input}"${spikeI} (FORCED)\t-\t-\t-\t-")
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