In our EEG experiment, we used 64 electrodes plus 1 EOG channel. We're trying to read it using the MNE package but run into an error. Looks like MNE expects 64 channels by default?
raw = read_raw_edf(input_fname=data_file,
eog=['EOG'],
preload=True)
Gives us this error:
IndexError: index 65 is out of bounds for axis 0 with size 64
How do we avoid it? Should we set the montage ourselves, to overwrite the expected 64-channel montage?