mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-14 02:34:28 +00:00
19 lines
350 B
Python
19 lines
350 B
Python
"""
|
|
Placeholder test module to test reading from pynwb-generated NWB file
|
|
"""
|
|
|
|
from nwb_linkml.io.hdf5 import HDF5IO
|
|
|
|
|
|
def test_read_from_nwbfile(nwb_file):
|
|
"""
|
|
Read data from a pynwb HDF5 NWB file
|
|
"""
|
|
res = HDF5IO(nwb_file).read()
|
|
|
|
|
|
def test_read_from_yaml(nwb_file):
|
|
"""
|
|
Read data from a yaml-fied NWB file
|
|
"""
|
|
pass
|