File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
modules/local/stimulus/split_yaml
split_data_config_unified Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ process STIMULUS_SPLIT_YAML {
3838 stimulus: \$ (stimulus -v | cut -d ' ' -f 3)
3939 END_VERSIONS
4040 """
41- }
41+ }
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ workflow SPLIT_DATA_CONFIG_UNIFIED_WF {
2626 // Process split configs - transpose and add split_id to meta
2727 ch_split_configs = STIMULUS_SPLIT_YAML . out. split_config
2828 .transpose()
29- .map { meta, yaml ->
29+ .map { meta, yaml ->
3030 // Extract split info from descriptive filename
3131 def split_id = yaml. baseName. replaceAll(/ .*_([^_]+_[^_]+)_split$/ , ' $1' )
32- [ meta + [split_id : split_id], yaml]
32+ [ meta + [split_id : split_id], yaml]
3333 }
3434
35- // Process transform configs - transpose and add transform_id to meta
35+ // Process transform configs - transpose and add transform_id to meta
3636 ch_transform_configs = STIMULUS_SPLIT_YAML . out. transform_config
3737 .transpose()
3838 .map { meta, yaml ->
@@ -55,4 +55,4 @@ workflow SPLIT_DATA_CONFIG_UNIFIED_WF {
5555~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5656 THE END
5757~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58- */
58+ */
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ workflow TRANSFORM_CSV_WF {
4646 data : item. data
4747 config : item. config
4848 }
49-
49+
5050 // run stimulus transform
5151 STIMULUS_TRANSFORM_CSV (
5252 ch_input. data,
You can’t perform that action at this time.
0 commit comments