pynxtools
is a tool designed for making your experimental data FAIR.
It allows to develop ontologies and to create ontological instances based on the NeXus format.
pynxtools
is a parser for combining various instrument output formats and electronic lab notebook (ELN) formats into an HDF5 file according to NeXus application definitions.
Additionally, the software can be used as a plugin in the research data management system NOMAD for making experimental data searchable and publishable. NOMAD is developed by the FAIRmat consortium which is a consortium of the German National Research Data Infrastructure (NFDI).
It is recommended to use python 3.11 with a dedicated virtual environment for this package. Learn how to manage python versions and virtual environments.
Install the latest stable version of this package from PyPI with
pip install pynxtools
You can also install the latest development version with
pip install git+https://github.com/FAIRmat-NFDI/pynxtools.git
Documentation can be found here.
The software tools are located inside src/pynxtools
. They are shipped with unit tests located in tests
.
Some examples from the scientific community are provided in examples
. They guide you through the process of converting instrument data into the NeXus standard and visualising the files' content.
No. The data files produced here can be uploaded to NOMAD. Therefore, this tool acts as the framework to design schemas and instances of data within the NeXus universe. It can, however, be used as a NOMAD plugin to parse nexus files, please see the section below for details.
To use pynxtools with NOMAD, simply install it in the same environment as the nomad-lab
package.
NOMAD will recognize pynxtools as a plugin automatically and offer automatic parsing of .nxs
files. In addition, NOMAD will install a schema for NeXus application definitions.
By default, pynxtools
is already included in the NOMAD [production]https://nomad-lab.eu/prod/v1/gui/ and staging deployments.
Install the package with its dependencies:
git clone https://github.com/FAIRmat-NFDI/pynxtools.git \\
--branch master \\
--recursive pynxtools
cd pynxtools
git submodule sync --recursive
git submodule update --init --recursive --jobs=4
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install -e ".[dev]"
There is also a pre-commit hook available which formats the code and checks the linting before actually commiting. It can be installed with
pre-commit install
from the root of this repository.
Especially relevant for developers, there exists a basic test framework written in pytest which can be used as follows:
python -m pytest -sv tests
A number of examples exist which document how the tools can be used. For a standalone usage convenient jupyter notebooks are available for each tool. To use these notebooks, jupyter and related tools have to be installed in the development environment as follows:
python -m pip install jupyter
python -m pip install jupyterlab
python -m pip install jupyterlab_h5web
Please check this guide for any issues you face with the tool. If you don't find a solution there, please make a new Github Issue.
To ask further questions, to make suggestions how we can improve these tools, to get advice on how to build on this work, or to get your parser included into NOMAD, you can:
- Open an issue on the pynxtools GitHub
- Use our forums at matsci.org
- Write to support@nomad-lab.eu
- Contact directly the lead developers of the individual parsers.