Skip to content

Commit

Permalink
misc. update
Browse files Browse the repository at this point in the history
  • Loading branch information
madetunj committed Jan 28, 2022
1 parent a531cdb commit 0a6a232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/tasks/util.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ task summaryreport {
echo '</table>' >> ~{outputfile}
echo -e 'Overall Quality Evaluation and Statistics Results' >> ~{outputtxt}
cat ~{overallqc_txt} >> ~{outputtxt}
if [ -f "~{sampleqc_html}" ]; then
if [ -f "~{controlqc_html}" ]; then
echo "<p><b>*</b> Peaks identified after Input/Control correction.</p>" >> ~{outputfile}
fi
echo '</div>' >> ~{outputfile}
Expand Down Expand Up @@ -527,7 +527,7 @@ task concatstats {
sampletextvalues += "\t" + SQCvalue[stats[key]]
controltextvalues += "\t" + CQCvalue[stats[key]]
writestatsfile.write("Sample : " + convertheader + "," + SQCvalue[stats[key]] + "\n")
writestatsfile.write("Control : " + convertheader + "," + SQCvalue[stats[key]] + "\n")
writestatsfile.write("Control : " + convertheader + "," + CQCvalue[stats[key]] + "\n")
htmlheader += "</th></tr>"
samplehtmlvalues += "</tr>"
Expand Down

0 comments on commit 0a6a232

Please sign in to comment.