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 6e67fd6 commit 29274eeCopy full SHA for 29274ee
python_workflow_definition/src/python_workflow_definition/cwl/export.py
@@ -204,12 +204,12 @@ def _write_workflow(workflow):
204
if v[SOURCE_LABEL] in input_id_dict:
205
in_dict[k + "_file"] = input_id_dict[v[SOURCE_LABEL]] + "_file"
206
else:
207
- if v['sourcePort'] is None:
+ if v["sourcePort"] is None:
208
in_dict[k + "_file"] = (
209
- step_name_lst[v[SOURCE_LABEL]]
210
- + "_"
211
- + str(v[SOURCE_LABEL])
212
- + "/result_file"
+ step_name_lst[v[SOURCE_LABEL]]
+ + "_"
+ + str(v[SOURCE_LABEL])
+ + "/result_file"
213
)
214
215
0 commit comments