Skip to content

Commit

Permalink
Merge pull request #517 from catalystneuro/add_fictrac_interface
Browse files Browse the repository at this point in the history
Add FicTrac interface
  • Loading branch information
CodyCBakerPhD authored Sep 8, 2023
2 parents 7545155 + 5d19e53 commit 91c998b
Show file tree
Hide file tree
Showing 10 changed files with 540 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
id: cache-behavior-datasets
with:
path: ./behavior_testing_data
key: behavior-datasets-2022-08-18-${{ matrix.os }}-${{ steps.behavior.outputs.HASH_behavior_DATASET }}
key: behavior-datasets-2023-07-26-${{ matrix.os }}-${{ steps.behavior.outputs.HASH_behavior_DATASET }}



Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
id: cache-behavior-datasets
with:
path: ./behavior_testing_data
key: behavior-datasets-2022-08-18-${{ matrix.os }}-${{ steps.behavior.outputs.HASH_behavior_DATASET }}
key: behavior-datasets-2023-07-26-${{ matrix.os }}-${{ steps.behavior.outputs.HASH_behavior_DATASET }}



Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
whether to load the imaging planes as a volume (`"contiguous"`) or separately (`"disjoint"`).
The available data streams for the defined `plane_separation_type` can be checked by `BrukerTiffMultiPlaneImagingInterface.get_streams(folder_path, plane_separation_type)` method.

* Added FicTrac data interface [PR #517](https://github.com/catalystneuro/neuroconv/pull/#517)



# v0.4.1
Expand Down
3 changes: 3 additions & 0 deletions src/neuroconv/datainterfaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Behavior
from .behavior.audio.audiointerface import AudioInterface
from .behavior.deeplabcut.deeplabcutdatainterface import DeepLabCutInterface
from .behavior.fictrac.fictracdatainterface import FicTracDataInterface
from .behavior.miniscope.miniscopedatainterface import MiniscopeBehaviorInterface
from .behavior.sleap.sleapdatainterface import SLEAPInterface
from .behavior.video.videodatainterface import VideoInterface
Expand Down Expand Up @@ -151,6 +152,7 @@
DeepLabCutInterface,
SLEAPInterface,
MiniscopeBehaviorInterface,
FicTracDataInterface,
# Text
CsvTimeIntervalsInterface,
ExcelTimeIntervalsInterface,
Expand Down Expand Up @@ -182,6 +184,7 @@
Video=VideoInterface,
DeepLabCut=DeepLabCutInterface,
SLEAP=SLEAPInterface,
FicTrac=FicTracDataInterface,
# Text
CsvTimeIntervals=CsvTimeIntervalsInterface,
ExcelTimeIntervals=ExcelTimeIntervalsInterface,
Expand Down
Empty file.
Loading

0 comments on commit 91c998b

Please sign in to comment.