How to add custom tasks to workflows using NOMAD's ELN Functionalities¶
This how-to covers how to add a custom NOMAD entry in the case that some tasks or input/output of your workflow, will not automatically parsed and stored within a NOMAD archive, i.e., there it cannot be referenced within your workflow.
Example Overview¶
Consider the following setup, simulation, and analysis protocol:
The minimize, equilibrate, and production (workflow) tasks are analogous to that described in How to > Create Custom Workflows. The remaining tasks (green boxes) correspond to steps in the simulation protocol that are not supported by the NOMAD simulation parsers, e.g., creation of the initial configuration or model parameter files, or post-simulation analysis.
Create an ELN entry with ElnBaseSection¶
The basic strategy described here is to use NOMAD's existing ELN functionality to add (meta)data for the "non-recognized" steps of the workflow. Here we only provide a description quantity, but more advanced support is available, see NOMAD Docs > How to > Use ELNs.
Before we can add these as tasks in the workflow, we need to create mainfiles that NOMAD recognizes with the corresponding metadata. We can achieve this by creating an archive.yaml file as follows:
# insert_solute_in_box.archive.yaml
data:
m_def: nomad.datamodel.metainfo.eln.ElnBaseSection
name: 'insert_solute_in_box'
description: 'This is a description of the method performed to insert the solute into the simulation box...'
This utilizes the ELNBaseSection
class to create the following overview page upon upload:
Similarly, the remaining (non-simulation) custom workflow steps (i.e., tasks) can be included in a similar manner:
workflow_parameters.archive.yaml
convert_box_to_gro.archive.yaml
update_topology_file.archive.yaml
compute_wham.archive.yaml
All custom yaml entry files are already included in the example data provided above.
Link the ELN entries to your workflow¶
Now that we have a mainfile for each task, we can specify the graph strucuture and node attributes as described in the Create Custom Workflows > Complete Workflow Creation Example:
import gravis as gv
import networkx as nx
from nomad_utility_workflows.utils.workflows import (
NodeAttributesUniverse,
NodeAttributes,
nodes_to_graph,
build_nomad_workflow,
)
path_to_job = ''
node_attributes_universe = NodeAttributesUniverse(
nodes={
0: NodeAttributes(
name="Solute in bilayer workflow parameters",
type="input",
path_info={
'archive_path': 'data',
'mainfile_path': f'{path_to_job}workflow_parameters.archive.yaml',
},
out_edge_nodes=[1, 3],
),
1: NodeAttributes(
name="insert_solute_in_box",
type="task",
path_info={
'mainfile_path': f'{path_to_job}insert_solute_in_box.archive.yaml',
'archive_path': 'data',
},
),
2: NodeAttributes(
name="convert_box_to_gro",
type="task",
path_info={
'mainfile_path': f'{path_to_job}convert_box_to_gro.archive.yaml',
'archive_path': 'data',
},
in_edge_nodes=[1],
),
3: NodeAttributes(
name="update_topology_file",
type="task",
path_info={
'mainfile_path': f'{path_to_job}update_topology_file.archive.yaml',
'archive_path': 'data',
},
),
4: NodeAttributes(
name="minimize",
type="workflow",
entry_type="simulation",
in_edge_nodes=[2, 3],
path_info={
'mainfile_path': f'{path_to_job}solute_in_bilayer_minimize.log'
},
),
5: NodeAttributes(
name="equilibrate",
type="workflow",
entry_type="simulation",
path_info={
'mainfile_path': f'{path_to_job}solute_in_bilayer_equilibrate.log'
},
in_edge_nodes=[4],
),
6: NodeAttributes(
name="production",
type="workflow",
entry_type="simulation",
path_info={
'mainfile_path': f'{path_to_job}solute_in_bilayer_production.log'
},
in_edge_nodes=[5],
out_edge_nodes=[7],
),
7: NodeAttributes(
name='WHAM Analysis',
type='output',
path_info={
'archive_path': 'data',
'mainfile_path': f'{path_to_job}compute_wham.archive.yaml'
},
),
}
)
Generate the input workflow graph and workflow yaml¶
Identically to Create Custom Workflows >
Complete Workflow Creation Example and Generate the workflow yaml, we simply apply the node_to_graph()
and build_nomad_workflow()
functions:
workflow_graph_input = nodes_to_graph(node_attributes_universe)
workflow_metadata = {
'destination_filename': 'solute_in_bilayer.workflow.archive.yaml',
'workflow_name': 'Solute in bilayer workflow',
}
workflow_graph_output = build_nomad_workflow(
workflow_metadata=workflow_metadata,
workflow_graph=nx.DiGraph(workflow_graph_input),
write_to_yaml=True,
)
which produces the following workflow yaml:
'workflow2':
'name': 'Solute in bilayer workflow'
'inputs':
- 'name': 'Solute in bilayer workflow parameters'
'section': '../upload/archive/mainfile/workflow_parameters.archive.yaml#/data'
'outputs':
- 'name': 'WHAM Analysis'
'section': '../upload/archive/mainfile/compute_wham.archive.yaml#/data'
- 'name': 'output system from production'
'section': '../upload/archive/mainfile/solute_in_bilayer_production.log#/run/0/system/-1'
- 'name': 'output calculation from production'
'section': '../upload/archive/mainfile/solute_in_bilayer_production.log#/run/0/calculation/-1'
'tasks':
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'insert_solute_in_box'
'task': '../upload/archive/mainfile/insert_solute_in_box.archive.yaml#/data'
'inputs':
- 'name': 'input data from Solute in bilayer workflow parameters'
'section': '../upload/archive/mainfile/workflow_parameters.archive.yaml#/data'
'outputs':
- 'name': 'output data from insert_solute_in_box'
'section': '../upload/archive/mainfile/insert_solute_in_box.archive.yaml#/data'
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'convert_box_to_gro'
'task': '../upload/archive/mainfile/convert_box_to_gro.archive.yaml#/data'
'inputs':
- 'name': 'input data from insert_solute_in_box'
'section': '../upload/archive/mainfile/insert_solute_in_box.archive.yaml#/data'
'outputs':
- 'name': 'output data from convert_box_to_gro'
'section': '../upload/archive/mainfile/convert_box_to_gro.archive.yaml#/data'
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'update_topology_file'
'task': '../upload/archive/mainfile/update_topology_file.archive.yaml#/data'
'inputs':
- 'name': 'input data from Solute in bilayer workflow parameters'
'section': '../upload/archive/mainfile/workflow_parameters.archive.yaml#/data'
'outputs':
- 'name': 'output data from update_topology_file'
'section': '../upload/archive/mainfile/update_topology_file.archive.yaml#/data'
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'minimize'
'task': '../upload/archive/mainfile/solute_in_bilayer_minimize.log#/workflow2'
'inputs':
- 'name': 'input data from convert_box_to_gro'
'section': '../upload/archive/mainfile/convert_box_to_gro.archive.yaml#/data'
- 'name': 'input system from minimize'
'section': '../upload/archive/mainfile/solute_in_bilayer_minimize.log#/run/0/system/-1'
- 'name': 'input data from update_topology_file'
'section': '../upload/archive/mainfile/update_topology_file.archive.yaml#/data'
'outputs':
- 'name': 'output system from minimize'
'section': '../upload/archive/mainfile/solute_in_bilayer_minimize.log#/run/0/system/-1'
- 'name': 'output calculation from minimize'
'section': '../upload/archive/mainfile/solute_in_bilayer_minimize.log#/run/0/calculation/-1'
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'equilibrate'
'task': '../upload/archive/mainfile/solute_in_bilayer_equilibrate.log#/workflow2'
'inputs':
- 'name': 'input system from minimize'
'section': '../upload/archive/mainfile/solute_in_bilayer_minimize.log#/run/0/system/-1'
'outputs':
- 'name': 'output system from equilibrate'
'section': '../upload/archive/mainfile/solute_in_bilayer_equilibrate.log#/run/0/system/-1'
- 'name': 'output calculation from equilibrate'
'section': '../upload/archive/mainfile/solute_in_bilayer_equilibrate.log#/run/0/calculation/-1'
- 'm_def': 'nomad.datamodel.metainfo.workflow.TaskReference'
'name': 'production'
'task': '../upload/archive/mainfile/solute_in_bilayer_production.log#/workflow2'
'inputs':
- 'name': 'input system from equilibrate'
'section': '../upload/archive/mainfile/solute_in_bilayer_equilibrate.log#/run/0/system/-1'
'outputs':
- 'name': 'output data from WHAM Analysis'
'section': '../upload/archive/mainfile/compute_wham.archive.yaml#/data'
- 'name': 'output system from production'
'section': '../upload/archive/mainfile/solute_in_bilayer_production.log#/run/0/system/-1'
- 'name': 'output calculation from production'
'section': '../upload/archive/mainfile/solute_in_bilayer_production.log#/run/0/calculation/-1'
When uploaded to NOMAD with the corresponding simulation files and ELN archive.yaml
's, you should obtain a workflow entry with the visualization show the top of this page.