Skip to content

Commit c08bc2f

Browse files
committed
Changes to toil backend logic, workflow_url always defaults.
1 parent adbe2ef commit c08bc2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wes_service/toil_wes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ def write_workflow(self, request, opts, wftype='cwl'):
4242
workflow_attachment = request.get('workflow_attachment')
4343
with open(self.input_wf_filename, "w") as f:
4444
f.write(workflow_attachment)
45-
workflow_url = urllib.pathname2url(self.input_wf_filename)
46-
else:
47-
workflow_url = request.get("workflow_url")
45+
# workflow_url = urllib.pathname2url(self.input_wf_filename)
46+
47+
workflow_url = request.get("workflow_url")
4848

4949
extra = opts.getoptlist("extra")
5050
if wftype == 'cwl':

0 commit comments

Comments
 (0)