Skip to content

Commit

Permalink
Merge branch 'main' into set-probe
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Nov 28, 2023
2 parents 3f8cab5 + 1a7ba58 commit e2298fa
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/api/tools.data_transfers.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Data Transfers
--------------
.. automodule:: neuroconv.tools.data_transfers
3 changes: 3 additions & 0 deletions docs/api/tools.nwb_helpers.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
NWB Helpers
-----------
.. automodule:: neuroconv.tools.nwb_helpers
2 changes: 2 additions & 0 deletions docs/api/tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ Tools
tools.testing
tools.path_expansion
tools.signal_processing
tools.data_transfers
tools.nwb_helpers
2 changes: 1 addition & 1 deletion docs/api/tools.yaml_to_nwb_conversion.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
YAML conversion specification
-----------------------------
.. automodule:: neuroconv.tools.yaml_conversion_specification.yaml_conversion_specification
.. automodule:: neuroconv.tools.yaml_conversion_specification
8 changes: 8 additions & 0 deletions src/neuroconv/tools/data_transfers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@
from ._dandi import automatic_dandi_upload
from ._globus import get_globus_dataset_content_sizes, transfer_globus_content
from ._helpers import estimate_total_conversion_runtime

__all__ = [
"estimate_s3_conversion_cost",
"automatic_dandi_upload",
"get_globus_dataset_content_sizes",
"transfer_globus_content",
"estimate_total_conversion_runtime",
]
14 changes: 14 additions & 0 deletions src/neuroconv/tools/nwb_helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,17 @@

BACKEND_CONFIGURATIONS = dict(hdf5=HDF5BackendConfiguration, zarr=ZarrBackendConfiguration)
DATASET_IO_CONFIGURATIONS = dict(hdf5=HDF5DatasetIOConfiguration, zarr=ZarrDatasetIOConfiguration)

__all__ = [
"get_default_dataset_io_configurations",
"add_device_from_metadata",
"get_default_nwbfile_metadata",
"get_module",
"make_nwbfile_from_metadata",
"make_or_load_nwbfile",
"DatasetInfo",
"HDF5BackendConfiguration",
"HDF5DatasetIOConfiguration",
"ZarrBackendConfiguration",
"ZarrDatasetIOConfiguration",
]
2 changes: 2 additions & 0 deletions src/neuroconv/tools/yaml_conversion_specification/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from ._yaml_conversion_specification import run_conversion_from_yaml

__all__ = ["run_conversion_from_yaml"]

0 comments on commit e2298fa

Please sign in to comment.