Skip to content

Commit d7bc654

Browse files
committed
properly save all results from tune module
1 parent e9b0324 commit d7bc654

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conf/modules.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ process {
8989
// main config
9090
// ==============================================================================
9191

92-
withName: "STIMULUS_SPLIT_SPLIT" {
92+
withName: "STIMULUS_SPLIT_TRANSFORM" {
9393
publishDir = [
9494
path: { "${params.outdir}/configs" },
9595
mode: params.publish_dir_mode
@@ -115,7 +115,7 @@ process {
115115
mode: params.publish_dir_mode,
116116
when: params.save_data
117117
]
118-
ext.prefix = { "${meta.id}-split-${meta2.split_id}-trans-${meta2.transform_id}" }
118+
ext.prefix = { "${meta.id}-split-${meta.split_id}-trans-${meta.transform_id}" }
119119
if (params.container_dev) {
120120
container = params.container_dev
121121
}
@@ -136,7 +136,7 @@ process {
136136
params.debug_mode ? "--debug_mode" : ''
137137
].flatten().unique(false).join(' ').trim()}
138138
publishDir = [
139-
path: { "${params.outdir}/tune_results/${meta.id}" },
139+
path: { "${params.outdir}/tune_results/${meta.id}-split-${meta.split_id}-trans-${meta.transform_id}" },
140140
mode: params.publish_dir_mode
141141
]
142142
if (params.container_dev) {

0 commit comments

Comments
 (0)