Skip to content

Commit 527c3f8

Browse files
committed
Fix: Add back quarto template file name to report name
1 parent 9f95440 commit 527c3f8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

workflows/differentialabundance.nf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,10 @@ workflow DIFFERENTIALABUNDANCE {
819819
// Render the final report
820820
if (!params.skip_reports) {
821821
QUARTONOTEBOOK(
822-
ch_report_input.report_file,
822+
ch_report_input.report_file.map { meta, report_file ->
823+
def new_meta = meta + [ report_file_name: report_file.baseName ]
824+
[new_meta, report_file]
825+
},
823826
ch_report_input.report_params.first(),
824827
ch_report_input.input_files.map{ meta, files -> files }.first(),
825828
Channel.value([])

0 commit comments

Comments
 (0)