@@ -2,17 +2,17 @@ process NUMORPHREGISTER {
22 tag " $meta . id "
33 label ' process_high_long'
44
5- container " nf-core/numorph_analyze:1.0.1 "
5+ container " nf-core/numorph_analyze:1.0.0 "
66
77 input:
88 tuple val(meta), path(resampled_directory), path(parameter_file)
99
1010 output:
11- path " results/*results.mat " , emit: res_mat
12- path " results/variables/* " , emit: variables
13- path " results/NM_variables.mat" , emit: NM_variables
14- path " results/registered/* " , emit: registered
15- path " versions.yml " , emit : versions
11+ tuple val(meta), path( " results/registered/ " ) , emit: registered
12+ tuple val(meta), path( " results/variables/" ) , emit: variables
13+ tuple val(meta), path( " results/NM_variables.mat" ) , emit: NM_variables
14+
15+ tuple val( " ${ task.process } " ), val( ' numorphregister ' ), val( ' 1.0.0 ' ), emit: versions_numorph_analyze, topic : versions
1616
1717
1818 when:
@@ -37,11 +37,6 @@ process NUMORPHREGISTER {
3737
3838 numorph_analyze 'input_dir' \$ resampled_directory 'output_dir' \$ results_dir 'parameter_file' \$ parameter_file 'sample_name' ${ prefix} 'stage' 'register' 'NM_variables' '' 'use_processed_images' 'resampled'
3939
40-
41- cat <<-END_VERSIONS > versions.yml
42- "${ task.process} ":
43- numorphregister: 1.0
44- END_VERSIONS
4540 """
4641
4742 stub:
@@ -55,12 +50,7 @@ process NUMORPHREGISTER {
5550 touch results/variables/reg_params.mat
5651 touch results/variables/${ prefix} _mask.mat
5752 touch results/NM_variables.mat
58- touch results/${ prefix} _results.mat
5953 touch results/registered/${ prefix} _registered.tif
6054
61- cat <<-END_VERSIONS > versions.yml
62- "${ task.process} ":
63- numorphregister: 1.0
64- END_VERSIONS
6555 """
6656}
0 commit comments