File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
subworkflows/local/utils_nfcore_deepmodeloptim_pipeline Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ workflow PIPELINE_INITIALISATION {
9898 ch_genome = params. genome == null ?
9999 Channel . of([[],[]]) :
100100 (
101- params. genome in params. genomes ?
101+ params. genome in params. genomes ?
102102 Channel . fromPath(params. genomes[params. genome][' fasta' ], checkIfExists : true ) :
103103 Channel . fromPath(params. genome, checkIfExists : true )
104104 )
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ workflow DEEPMODELOPTIM {
111111 // of the channel depends on which process finishes first (run in parallel)
112112 ch_check_input_data = ch_transformed_data. toSortedList(). flatten(). buffer(size :2 ). first()
113113 ch_check_input_config = ch_yaml_sub_config. toSortedList(). flatten(). buffer(size :2 ). first()
114-
114+
115115 CHECK_MODEL_WF (
116116 ch_check_input_data,
117117 ch_check_input_config,
You can’t perform that action at this time.
0 commit comments