Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add detectors #26

Merged
merged 9 commits into from
Nov 12, 2024
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
2 changes: 2 additions & 0 deletions neuro_py/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

__all__ = [
"behavior",
"detectors",
"ensemble",
"io",
"lfp",
Expand All @@ -15,6 +16,7 @@ __all__ = [

from . import (
behavior,
detectors,
ensemble,
io,
lfp,
Expand Down
4 changes: 4 additions & 0 deletions neuro_py/detectors/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import lazy_loader as _lazy

(__getattr__, __dir__, __all__) = _lazy.attach_stub(__name__, __file__)
del _lazy
4 changes: 4 additions & 0 deletions neuro_py/detectors/__init__.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__all__ = ["DetectDS", "detect_up_down_states"]

from .dentate_spike import DetectDS
from .up_down_state import detect_up_down_states
Loading
Loading