Skip to content

Commit 637c1fb

Browse files
committed
add motion energy and wheel to postdlc signatures
1 parent 77f2e97 commit 637c1fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ibllib/pipes/video_tasks.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,11 @@ def signature(self):
507507
# In particular the raw videos don't need to be downloaded as they can be streamed
508508
[(f'_iblrig_{cam}Camera.raw.mp4', self.device_collection, True) for cam in self.cameras] +
509509
[(f'{cam}ROIMotionEnergy.position.npy', 'alf', False) for cam in self.cameras] +
510+
[(f'{cam}Camera.ROIMotionEnergy.npy', 'alf', False) for cam in self.cameras] +
510511
# The trials table is used in the DLC QC, however this is not an essential dataset
511-
[('_ibl_trials.table.pqt', self.trials_collection, False)],
512+
[('_ibl_trials.table.pqt', self.trials_collection, False),
513+
('_ibl_wheel.position.npy', self.trials_collection, False),
514+
('_ibl_wheel.timestamps.npy', self.trials_collection, False)],
512515
'output_files': [(f'_ibl_{cam}Camera.features.pqt', 'alf', True) for cam in self.cameras] +
513516
[('licks.times.npy', 'alf', True)]
514517
}

0 commit comments

Comments
 (0)