@@ -26,7 +26,6 @@ process report {
2626 path fastqCount
2727 path qcStats
2828 path qcReport
29- path hostRemovalReport
3029 path readsTaxonomyReports
3130 path contigTaxonomyReport
3231 path contigStatsReport
@@ -62,7 +61,6 @@ process report {
6261
6362
6463 my \$ qc_flag = (${ settings['faqcs']} )?"V":"";
65- my \$ host_removal_flag = (${ settings['hostRemoval']} )?"V":"";
6664 my \$ assembly_flag = (${ settings["runAssembly"]} )?"V":"";
6765 my \$ annotation_flag = (${ settings["annotation"]} )?"V":"";
6866 my \$ taxonomy_flag = (${ settings["readsTaxonomyAssignment"]} )?"V":"";
@@ -116,10 +114,6 @@ process report {
116114 }
117115
118116
119- if (-e "$hostRemovalReport "){
120- \$ mergeFiles .= '$hostRemovalReport '.",";
121- }
122-
123117 if (-e "$contigStatsReport "){
124118 \$ mergeFiles .= '$contigStatsReport '.",";
125119 }
@@ -171,7 +165,6 @@ process report {
171165 push @conversions, "convert -strip -density 120 -flatten $qcReport [\$ qc_boxplot_page] ./QC_quality_boxplot.png";
172166 }
173167
174- push @conversions, "convert -strip -density 120 -flatten $hostRemovalReport ./HostRemovalStats.png" if (-e "$hostRemovalReport ");
175168 push @conversions, "convert -strip -density 120 -flatten $contigStatsReport [0] ./Assembly_length.png" if (-e "$contigStatsReport ");
176169 push @conversions, "convert -strip -density 120 -flatten $contigStatsReport [1] ./Assembly_GC_content.png" if (-e "$contigStatsReport ");
177170 push @conversions, "convert -strip -density 120 -flatten $contigPlots [0] ./Assembly_CovDepth_vs_Len.png" if (-e "$contigPlots ");
@@ -200,7 +193,6 @@ workflow REPORT {
200193 fastqCount
201194 qcStats
202195 qcReport
203- hostRemovalReport
204196 readsTaxonomyReports
205197 contigTaxonomyReport
206198 contigStatsReport
@@ -214,7 +206,6 @@ workflow REPORT {
214206 fastqCount,
215207 qcStats,
216208 qcReport,
217- hostRemovalReport,
218209 readsTaxonomyReports,
219210 contigTaxonomyReport,
220211 contigStatsReport,
0 commit comments