Hi guys,
The new mne qt browser does not work with EGI mff file. raw binary files open but not mff files …
Any idea to solve this ?
Best
Julien Jung
Can you provide more details ? What error message do you get ?
Alex
1 Like
can you test:
import mne
from mne.datasets import testing
data_path = testing.data_path()
raw_fname = data_path / 'EGI/test_egi.mff'
raw = mne.io.read_raw_egi(raw_fname, preload=True)
raw.plot()
this works for me.
Alex
I just tried your scriot with the test data.
Same error message.
Should I update mne or some dependancies ?
JJ
please provide the output of mne.sys_info()
, that will help us know if it’s an out-of-date version or some other problem.
1 Like
Dear Dan
I updated mne from 1.0 to 1.2 with the installer.
There was an error at the end of installation but curiously mne was updated.
Using 1.2 version, it is working : I can scroll through mff files with the browser.
Thanks a lot !
JJ