flow = list()
flow.append(task_1, parents=None)
for i in range(4):
flow.append(task_I, parents=flow[-1])
lpad.add_wf(Workflow(flow))
What happened?
The above code idea works when running in a shell but fails to recognize dependencies when run in a FW
1) I am running python code that generates a structure
2) When using a multi-stage workflow with linear dependency (5 tasks of which the previous is the parent of the next except for the first in one workflow) this dependency is lost
Code snippet
What happened?
The above code idea works when running in a shell but fails to recognize dependencies when run in a FW
1) I am running python code that generates a structure 2) When using a multi-stage workflow with linear dependency (5 tasks of which the previous is the parent of the next except for the first in one workflow) this dependency is lost
Is this intended or am I doing something wrong?
janK
Version
2.0.3
Which OS?
Log output
No response