-
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.
Merge pull request #4 from catalystneuro/lfp
Lfp
- Loading branch information
Showing
4 changed files
with
37 additions
and
10 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
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,15 +1,19 @@ | ||
"""Primary NWBConverter class for this dataset.""" | ||
from dan_lab_to_nwb.huang_2025 import Huang2025BehaviorInterface | ||
from neuroconv import NWBConverter | ||
|
||
from neuroconv.datainterfaces import TDTFiberPhotometryInterface, VideoInterace | ||
from neuroconv.datainterfaces import ( | ||
TDTFiberPhotometryInterface, | ||
TdtRecordingInterface, | ||
VideoInterface, | ||
) | ||
|
||
|
||
class Huang2025NWBConverter(NWBConverter): | ||
"""Primary conversion class for my extracellular electrophysiology dataset.""" | ||
|
||
data_interface_classes = dict( | ||
Behavior=Huang2025BehaviorInterface, | ||
Recording=TdtRecordingInterface, | ||
FiberPhotometry=TDTFiberPhotometryInterface, | ||
Video=VideoInterface, | ||
) |