Extension for defining neural probes in the probeinterface format
Project description
ndx-probeinterface Extension for NWB
ndx-probeinterface is an extension of the NWB format to formally define information about neural probes as data types in NWB files. It comes with helper functions to easily construct ndx-probeinterface.Probe from probeinterface.Probe and vice versa.
Installation
pip install ndx_probeinterface
Usage
Going from a probeinterface.Probe/ProbeGroup object to a ndx_probeinterface.Probe object
import ndx_probeinterface
pi_probe = probeinterface.Probe(...)
pi_probegroup = probeinterface.ProbeGroup()
# from_probeinterface always returns a list of ndx_probeinterface.Probe devices
ndx_probes1 = ndx_probeinterface.from_probeinterface(pi_probe)
ndx_probes2 = ndx_probeinterface.from_probeinterface(pi_probegroup)
ndx_probes = ndx_probes1.extend(ndx_probes2)
nwbfile = pynwb.NWBFile(...)
# add Probe as NWB Devices
for ndx_probe in ndx_probes:
nwbfile.add_device(ndx_probe)
Going from a ndx_probeinterface.Probe object to a probeinterface.Probe object
import ndx_probeinterface
# load ndx_probeinterface.Probe objects from NWB file
io = pynwb.NWBH5IO(file_path, 'r', load_namespaces=True)
nwbfile = io.read()
ndx_probes = []
for device in nwbfile:
if isinstance(device, ndx_probeinterface.Probe):
ndx_probes.append(device)
# convert to probeinterface.Probe objects
pi_probes = []
for ndx_probe in ndx_probes:
pi_probe = ndx_probeinterface.to_probeinterface(ndx_probe)
pi_probes.append(pi_probe)
Future plans
- Add information about the headstage used for data acquisition
- Remove redundant information from
ElectrodeTable - Incorporate this NDX into the core NWB schema
This extension was created using ndx-template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ndx_probeinterface-0.2.0.tar.gz.
File metadata
- Download URL: ndx_probeinterface-0.2.0.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6f1e44eb55317d35955dab8d541eeb88f62ec9fc285fdee400cb3325af834ad
|
|
| MD5 |
0a27b37bf88938e6e9b4c9ee22885762
|
|
| BLAKE2b-256 |
2a45a6d6affb8c2160e277f9f44264406083cb5a072fb29679a56c60b476c322
|
File details
Details for the file ndx_probeinterface-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: ndx_probeinterface-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a41ffc6a0b33028c1339d3d8431542ea8ed9b7f61757532dde96b37336b69855
|
|
| MD5 |
9aed705888c9201e8061d42d08167fb2
|
|
| BLAKE2b-256 |
8f30053b70874aa14651eea2ed5e4a23b68fc9161a3a7fb7c60ce90019c91e2b
|