Skip to content

Commit

Permalink
Merge branch 'main' into port_dlc2nwb
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jul 11, 2024
2 parents 61a56bd + 5548853 commit e6faa02
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* Fixed a case of the `NeuroScopeSortingExtractor` when the optional `xml_file_path` is not specified. [PR #926](https://github.com/catalystneuro/neuroconv/pull/926)
* Fixed `Can't specify experiment type when converting .abf to .nwb with Neuroconv`. [PR #609](https://github.com/catalystneuro/neuroconv/pull/609)
* Remove assumption that the ports of the Intan acquisition system correspond to electrode groupings in `IntanRecordingInterface` [PR #933](https://github.com/catalystneuro/neuroconv/pull/933)
* Add ValueError for empty metadata in `make_or_load_nwbfile` when an nwbfile needs to be created [PR #948](https://github.com/catalystneuro/neuroconv/pull/948)

### Improvements
* Make annotations from the raw format available on `IntanRecordingInterface`. [PR #934](https://github.com/catalystneuro/neuroconv/pull/943)
Expand Down
43 changes: 32 additions & 11 deletions src/neuroconv/tools/nwb_helpers/_metadata_and_file_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def make_nwbfile_from_metadata(metadata: dict) -> NWBFile:
# Validate metadata
schema_path = Path(__file__).resolve().parent.parent.parent / "schemas" / "base_metadata_schema.json"
base_metadata_schema = load_dict_from_file(file_path=schema_path)
assert metadata is not None, "Metadata is required to create an NWBFile but metadata=None was passed."
validate_metadata(metadata=metadata, schema=base_metadata_schema)

nwbfile_kwargs = deepcopy(metadata["NWBFile"])
Expand Down Expand Up @@ -190,7 +191,12 @@ def make_or_load_nwbfile(
"""
from . import BACKEND_NWB_IO

nwbfile_path_in = Path(nwbfile_path) if nwbfile_path else None
nwbfile_path_is_provided = nwbfile_path is not None
nwbfile_path_in = Path(nwbfile_path) if nwbfile_path_is_provided else None

nwbfile_is_provided = nwbfile is not None
nwbfile_in = nwbfile if nwbfile_is_provided else None

backend_io_class = BACKEND_NWB_IO[backend]

assert not (nwbfile_path is None and nwbfile is None and metadata is None), (
Expand All @@ -206,11 +212,11 @@ def make_or_load_nwbfile(
raise NotImplementedError("Appending a Zarr file is not yet supported!")

load_kwargs = dict()
file_initially_exists = nwbfile_path_in.exists() if nwbfile_path_in is not None else None
if nwbfile_path_in is not None:
file_initially_exists = nwbfile_path_in.exists() if nwbfile_path_is_provided else False
append_mode = file_initially_exists and not overwrite
if nwbfile_path_is_provided:
load_kwargs.update(path=str(nwbfile_path_in))

append_mode = file_initially_exists and not overwrite
if append_mode:
load_kwargs.update(mode="r+", load_namespaces=True)

Expand All @@ -234,19 +240,31 @@ def make_or_load_nwbfile(

io = backend_io_class(**load_kwargs)

read_nwbfile = nwbfile_path_is_provided and append_mode
create_nwbfile = not read_nwbfile and not nwbfile_is_provided

nwbfile_loaded_succesfully = True
nwbfile_written_succesfully = True
try:
if load_kwargs.get("mode", "") == "r+":
if nwbfile_is_provided:
nwbfile = nwbfile_in
elif read_nwbfile:
nwbfile = io.read()
elif nwbfile is None:
elif create_nwbfile:
if metadata is None:
error_msg = "Metadata is required for creating an nwbfile "
raise ValueError(error_msg)
default_metadata = get_default_nwbfile_metadata()
default_metadata.deep_update(metadata)

nwbfile = make_nwbfile_from_metadata(metadata=metadata)

yield nwbfile
except Exception as load_error:
nwbfile_loaded_succesfully = False
raise load_error
finally:
if nwbfile_path_in is not None and nwbfile_loaded_succesfully:
if nwbfile_path_is_provided and nwbfile_loaded_succesfully:
try:
io.write(nwbfile)

Expand All @@ -261,15 +279,18 @@ def make_or_load_nwbfile(

if not nwbfile_written_succesfully:
_attempt_cleanup_of_existing_nwbfile(nwbfile_path=nwbfile_path_in)
elif nwbfile_path_in is not None and not nwbfile_loaded_succesfully:
elif nwbfile_path_is_provided and not nwbfile_loaded_succesfully:
# The instantiation of the IO object can itself create a file
_attempt_cleanup_of_existing_nwbfile(nwbfile_path=nwbfile_path_in)

else:
# This is the case where nwbfile is provided but not nwbfile_path
# Note that io never gets created in this case, so no need to close or delete it
pass

# Final attempt to cleanup an unintended file creation, just to be sure
any_load_or_write_error = not nwbfile_loaded_succesfully or not nwbfile_written_succesfully
file_was_freshly_created = (
not file_initially_exists and nwbfile_path_in is not None and nwbfile_path_in.exists()
)
file_was_freshly_created = not file_initially_exists and nwbfile_path_is_provided and nwbfile_path_in.exists()
attempt_to_cleanup = any_load_or_write_error and file_was_freshly_created
if attempt_to_cleanup:
_attempt_cleanup_of_existing_nwbfile(nwbfile_path=nwbfile_path_in)
Expand Down
9 changes: 9 additions & 0 deletions tests/test_minimal/test_tools/test_context_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from unittest.mock import patch

import h5py
import pytest
from hdmf.testing import TestCase
from hdmf_zarr import NWBZarrIO
from pynwb import NWBHDF5IO, TimeSeries
Expand Down Expand Up @@ -220,3 +221,11 @@ def test_make_or_load_nwbfile_on_corrupt_file(tmpdir: Path) -> None:
with make_or_load_nwbfile(nwbfile_path=nwbfile_path, nwbfile=nwbfile_in, overwrite=True) as nwbfile:
time_series = mock_TimeSeries()
nwbfile.add_acquisition(time_series)


def test_raise_error_when_metadata_is_empty_and_creation_is_needed(tmpdir):
nwbfile_path = tmpdir / "test_make_or_load_nwbfile_empty_metadata.nwb"

with pytest.raises(ValueError):
with make_or_load_nwbfile(nwbfile_path=nwbfile_path, metadata=None, overwrite=True) as nwbfile:
pass

0 comments on commit e6faa02

Please sign in to comment.