We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b6fe1f commit 77aca38Copy full SHA for 77aca38
1 file changed
Scripts/find_dependencies.py
@@ -396,12 +396,12 @@ def main():
396
inputs = get_workflow_inputs(wf, dic_deps)
397
outputs = get_workflow_outputs(wf, dic_deps)
398
list_tables += inputs + outputs
399
- nodes_in = " ".join(inputs)
400
- nodes_out = " ".join(outputs)
+ nodes_in = " ".join(inputs).replace("/", "_")
+ nodes_out = " ".join(outputs).replace("/", "_")
401
dot_deps += f" {{{nodes_in}}} -> {node_wf} -> {{{nodes_out}}}\n"
402
list_tables = list(dict.fromkeys(list_tables)) # Remove duplicities
403
for table in list_tables:
404
- dot_tables += f" {table}\n"
+ dot_tables += f' {table.replace("/", "_")} [label="{table}"]\n'
405
dot_tables += " }\n"
406
dot_workflows += " }\n"
407
dot += dot_workflows + dot_tables + dot_deps
0 commit comments