Skip to content

Commit ce1c2bc

Browse files
committed
refactor: flatten adapter timming log entries in report channel
1 parent 09353af commit ce1c2bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ workflow {
5454
}
5555
report_in_ch = channel.empty()
5656
report_in_ch = report_in_ch.mix(trimmed_reads_ch.fastqc)
57-
report_in_ch = report_in_ch.mix(trimmed_reads_ch.log.map { log_file -> log_file[0] })
57+
report_in_ch = report_in_ch.mix(trimmed_reads_ch.log.flatten())
5858
report_in_ch = report_in_ch.mix(ac_in_ch.log.map { _meta, log_file -> log_file })
5959
report_in_ch = report_in_ch.mix(ac_in_ch.stats.map { _meta, log_file -> log_file })
6060
REPORT(report_in_ch.collect())

0 commit comments

Comments
 (0)