We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de73651 commit 88f399cCopy full SHA for 88f399c
pipes/WDL/tasks/tasks_reports.wdl
@@ -300,7 +300,8 @@ task coverage_report {
300
python3 << CODE
301
import tools.samtools
302
import reports
303
- in_bams = list([bam for bam in ["~{sep='", "' mapped_bams}"] if bam and not tools.samtools.isEmpty(bam)])
+ samtools = tools.samtools.SamtoolsTool()
304
+ in_bams = list([bam for bam in ["~{sep='", "' mapped_bams}"] if bam and not samtools.isEmpty(bam)])
305
if in_bams:
306
reports.coverage_only(in_bams, "~{out_report_name}")
307
else:
0 commit comments