From 2559c2111d1df1759638781c43d0ae95f7f37925 Mon Sep 17 00:00:00 2001 From: Julian Geiger Date: Tue, 19 Nov 2024 18:43:32 +0100 Subject: [PATCH] Visualize `nodes` inputs for ShellJob tasks (#347) --- aiida_workgraph/utils/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aiida_workgraph/utils/__init__.py b/aiida_workgraph/utils/__init__.py index be4fd3fc..3f7731b7 100644 --- a/aiida_workgraph/utils/__init__.py +++ b/aiida_workgraph/utils/__init__.py @@ -734,7 +734,9 @@ def workgraph_to_short_json( {"name": name, "identifier": input["identifier"]} for name, input in task["inputs"].items() if name in task["args"] + or (task["identifier"].upper() == "SHELLJOB" and name.startswith("nodes.")) ] + properties = process_properties(task) wgdata_short["nodes"][name] = { "label": task["name"],