This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
forked from nomad-coe/nomad-parser-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67e2a3f
commit d4b9e76
Showing
1 changed file
with
1 addition
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,122 +1 @@ | ||
![](https://github.com/nomad-coe/nomad-parser-yambo/actions/workflows/actions.yml/badge.svg) | ||
![](https://coveralls.io/repos/github/nomad-coe/nomad-parser-yambo/badge.svg?branch=main) | ||
[![NOMAD](https://img.shields.io/badge/Open%20NOMAD-lightgray?logo=data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjUuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxNTAwIDE1MDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1MDAgMTUwMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiMxOTJFODY7c3Ryb2tlOiMxOTJFODY7c3Ryb2tlLXdpZHRoOjE0MS4zMjI3O3N0cm9rZS1taXRlcmxpbWl0OjEwO30KCS5zdDF7ZmlsbDojMkE0Q0RGO3N0cm9rZTojMkE0Q0RGO3N0cm9rZS13aWR0aDoxNDEuMzIyNztzdHJva2UtbWl0ZXJsaW1pdDoxMDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMTM2LjQsNjM2LjVjMTUwLjgsMCwyNzMuMS0xMjEuOSwyNzMuMS0yNzIuMlMxMjg3LjIsOTIuMSwxMTM2LjQsOTIuMWMtMTUwLjgsMC0yNzMuMSwxMjEuOS0yNzMuMSwyNzIuMgoJUzk4NS42LDYzNi41LDExMzYuNCw2MzYuNXoiLz4KPHBhdGggY2xhc3M9InN0MSIgZD0iTTEzMjksOTQ2Yy0xMDYuNC0xMDYtMjc4LjgtMTA2LTM4Ni4xLDBjLTk5LjYsOTkuMy0yNTguNywxMDYtMzY1LjEsMTguMWMtNi43LTcuNi0xMy40LTE2LjItMjEuMS0yMy45CgljLTEwNi40LTEwNi0xMDYuNC0yNzgsMC0zODQuOWMxMDYuNC0xMDYsMTA2LjQtMjc4LDAtMzg0LjlzLTI3OC44LTEwNi0zODYuMSwwYy0xMDcuMywxMDYtMTA2LjQsMjc4LDAsMzg0LjkKCWMxMDYuNCwxMDYsMTA2LjQsMjc4LDAsMzg0LjljLTYzLjIsNjMtODkuMSwxNTAtNzYuNywyMzIuMWM3LjcsNTcuMywzMy41LDExMy43LDc3LjYsMTU3LjZjMTA2LjQsMTA2LDI3OC44LDEwNiwzODYuMSwwCgljMTA2LjQtMTA2LDI3OC44LTEwNiwzODYuMSwwYzEwNi40LDEwNiwyNzguOCwxMDYsMzg2LjEsMEMxNDM1LjQsMTIyNCwxNDM1LjQsMTA1MiwxMzI5LDk0NnoiLz4KPC9zdmc+Cg==)](https://nomad-lab.eu/prod/v1/staging/gui/) | ||
|
||
# NOMAD's parser for YAMBO | ||
|
||
This is a parser plugin for the [YAMBO](https://www.yambo-code.eu/) input/output files. | ||
|
||
## Getting started | ||
|
||
### Install the dependencies | ||
|
||
Clone the project and, in the workspace folder, create a virtual environment (note this project uses Python 3.9): | ||
```sh | ||
git clone https://github.com/nomad-coe/nomad-parser-yambo.git | ||
cd nomad-parser-yambo | ||
python3.9 -m venv .pyenv | ||
source .pyenv/bin/activate | ||
``` | ||
|
||
Install the `nomad-lab` package: | ||
```sh | ||
pip install --upgrade pip | ||
pip install '.[dev]' --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple | ||
``` | ||
|
||
> **Note**: Until we have an official PyPI NOMAD release with the plugin functionality, make | ||
sure to include NOMAD's internal package registry (via `--index-url` in the above command). | ||
|
||
|
||
### Run the tests | ||
|
||
You can run the unit testing using the `pytest` package: | ||
|
||
```sh | ||
python -m pytest -sv | ||
``` | ||
|
||
We recommend to install the `coverage` and `coveralls` packages for a more comprehensive output of the testing: | ||
```sh | ||
pip install coverage coveralls | ||
python -m coverage run -m pytest -sv | ||
``` | ||
|
||
## Development | ||
|
||
The plugin is still under development. If you would like to contribute, install the package in editable mode (with the added `-e` flag) with the development dependencies: | ||
|
||
```sh | ||
pip install -e .[dev] --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple | ||
``` | ||
|
||
|
||
### Setting up the plugin on your local installation | ||
Read the [NOMAD plugin documentation](https://nomad-lab.eu/prod/v1/staging/docs/howto/oasis/plugins_install.html) for all details on how to deploy the plugin on your local NOMAD installation. | ||
|
||
To deploy the plugin in your local NOMAD installation, follow the next steps: | ||
|
||
1. Add the configurations related to NOMAD. This is already implemented through the plugin definition file ```src/nomad_parser_yambo/nomad_plugin.yaml```: | ||
|
||
```yaml | ||
plugin_type: parser | ||
name: parsers/yambo | ||
description: | | ||
This plugin is used to parsed YAMBO files into the NOMAD schema. | ||
``` | ||
and the ```nomad.yaml``` configuration file: | ||
|
||
```yaml | ||
plugins: | ||
include: | ||
- 'parsers/yambo' | ||
- 'runschema' | ||
- 'simulationworkflowschema' | ||
- 'nomad_simulations' | ||
options: | ||
parsers/yambo: | ||
python_package: nomad_parser_yambo | ||
runschema: | ||
python_package: runschema | ||
nomad_simulations: | ||
python_package: nomad_simulations | ||
``` | ||
3. Add to your local NOMAD installation the same lines of your plugin ```nomad.yaml``` file. | ||
4. Add to your local NOMAD installation environment the `PYTHONPATH` to your plugin. This can be done either by running the following command every time you start a new terminal for running the appworker, or by adding it to your virtual environment in the `<path-to-local-nomad-installation>/.pyenv/bin/activate` file: | ||
|
||
```sh | ||
export PYTHONPATH="$PYTHONPATH:<path-to-nomad-parser-yambo-cloned-repo>/src" | ||
``` | ||
|
||
If you are working in this repository, you just need to activate the environment to start working using the ```nomad-parser-yambo``` package locally in your own Python scripts. | ||
|
||
### Run linting and auto-formatting | ||
Ruff auto-formatting is also a part of the GitHub workflow actions. Make sure that before you make a Pull Request to add your contributions to this repo, the following commands run in your local without any errors otherwise the workflow action will fail. | ||
```sh | ||
ruff check . | ||
``` | ||
```sh | ||
ruff format . --check | ||
``` | ||
|
||
Alternatively, if you are using VSCode as your IDE, we added the settings configuration file, `.vscode/settings.json`, such that it performs `ruff format` whenever you save progress in a file. | ||
|
||
|
||
<!-- | ||
## Build the python package | ||
|
||
The `pyproject.toml` file contains everything that is necessary to turn the project into a pip installable python package. Run the python build tool to create a package distribution: | ||
|
||
``` | ||
pip install build | ||
python -m build --sdist | ||
``` | ||
|
||
You can install the package with pip: | ||
|
||
``` | ||
pip install dist/nomad-schema-plugin-example-1.0.tar.gz | ||
``` | ||
|
||
Read more about python packages, `pyproject.toml`, and how to upload packages to PyPI on the [PyPI documentation](https://packaging.python.org/en/latest/tutorials/packaging-projects/). | ||
--> | ||
The new parser (2024) for YAMBO input/output files can be found in [FAIRmat-NFDI/nomad-parser-yambo](https://github.com/FAIRmat-NFDI/nomad-parser-yambo). |