Skip to content

Commit b68545e

Browse files
committed
Register raw task data and raw video
1 parent aa4f357 commit b68545e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

projects/_sp_passiveVideo.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ class PassiveVideoTimeline(BehaviourTask):
2727
def signature(self):
2828
signature = {}
2929
signature['input_files'] = [
30-
('_sp_taskData.raw.*', self.collection, True), # TODO Create dataset type?
31-
('_sp_video.raw.*', self.collection, False),
32-
('_iblrig_taskSettings.raw.*', self.collection, True),
30+
# NB: _sp_taskData.raw is currently saved under the _iblrig_taskData.raw dataset type in Alyx
31+
('_sp_taskData.raw.*', self.collection, True, True),
32+
('_sp_video.raw.*', self.collection, False, True),
33+
('_iblrig_taskSettings.raw.*', self.collection, True, True),
3334
(f'_{self.sync_namespace}_DAQdata.raw.npy', self.sync_collection, True),
3435
(f'_{self.sync_namespace}_DAQdata.timestamps.npy', self.sync_collection, True),
3536
(f'_{self.sync_namespace}_DAQdata.meta.json', self.sync_collection, True),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "project_extraction"
7-
version = "0.8.1"
7+
version = "0.8.2"
88
description = "Custom extractors for satellite tasks"
99
dynamic = [ "readme" ]
1010
keywords = [ "IBL", "neuro-science" ]

0 commit comments

Comments
 (0)