-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #569 from catalystneuro/new_backend_default_datase…
…t_configuration [Backend Configuration IIa] Add dataset identification tools
- Loading branch information
Showing
19 changed files
with
823 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
from ._dataset_configuration import get_default_dataset_io_configurations | ||
from ._metadata_and_file_helpers import ( | ||
add_device_from_metadata, | ||
get_default_nwbfile_metadata, | ||
get_module, | ||
make_nwbfile_from_metadata, | ||
make_or_load_nwbfile, | ||
) | ||
from ._models._base_models import DatasetConfiguration, DatasetInfo | ||
from ._models._base_models import DatasetInfo | ||
from ._models._hdf5_models import ( | ||
AVAILABLE_HDF5_COMPRESSION_METHODS, | ||
HDF5BackendConfiguration, | ||
HDF5DatasetConfiguration, | ||
HDF5DatasetIOConfiguration, | ||
) | ||
from ._models._zarr_models import ( | ||
AVAILABLE_ZARR_COMPRESSION_METHODS, | ||
ZarrBackendConfiguration, | ||
ZarrDatasetConfiguration, | ||
ZarrDatasetIOConfiguration, | ||
) | ||
|
||
BACKEND_TO_DATASET_CONFIGURATION = dict(hdf5=HDF5DatasetConfiguration, zarr=ZarrDatasetConfiguration) | ||
BACKEND_TO_CONFIGURATION = dict(hdf5=HDF5BackendConfiguration, zarr=ZarrBackendConfiguration) | ||
BACKEND_CONFIGURATIONS = dict(hdf5=HDF5BackendConfiguration, zarr=ZarrBackendConfiguration) | ||
DATASET_IO_CONFIGURATIONS = dict(hdf5=HDF5DatasetIOConfiguration, zarr=ZarrDatasetIOConfiguration) |
Oops, something went wrong.