Briefly, large fraction of Iso channel data.csv files have 9 columns instead of 6 (timestamp, ROI0, 1, 2, 3, Blank). Practically, this is not an issue as what happens is having three additional columns with all 0. As real data should be with values >255, the erroneous columns are easy to be eliminated.
This issue has been caused by an bug in the following Bonsai code (will fix this shortly). The node should be Activity.val0 instead of Activity.
As this is confusing (why 9 columns? why different from other two channels?), we should take care of this before nwb packaging.
Also, some pilot data acquired in 2023Late have only 4columns—Timestamp, ROI0, ROI1, Blank. This should be handled by a patch too.
The issue is described here. https://github.com/AllenNeuralDynamics/aind-behavior-blog/issues/735
Briefly, large fraction of Iso channel data.csv files have 9 columns instead of 6 (timestamp, ROI0, 1, 2, 3, Blank). Practically, this is not an issue as what happens is having three additional columns with all 0. As real data should be with values >255, the erroneous columns are easy to be eliminated.
This issue has been caused by an bug in the following Bonsai code (will fix this shortly). The node should be
Activity.val0
instead ofActivity
.As this is confusing (why 9 columns? why different from other two channels?), we should take care of this before nwb packaging. Also, some pilot data acquired in 2023Late have only 4columns—Timestamp, ROI0, ROI1, Blank. This should be handled by a patch too.