ezmsg-nwb
NWB (Neurodata Without Borders) file reading and writing for the ezmsg framework.
Overview
ezmsg-nwb provides streaming NWB file I/O as ezmsg Units.
Key features:
- NWB Reader - Stream data from NWB files (local or remote) as AxisArray messages
- NWB Writer - Write incoming AxisArray streams to NWB files with automatic container management
- Flexible clock handling - Support for system, monotonic, and unknown reference clocks
- Pipeline settings logging - Automatically record every component's settings into a
pipeline_settingsintervals table inside the NWB file
Installation
Install from PyPI:
pip install ezmsg-nwb
Or install the latest development version:
pip install git+https://github.com/ezmsg-org/ezmsg-nwb@main
Dependencies
ezmsgezmsg-baseprocnumpypynwbh5pyneuroconvremfilepyyaml
Usage
See the examples folder for usage examples.
import ezmsg.core as ez
from ezmsg.nwb import NWBIteratorUnit, NWBSink
For general ezmsg tutorials and guides, visit ezmsg.org.
Pipeline settings table
When NWBSink is used inside an ez.run pipeline (with ezmsg>=3.9.0), it
opens a GraphContext against the running graph server, snapshots the
settings of every component in its session, and subscribes to subsequent
settings change events. Each snapshot is flattened into dotted column names
(e.g. MY.UNIT.MyUnitSettings.endpoint.host) and appended as a row to a
pipeline_settings TimeIntervals table inside the NWB file, alongside an
updated_component column identifying which component triggered the
transition. Reading back is straightforward:
from pynwb import NWBHDF5IO
with NWBHDF5IO(path, "r") as io:
nwbfile = io.read()
df = nwbfile.intervals["pipeline_settings"].to_dataframe()
Notes:
- Settings logging is best-effort. If the writer cannot connect to the graph
server (e.g. when running the consumer outside of
ez.run), it logs a warning and continues writing data without the table. - Settings values are sanitized for NWB storage: primitives, NumPy scalars,
enums, paths, and fixed-shape sequences/arrays are stored natively;
mappings and irregular structures are JSON-encoded;
Nonebecomes the string"None". - If a settings update changes a column's shape (scalar↔array or rank
change), the writer rotates into a new file segment (
<name>_01.nwb,<name>_02.nwb, …) so each segment's table stays internally consistent.
Development
We use uv for development.
- Install
uvif not already installed. - Fork this repository and clone your fork locally.
- Open a terminal and
cdto the cloned folder. - Run
uv syncto create a.venvand install dependencies. - (Optional) Install pre-commit hooks:
uv run pre-commit install - After making changes, run the test suite:
uv run pytest tests
License
MIT License - see LICENSE for details.
Acknowledgements
This project is supported by the Wyss Center for Bio and Neuroengineering and by Blackrock Neurotech.
Release files for ezmsg-nwb 1.12.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ezmsg_nwb-1.12.0.tar.gz | 145.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ezmsg_nwb-1.12.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 228.8 kB
Release files / ezmsg_nwb-1.12.0.tar.gz
| Download URL | ezmsg_nwb-1.12.0.tar.gz |
|---|---|
| Size | 145.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
88970105e4d4aa6cb86d4cbc10d3a3afa195b3f0d0ef9b00f5e10fbf4bac6206
|
|
BLAKE2b-256 checksum How to use checksums |
4a4a84df8a9e58b8cc09abde09e2bf752179ab2140792a5bb5fdcb2506a3b7c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / ezmsg_nwb-1.12.0-py3-none-any.whl
| Download URL | ezmsg_nwb-1.12.0-py3-none-any.whl |
|---|---|
| Size | 83.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b826d6af0e63275939f5acd7688069a15335087646607fadf6cfb6752375f625
|
|
BLAKE2b-256 checksum How to use checksums |
55b329115a5390e0db89ec42d5581b97c3ce5349ca62cd2e38ea9f94e533c562
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.11 {"installer":{"name":"uv","version":"0.12.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|