Skip to main content

Supporting a FAIR Research Data lifecycle using Python and HDF5.

Project description

HDF5 Research Data Management Toolbox

Tests codecov Documentation Status PyPI version pyvers

A Python package that helps researchers achieve sustainable FAIR (Findable, Accessible, Interoperable, Reusable) data management with HDF5 files. The toolbox provides a comprehensive approach to the research data lifecycle through five main stages: planning, collecting, analyzing, sharing, and reusing data.

Note: This project is actively under development.

✨ Quick Start

One of the core features of the toolbox and success factors for achieving FAIR data, is using semantic metadata.

Let's see how we can use RDF (semantic metadata) together with HDF5 files using the toolbox:

# Install the package
pip install h5RDMtoolbox
import h5rdmtoolbox as h5tbx
import rdflib
import numpy as np

# Create a new HDF5 file with semantic metadata
M4I = rdflib.Namespace("http://w3id.org/nfdi4ing/metadata4ing#")

# Create a new HDF5 file with FAIR metadata
with h5tbx.File("example.h5", "w") as h5:
    h5.create_dataset("temperature", data=np.array([20, 21, 19, 22]))
    h5.attrs["units", M4I.hasUnit] = "degree_Celsius"
    h5.rdf["units"].object = "http://qudt.org/vocab/unit/DEG_C"
    h5.attrs["description", "https://schema.org/description"] = "Room temperature measurements"

    ttl = h5.serialize("ttl")

The serialization in Turtle (ttl) is teh RDF serialization of the HDF5 data (without arrays):

@prefix hdf: <http://purl.allotrope.org/ontologies/hdf5/1.8#> .
@prefix m4i: <http://w3id.org/nfdi4ing/metadata4ing#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

hdf:H5T_INTEL_I64 a hdf:Datatype .

[] a hdf:File ;
    hdf:rootGroup [ a hdf:Group ;
            hdf:attribute [ a hdf:StringAttribute ;
                    hdf:data "Room temperature measurements" ;
                    hdf:name "description" ],
                [ a hdf:StringAttribute ;
                    hdf:data "degree_Celsius" ;
                    hdf:name "units" ] ;
            hdf:member [ a hdf:Dataset ;
                    hdf:dataspace [ a hdf:SimpleDataspace ;
                            hdf:dimension [ a hdf:DataspaceDimension ;
                                    hdf:dimensionIndex 0 ;
                                    hdf:size 4 ] ] ;
                    hdf:datatype hdf:H5T_INTEGER,
                        hdf:H5T_INTEL_I64 ;
                    hdf:layout hdf:H5D_CONTIGUOUS ;
                    hdf:maximumSize 4 ;
                    hdf:name "/temperature" ;
                    hdf:rank 1 ;
                    hdf:size 4 ] ;
            hdf:name "/" ;
            m4i:hasUnit <http://qudt.org/vocab/unit/DEG_C> ;
            schema:description "Room temperature measurements" ] .

🚀 Key Features

  • 🔗 HDF5 + Xarray Integration: Seamless access to metadata during data analysis with native xarray support
  • 🏷️ Persistent Identifiers: Assign globally unique identifiers using RDF triples for FAIR compliance
  • 📋 Standardized Conventions: Define and enforce community-specific metadata standards
  • ☁️ Repository Integration: Direct upload to Zenodo and other research repositories
  • 🗄️ Database Support: Use HDF5 files with MongoDB or native HDF5 databases
  • 🔒 Semantic Enrichment: Add RDF-based semantic meaning to your data
  • 🌐 Catalog Integration: Search and discover datasets through SPARQL-based catalogs

Find an example code in In Colab or check out the 📚 full Documentation

Who is the package for?

For everybody, who is...

  • ... looking for a management approach for his or her data.
  • ... community has not yet established a stable convention.
  • ... working with small and big data, that fits into HDF5 files.
  • ... looking for an easy way to work with HDF5, especially through Jupyter Notebooks.
  • ... trying to integrate HDF5 with repositories and databases.
  • ... wishing to enrich data semantically with the RDF standard.
  • ... looking for a way to do all the above whiles not needing to learn a new syntax.
  • ... new to HDF5 and wants to learn about it, especially with respect to the FAIR principles and data management.

Who is it not for?

For everybody, who ...

  • ... is looking for a management approach which at the same time allows high-performance and/or parallel work with HDF5
  • ... has already well-established conventions and managements approaches in his or her community

Package Architecture/structure

The toolbox implements six modules, which are shown below. The numbers reference to their main usage in the stages in the data lifecycle shown here. The wrapper module implements the main interface between the user and the HDF5 file. It extends the features of the underlying h5py library. Some of the features are implemented in other modules, hence the wrapper module depends on the convention, database and linked data (ld) module.

H5TBX modules

Current implementation highlights in the modules:

  • The wrapper module adds functionality on top of the h5py package. It allows to include so-called standard names, which are defined in conventions. And it implements interfaces, such as to the package xarray, which allows to carry metadata from HDF5 to the user. Other high-level interfaces like .rdf allows assigning semantic information to the HDF5 file.
  • For the database module, hdfDB and mongoDB are implemented. The hdfDB module allows to use HDF5 files as a database. The mongoDB module allows to use mongoDB as a database by mapping the metadata of HDF5 files to the database.
  • For the repository module, a Zenodo interface is implemented. Zenodo is a repository, which allows to upload and download data with a persistent identifier.
  • For the convention module, the standard attributes are implemented.
  • The layout module allows to define expectations on the internal layout (object names, location, attributes, properties) of HDF5 files.
  • The catalog module allows interfacing to HDF5 and RDF data published on Zenodo. Via a catalog file, a providers describe the data in various zenodo records they want to share. Through the catalog file, users can work with the data without downloading the full HDF5 files first.

