Important example is "truncated_events_pre" and "truncated_events post" here:
|
# Add information about how many events needed to be truncated |
|
eeg.info['truncated_events_pre'] = truncated_events_pre |
|
eeg.info['truncated_events_post'] = truncated_events_post |
This is used to trim events, to make sure that eeg epochs which overrun the file are excluded (mne drops the eeg automatically but we need to keep track of which events are dropped to properly index our events struct)
Need to fix this and implement a new approach to the problem
Important example is "truncated_events_pre" and "truncated_events post" here:
cmlreaders/cmlreaders/readers/eeg.py
Lines 453 to 455 in 9bcdbb0
This is used to trim events, to make sure that eeg epochs which overrun the file are excluded (mne drops the eeg automatically but we need to keep track of which events are dropped to properly index our events struct)
Need to fix this and implement a new approach to the problem