You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug OpenEphysBinaryRawIO._parse_header refuses to extract durations when the number of rising edges detected exceeds the number of falling edges, even though there is enough information to compute almost all durations in this case, and also incorrectly assumes that successive events always have alternating polarity.
from neo.rawio.openephysbinaryrawio import OpenEphysBinaryRawIO
folder = # fill in the folder you unzipped the data to
io = OpenEphysBinaryRawIO(folder)
io._parse_header()
timestamps, durations, labels = io._get_event_timestamps(0,0,0,None,None)
Expected behaviour
The correct durations are returned for all events
Additional context
For the first problem, the check on line 245 of openephysbinaryrawio.py is unnecessarily stringent. It should be less than or equal, not strict equality.
Moreover, the logic in this section doesn't work when events from multiple binary channels are interleaved on the same event stream (which is allowed by the Open Ephys specification and happens for e.g. data from an Intan RHD2000 USB evaluation board), as it incorrectly assumes that events alternate between rising and falling. However, if multiple channels are interleaved, then two rising or two falling events from different channels can follow each other, and so the duration calculation on line 246 is wrong. In the example dataset, this happens for the 26th & 27th events, in which a falling edge on channel 2 follows a falling edge on channel 3. A better approach would be, for each rising edge, to look for the next falling edge with the same absolute state value (and either drop that event from the list or assign it a NaN duration if none is found, rather than Noneing out the entire durations array)
The text was updated successfully, but these errors were encountered:
I am opening OpenEphys-saved data from a NIDAQ board where I acquire two digital inputs. When I load it using spikeinterface - which relies on this afaik - durations are all messed up as it seems that the falling edge of one signal cuts the duration of the other signal (parts of the recordings where one of the digital signals is just off have no issue). @alejoe91 can you confirm this could be the problem?
any plans on fixing this upstream? ATM I have to write custom loading from the events folder where everything else is loaded with spikeinterface :(
Describe the bug
OpenEphysBinaryRawIO._parse_header
refuses to extract durations when the number of rising edges detected exceeds the number of falling edges, even though there is enough information to compute almost all durations in this case, and also incorrectly assumes that successive events always have alternating polarity.To Reproduce
Expected behaviour
The correct durations are returned for all events
Actual behaviour
durations
isNone
Environment:
Additional context
For the first problem, the check on line 245 of
openephysbinaryrawio.py
is unnecessarily stringent. It should be less than or equal, not strict equality.Moreover, the logic in this section doesn't work when events from multiple binary channels are interleaved on the same event stream (which is allowed by the Open Ephys specification and happens for e.g. data from an Intan RHD2000 USB evaluation board), as it incorrectly assumes that events alternate between rising and falling. However, if multiple channels are interleaved, then two rising or two falling events from different channels can follow each other, and so the duration calculation on line 246 is wrong. In the example dataset, this happens for the 26th & 27th events, in which a falling edge on channel 2 follows a falling edge on channel 3. A better approach would be, for each rising edge, to look for the next falling edge with the same absolute state value (and either drop that event from the list or assign it a NaN duration if none is found, rather than Noneing out the entire durations array)
The text was updated successfully, but these errors were encountered: