File tree 1 file changed +8
-1
lines changed
modules/nextflow/src/main/groovy/nextflow/processor
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -600,7 +600,14 @@ class TaskProcessor {
600
600
return
601
601
}
602
602
session. addIgniter {
603
- log. debug " Starting process > $name "
603
+ // Closure to get the (nested) list of param_type:param_name
604
+ def getParamNamesAndTypes
605
+ getParamNamesAndTypes = { paramList ->
606
+ paramList. collect{param ->
607
+ " ${ (param instanceof InParam)? param.getTypeName() : param.class.simpleName} :${ (param !instanceof TupleInParam && param !instanceof TupleOutParam)? param.name : "[${getParamNamesAndTypes(param.getInner())}]"} " }. join(' , ' )
608
+ }
609
+ // Print process name with associated input and outputs
610
+ log. debug " Starting process > $name (${ getParamNamesAndTypes(getConfig().getInputs())} ) -> (${ getParamNamesAndTypes(getConfig().getOutputs())} )"
604
611
op. start()
605
612
}
606
613
}
You can’t perform that action at this time.
0 commit comments