In the Python Workflow Definition (PWD) each node represents a Python function, with the edges defining the connection between input and output of the different Python functions.
Each workflow consists of three files, a Python module which defines the individual Pythons, a JSON file which defines the connections between the different Python functions and a conda environment file to define the software dependencies. The files are not intended to be human readable, but rather interact as a machine readable exchange format between the different workflow engines to enable interoperability.
As a first example we define two Python functions which add multiple inputs:
def add_x_and_y(x, y):
z = x + y
return x, y, z
def add_x_and_y_and_z(x, y, z):
w = x + y + z
return wThese two Python functions are combined in the following example workflow:
x, y, z = add_x_and_y(x=1, y=2)
w = add_x_and_y_and_z(x=x, y=y, z=z)For the workflow representation of these Python functions the Python functions are stored in the simple_workflow.py Python module. The connection of the Python functions are stored in the workflow_simple.json JSON file:
{
"nodes": {
"0": "simple_workflow.add_x_and_y_and_z",
"1": "simple_workflow.add_x_and_y",
"2": "simple_workflow.add_x_and_y",
"3": "simple_workflow.add_x_and_y",
"4": 1,
"5": 2
},
"edges": [
{"tn": 0, "th": "x", "sn": 1, "sh": "x"},
{"tn": 1, "th": "x", "sn": 4, "sh": null},
{"tn": 1, "th": "y", "sn": 5, "sh": null},
{"tn": 0, "th": "y", "sn": 2, "sh": "y"},
{"tn": 2, "th": "x", "sn": 4, "sh": null},
{"tn": 2, "th": "y", "sn": 5, "sh": null},
{"tn": 0, "th": "z", "sn": 3, "sh": "z"},
{"tn": 3, "th": "x", "sn": 4, "sh": null},
{"tn": 3, "th": "y", "sn": 5, "sh": null}
]
}
As the workflow does not require any additional resources, the environment.yml file is not required.
The corresponding Jupyter notebooks demonstrate this functionality:
| Example | Explanation |
|---|---|
| aiida_simple.ipynb | Define Workflow with aiida and execute it with jobflow and pyiron_base. |
| jobflow_simple.ipynb | Define Workflow with jobflow and execute it with aiida and pyiron_base. |
| pyiron_base_simple.ipynb | Define Workflow with pyiron_base and execute it with aiida and jobflow. |
| universal_workflow_simple.ipynb | Execute workflow defined in the Python Workflow Definition with aiida, executorlib, jobflow, pyiron_base and pure Python. |
The second workflow example is the calculation of an energy volume curve with Quantum Espresso. In the first step the initial structure is relaxed, afterward it is strained and the total energy is calculated.
- quantum_espresso_workflow.py Python functions
- workflow_qe.json Workflow definition in the Python Workflow Definition.
- environment.yml Conda environment
| Example | Explanation |
|---|---|
| aiida_qe.ipynb | Define Workflow with aiida and execute it with jobflow and pyiron_base. |
| jobflow_qe.ipynb | Define Workflow with jobflow and execute it with aiida and pyiron_base. |
| pyiron_base_qe.ipynb | Define Workflow with pyiron_base and execute it with aiida and jobflow. |
| universal_workflow_qe.ipynb | Execute workflow defined in the Python Workflow Definition with aiida, executorlib, jobflow, pyiron_base and pure Python. |