We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 157ce59 commit 92ee192Copy full SHA for 92ee192
python_workflow_definition/src/python_workflow_definition/cwl/export.py
@@ -209,7 +209,7 @@ def _write_workflow(workflow):
209
+ "_file"
210
)
211
workflow_template["steps"].update(
212
- {step_name_lst[ind]: {"run": node_script, "in": in_dict, "out": output}}
+ {step_name_lst[ind] + "_" + str(ind): {"run": node_script, "in": in_dict, "out": output}}
213
214
with open("workflow.cwl", "w") as f:
215
dump(workflow_template, f, Dumper=Dumper)
0 commit comments