Skip to content

Commit

Permalink
qc summary file shouldn't be called "something"
Browse files Browse the repository at this point in the history
  • Loading branch information
aofarrel committed Nov 17, 2023
1 parent e94d101 commit 15b982f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion myco_raw.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ workflow myco {
call sranwrp_processing.map_to_tsv_or_csv as qc_summary {
input:
the_map = metrics_to_values,
column_names = if length(paired_fastq_sets) == 1 then [basename(paired_fastq_sets[0][0])] else ["sample"]
column_names = if length(paired_fastq_sets) == 1 then [basename(paired_fastq_sets[0][0])] else ["sample"],
outfile = if length(paired_fastq_sets) == 1 then basename(paired_fastq_sets[0][0])+"_qc" else "combined_qc_report.txt"
}

output {
Expand Down

0 comments on commit 15b982f

Please sign in to comment.