Is there a way to insert Movement data collected as digital data? #97
-
Hi guys, we are trying to add a digital event channel (with movement data) to the CellExplorer pipeline in order to determine differences in the firing rate of the neurons based on it. We are trying to do it with the Behavioral tracking but we do not get a proper result as it works with TTL data. Do you know any other way to make it possible? Any help would be welcome :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi You want to save your TTL timestamps in the timestamps field and your x,y,z data in the position fields:
There is an example dataset you can use to better understand the data structure: |
Beta Was this translation helpful? Give feedback.
-
OK, in that case, you can either define a manipulation struct with intervals with movement or provide the intervals as an input when you run ProcessCellMetrics: https://cellexplorer.org/tutorials/manipulation-tutorial/#example-2-excluding-manipulations-for-waveform-metrics-by-supplying-intervals
In the above code example, I save the metrics with a different name, but you can also run the pipeline without saving the intervals. |
Beta Was this translation helpful? Give feedback.
OK, in that case, you can either define a manipulation struct with intervals with movement or provide the intervals as an input when you run ProcessCellMetrics: https://cellexplorer.org/tutorials/manipulation-tutorial/#example-2-excluding-manipulations-for-waveform-metrics-by-supplying-intervals
In the above code example, I save the metrics with a different name, but you can also run the pipeline without saving…