Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bnd/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def to_pyal(
`bnd to-pyal M037_2024_01_01_10_00 -c # Uses custom mapping
"""
_check_processing_dependencies()
from bnd.pipeline.pyaldata import run_pyaldata_conversion
from .pipeline.pyaldata import run_pyaldata_conversion

# Load config and get session path
config = _load_config()
Expand Down Expand Up @@ -105,7 +105,7 @@ def to_nwb(
"""
# TODO: Add channel map argument: no-map, default-map, custom-map
# _check_processing_dependencies()
from bnd.pipeline.nwb import run_nwb_conversion
from .pipeline.nwb import run_nwb_conversion

config = _load_config()
session_path = config.get_local_session_path(session_name)
Expand All @@ -129,7 +129,7 @@ def ksort(session_name: str = typer.Argument(help="Session name to kilosort")) -
"""
# this will throw an error if the dependencies are not available
_check_processing_dependencies()
from bnd.pipeline.kilosort import run_kilosort_on_session
from .pipeline.kilosort import run_kilosort_on_session

config = _load_config()
session_path = config.get_local_session_path(session_name)
Expand Down
2 changes: 1 addition & 1 deletion bnd/pipeline/nwbtools/anipose_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from neuroconv.utils import DeepDict
from pynwb import NWBFile

from bnd import set_logging
from ...logger import set_logging

logger = set_logging(__name__)

Expand Down
Loading