We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4f357 commit b68545eCopy full SHA for b68545e
projects/_sp_passiveVideo.py
@@ -27,9 +27,10 @@ class PassiveVideoTimeline(BehaviourTask):
27
def signature(self):
28
signature = {}
29
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),
+ # NB: _sp_taskData.raw is currently saved under the _iblrig_taskData.raw dataset type in Alyx
+ ('_sp_taskData.raw.*', self.collection, True, True),
+ ('_sp_video.raw.*', self.collection, False, True),
33
+ ('_iblrig_taskSettings.raw.*', self.collection, True, True),
34
(f'_{self.sync_namespace}_DAQdata.raw.npy', self.sync_collection, True),
35
(f'_{self.sync_namespace}_DAQdata.timestamps.npy', self.sync_collection, True),
36
(f'_{self.sync_namespace}_DAQdata.meta.json', self.sync_collection, True),
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "project_extraction"
7
-version = "0.8.1"
+version = "0.8.2"
8
description = "Custom extractors for satellite tasks"
9
dynamic = [ "readme" ]
10
keywords = [ "IBL", "neuro-science" ]
0 commit comments