We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b294e commit e905e0dCopy full SHA for e905e0d
1 file changed
workflows/registration.nf
@@ -296,7 +296,7 @@ workflow registration {
296
r
297
}
298
299
- final_transform_inputs.subscribe { println "Final warp input: $it" }
+ final_transform_inputs.subscribe { log.debug "Final warp input: $it" }
300
301
// run the final transformation and generate the warped image
302
def final_transform_res = final_transform(
@@ -308,7 +308,7 @@ workflow registration {
308
final_transform_inputs.map { it[5] },
309
final_transform_inputs.map { it[6] }
310
)
311
- final_transform_res.subscribe { println "Final warp result: $it" }
+ final_transform_res.subscribe { log.debug "Final warp result: $it" }
312
313
registration_res = final_transform_res
314
| groupTuple(by: [0,2,4,5])
0 commit comments