This directory contains a plugin called nomad-ikz-plugin
designed for the IKZ institute.
This a python package that contains several subpackages for each technique.
Check the README within each subfolder for more deatils on each technique.
The directory tree:
nomad-ikz-plugin/
├── src
│ └── nomad-ikz-plugin
│ ├── general
│ ├── characterization
│ ├── czochralski
│ ├── directional_solidification
│ ├── pld
│ ├── mbe
│ └── movpe
└── tests
└── data
├── czochralski
├── directional_solidification
├── pld
├── mbe
└── movpe
src/
: contains the source code for the plugins.tests/
: contains tests for the plugins.
To use the plugin, you need to clone this repo in your local machine and install the package with pip:
git clone https://github.com/IKZ-Berlin/nomad-ikz-plugin
cd nomad-ikz-plugin
pip install -e .[dev]
For more details on what happens under the hood, check the .toml
file in the nomad-ikz-plugin
folder:
- all the installed subpackages are listed under the section
[project.entry-points.'nomad.plugin']
. dependencies
and[project.optional-dependencies]
contain all the other packages installed along to this one.
You need to copy and fill the tabular files in tests/data
folder, then drag and drop them into a new NOMAD upload.
Please refer to the README.md file in each subdirectory for more information about each plugin.
Follow the github instructions. The URL and directory depends on your user name or organization and the project name you choose. But, it should look somewhat like this:
git clone [email protected]:markus1978/my-nomad-schema.git
cd my-nomad-schema
You should create a virtual environment. You will need the nomad-lab
package (and pytest
).
You need at least Python 3.9.
python3 -m venv .pyenv
source .pyenv/bin/activate
pip install -r requirements.txt --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple
to ensure installation of all the packages required, make sure in to install:
pip install nomad-lab[parsing, infrastructure]
Make sure the current directory is in your path:
export PYTHONPATH=.
You can run automated tests with pytest
:
pytest -svx tests
You can parse an example archive that uses the schema with nomad
command
(installed via nomad-lab
Python package):
nomad parse tests/data/test.archive.yaml --show-archive
Refer to official NOMAD docs to learn how to develop schemas and parsers and plugins, how to add them to an Oasis, how to publish them: https://nomad-lab/prod/v1/staging/docs/plugins.html