-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move bpod interface to general_interfaces/
- Loading branch information
1 parent
06a9536
commit 4221a47
Showing
5 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .bpodbehaviorinterface import BpodBehaviorInterface |
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,2 +1 @@ | ||
from .mah_2024_bpodinterface import Mah2024BpodInterface | ||
from .mah_2024_processedbehaviorinterface import Mah2024ProcessedBehaviorInterface |
5 changes: 3 additions & 2 deletions
5
src/constantinople_lab_to_nwb/mah_2024/mah_2024_nwbconverter.py
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,12 +1,13 @@ | ||
from neuroconv import NWBConverter | ||
|
||
from constantinople_lab_to_nwb.mah_2024.interfaces import Mah2024BpodInterface, Mah2024ProcessedBehaviorInterface | ||
from constantinople_lab_to_nwb.general_interfaces import BpodBehaviorInterface | ||
from constantinople_lab_to_nwb.mah_2024.interfaces import Mah2024ProcessedBehaviorInterface | ||
|
||
|
||
class Mah2024NWBConverter(NWBConverter): | ||
"""Primary conversion class for converting the Behavior dataset from the Constantinople Lab.""" | ||
|
||
data_interface_classes = dict( | ||
RawBehavior=Mah2024BpodInterface, | ||
RawBehavior=BpodBehaviorInterface, | ||
ProcessedBehavior=Mah2024ProcessedBehaviorInterface, | ||
) |
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