Skip to main content

A module with utilities for interacting with NOMAD via, e.g., a workflow manager.

Project description

DOI

nomad-utility-workflows plugin

Utilities for interfacing with NOMAD within workflows, e.g., via a workflow manager, including python API functions for uploading to NOMAD and querying the repository as well as automated generation of NOMAD custom workflow yaml file (NOMAD workflow data models).

This nomad plugin was generated with Cookiecutter along with @nomad's cookiecutter-nomad-plugin template.

Usage

For direct usage and integrating the utility module into other plugins or codes, nomad-utility-workflows is available as a PyPI package:

pip install nomad-utility-workflows>=0.2.0

If you are following the How-to guides in the docs, use the "vis" optional dependencies tag (includes dependencies for, e.g., Jupyter notebook and graph visualization):

pip install nomad-utility-workflows[vis]>=0.2.0

[!CAUTION] There were breaking changes made in the transition to nomad-utility-workflows version 0.2.0. This is particularly relevant for the functions called for building the workflow yaml. To use older versions, you should reference the corresponding docs pages by checking out an older branch and serving the mkdocs page locally (See README.md).

[!CAUTION] There were breaking changes made in the transition to nomad-utility-workflows version 0.1.0. This is particularly relevant for the structure of inputs of the workflow graph generation functions. To use older versions, you should reference the corresponding docs pages by checking out an older branch and serving the mkdocs page locally (See README.md).

Linking to your NOMAD account

Create an account on https://nomad-lab.eu/. Store your credentials in a .env file in your working directory, at the root plugin directory for developers, or in some directory that is added to your PYTHONPATH, with the following content

NOMAD_USERNAME="MyLogin"
NOMAD_PASSWORD="MyPassWord"

and insert your username and password.

[!CAUTION] Never push your .env file to a repository. This would expose your password.

Test Notebooks

To run the test notebooks, create a jupyter kernel using your venv:

python -m ipykernel install --user --name=nomad_utility_workflows

Development

If you want to develop this module locally, clone the project and in the plugin folder, create a virtual environment (you can use Python 3.10, or 3.11):

git clone https://github.com/FAIRmat-NFDI/nomad-utility-workflows.git
cd nomad-utility-workflows
python3.11 -m venv .pyenv
. .pyenv/bin/activate

Make sure to have pip upgraded:

pip install --upgrade pip

We recommend installing uv for fast pip installation of the packages:

pip install uv

Install the nomad-lab package:

uv pip install '.[vis,dev]'

The plugin is still under development. If you would like to contribute, install the package in editable mode (with the added -e flag):

uv pip install -e '.[vis,dev]'

Run the tests

You can run locally the tests:

python -m pytest -sv tests

where the -s and -v options toggle the output verbosity.

Our CI/CD pipeline produces a more comprehensive test report using the pytest-cov package. You can generate a local coverage report:

uv pip install pytest-cov
python -m pytest --cov=src tests

Run linting and auto-formatting

We use Ruff for linting and formatting the code. Ruff auto-formatting is also a part of the GitHub workflow actions. You can run locally:

ruff check .
ruff format . --check

Debugging

For interactive debugging of the tests, use pytest with the --pdb flag. We recommend using an IDE for debugging, e.g., VSCode. If that is the case, add the following snippet to your .vscode/launch.json:

{
  "configurations": [
      {
        "name": "<descriptive tag>",
        "type": "debugpy",
        "request": "launch",
        "cwd": "${workspaceFolder}",
        "program": "${workspaceFolder}/.pyenv/bin/pytest",
        "justMyCode": true,
        "env": {
            "_PYTEST_RAISE": "1"
        },
        "args": [
            "-sv",
            "--pdb",
            "<path-to-plugin-tests>",
        ]
    }
  ]
}

where <path-to-plugin-tests> must be changed to the local path to the test module to be debugged.

The settings configuration file .vscode/settings.json automatically applies the linting and formatting upon saving the modified file.

Documentation on Github pages

To view the documentation locally, install the related packages using:

uv pip install -r requirements_docs.txt

Run the documentation server:

mkdocs serve

How to cite this work

Rudzinski, J.F., Albino, A., Bereau, T., Daelman, N., Ladines, A.N., Mohr, B., Pedersen, J., Walter, L.J., NOMAD Utility Workflows (all versions) [Computer software]. https://zenodo.org/doi/10.5281/zenodo.14895189

Main contributors

Name E-mail
Joseph F. Rudzinski joseph.rudzinski@physik.hu-berlin.de
Andrea Albino
Tristan Bereau
Nathan Daelman
Alvin N. Ladines
Bernadette Mohr
Jesper Pedersen
Luis J. Walter

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nomad_utility_workflows-0.3.0.tar.gz (14.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nomad_utility_workflows-0.3.0-py3-none-any.whl (29.6 kB view details)

Uploaded Python 3

File details

Details for the file nomad_utility_workflows-0.3.0.tar.gz.

File metadata

  • Download URL: nomad_utility_workflows-0.3.0.tar.gz
  • Upload date:
  • Size: 14.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nomad_utility_workflows-0.3.0.tar.gz
Algorithm Hash digest
SHA256 bf0ddfd083a535f997af1903265dd3d1f3f4c6fa8743dddf188637c138bf9ef2
MD5 4ff5cb4860192725fdd4dfba39047a31
BLAKE2b-256 045c011e142e21a36701f03771d3fc5444c612a8bdaf4a764a6c382feef753b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nomad_utility_workflows-0.3.0.tar.gz:

Publisher: publish.yml on FAIRmat-NFDI/nomad-utility-workflows

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nomad_utility_workflows-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nomad_utility_workflows-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c378f68616aa1990ec36bed550f6fb258a79c4ab876fd26814884625e5cebd57
MD5 448e488d0a630b4c8273e81b8aa14d3c
BLAKE2b-256 f88e49c5d2812fed6895839c8136a79780c1b48ce0d7ceaf79f27ba7f01a282d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nomad_utility_workflows-0.3.0-py3-none-any.whl:

Publisher: publish.yml on FAIRmat-NFDI/nomad-utility-workflows

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page