Quickstart

A quickstart notebook can be tested by clicking on the following badge:

Open Quickstart Notebook

Documentation

Please find a comprehensive documentation with many examples here or by click on the image, which shows the research data lifecycle in the center and the respective toolbox features on the outside:

A paper is published in the journal inggrid.

Installation

Use python 3.9 or higher (automatic testing is performed until 3.13). If you are a regular user, you can install the package via pip:

pip install h5RDMtoolbox

Install from source:

Developers may clone the repository and install the package from source. Clone the repository first:

git clone https://github.com/matthiasprobst/h5RDMtoolbox.git@main

Then, run

pip install h5RDMtoolbox/

Add --user if you do not have root access.

For development installation run

pip install -e h5RDMtoolbox/

Dependencies

The core functionality depends on the following packages. Some of them are for general management others are very specific to the features of the package:

General dependencies are ...

  • numpy: Scientific computing, handling of arrays
  • matplotlib: Plotting
  • appdirs: Managing user and application directories
  • packaging: Version handling
  • IPython: Pretty display of data in notebooks
  • regex: Working with regular expressions

Specific to the package are ...

  • h5py: HDF5 file interface
  • xarray: Working with scientific arrays in combination with attributes. Allows carrying metadata from HDF5 to user
  • pint: Allows working with units
  • pint_xarray: Working with units for usage with xarray
  • python-forge: Used to update function signatures when using the standard attributes
  • pydantic: Used to validate standard attributes
  • pyyaml: Reading and writing of yaml files, e.g. metadata definitions (conventions). Note, lower versions collide with python 3.11
  • requests: Used to download files from the internet or validate URLs, e.g. metadata definitions (conventions)
  • rdflib: Used to enable working with RDF
  • ontolutils: Required to work with RDF and derive semantic description of HDF5 file content

Optional dependencies

To run unit tests or to enable certain features, additional dependencies must be installed.

Install optional dependencies by specifying them in square brackets after the package name, e.g.:

pip install h5RDMtoolbox[mongodb]

[mongodb]

  • pymongo: Database solution for HDF5 files

[csv]

  • pandas: Mainly used for reading csv and pretty printing

[snt]

  • xmltodict: Reading of xml files
  • tabulate: Pretty printing of tables
  • python-gitlab: Access to gitlab repositories
  • pypandoc: Conversion of markdown files to html

Citing the package

If you intend to use the package in your work, you may cite the software itself as published on paper in the Zenodo (latest version) repository. A related paper is published in the journal inggrid. Thank you!

Alternatively or additionally, you can consult the CITATION.cff file.

Here is the BibTeX entry:

@article{probst2024h5rdmtoolbox,
	author = {Matthias Probst, Balazs Pritz},
	title = {h5RDMtoolbox - A Python Toolbox for FAIR Data Management around HDF5},
	volume = {2},
	year = {2024},
	url = {https://www.inggrid.org/article/id/4028/},
	issue = {1},
	doi = {10.48694/inggrid.4028},
	month = {8},
	keywords = {Data management,HDF5,metadata,data lifecycle,Python,database},
	issn = {2941-1300},
	publisher={Universitäts- und Landesbibliothek Darmstadt},
	journal = {ing.grid}
}

Contribution

Feel free to contribute. Make sure to write docstrings to your methods and classes and please write tests and use PEP 8 (https://peps.python.org/pep-0008/)

Please write tests for your code and put them into the test/ folder. Visit the README file in the test-folder for more information.

Pleas also add a jupyter notebook in the docs/ folder in order to document your code. Please visit the README file in the docs-folder for more information on how to compile the documentation.

Please use the numpy style for the docstrings: https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_numpy.html#example-numpy

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

h5rdmtoolbox-2.7.1.tar.gz (222.2 kB view details)

Uploaded Source

Built Distribution

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

h5rdmtoolbox-2.7.1-py3-none-any.whl (239.9 kB view details)

Uploaded Python 3

File details

Details for the file h5rdmtoolbox-2.7.1.tar.gz.

File metadata

  • Download URL: h5rdmtoolbox-2.7.1.tar.gz
  • Upload date:
  • Size: 222.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for h5rdmtoolbox-2.7.1.tar.gz
Algorithm Hash digest
SHA256 43e42d7a166e31bfecf9b79e58be3287e03552244ac6d8d3bb9a19c4fb8d9a29
MD5 7f90197aeaa528363311266558f1efb9
BLAKE2b-256 2669e01829fb7c023e81a590b4d0c5f75af7133980a327a60321892d48c621f9

See more details on using hashes here.

File details

Details for the file h5rdmtoolbox-2.7.1-py3-none-any.whl.

File metadata

  • Download URL: h5rdmtoolbox-2.7.1-py3-none-any.whl
  • Upload date:
  • Size: 239.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for h5rdmtoolbox-2.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 79a4e566e1e687a2ccef5da1eacea59ef3bd895d1c3849d88303486e283ec951
MD5 dcfeb9f9c23f1dd54caf51302a1ffe55
BLAKE2b-256 09af9e54f4b2808fce31fc2f5454dc9902f58d5e6315ca24b2a70ac42a7c6376

See more details on using hashes here.

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