Skip to content

Commit

Permalink
add csv to output
Browse files Browse the repository at this point in the history
  • Loading branch information
famosab committed Jun 28, 2024
1 parent 07461af commit 2be65c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
process DATAVZRD_INPUT {
process CREATE_DATAVZRD_INPUT {
tag "$meta.id"
label 'process_single'

Expand All @@ -7,7 +7,7 @@ process DATAVZRD_INPUT {
tuple val(meta), path(csv)

output:
tuple val(meta), path("*.yaml"), emit: config
tuple val(meta), path("*.yaml"), path(csv), emit: config

script:
"""
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/report_benchmark_statistics.nf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ workflow REPORT_BENCHMARK_STATISTICS {

def template = new File("${workflow.projectDir}/assets/datavzrd/datavzrd.template.yaml")

DATAVZRD_INPUT {
CREATE_DATAVZRD_INPUT {
[ [ id:"datavzrd_template" ], template ]
MERGE_REPORTS.out.summary
}
Expand Down

0 comments on commit 2be65c2

Please sign in to comment.