I want to open the raw MEG data recorded with MaxShield, but the data have not been processed with MaxFilter. So I use command line statements to process it
(mne maxfilter -i sample_audvis_raw.fif --st)
it shows the following errorļ¼
āmneā is not an internal or external command, nor is it a runnable program or batch file.
mne has been added to the environment variables
Why canāt I run mne from the command line in Win10?
Or is there another way I can do the MaxFilter process?
Thank you for your answerļ¼
But therein lies the problem.
When I use allow_maxshield=True and run maxwell filtering, the data will be distorted significantly.
Here are the links to the data I used OSF
import mne
raw = mne.io.read_raw_fif("meg_2045_session2_raw.fif", allow_maxshield=True)
noisy, flat = mne.preprocessing.find_bad_channels_maxwell(raw) # <- this step was missing
raw.info['bads'] = noisy + flat # also this step
chpi_amplitudes = mne.chpi.compute_chpi_amplitudes(raw)
chpi_locs = mne.chpi.compute_chpi_locs(raw.info, chpi_amplitudes)
head_pos = mne.chpi.compute_head_pos(raw.info, chpi_locs)
raw_sss = mne.preprocessing.maxwell_filter(raw, head_pos=head_pos)
Iām not certain if that will fix it, but itās a good thing to try. FYI, however: the command-line tools that ship as part of MNE-Python simply call the Python code under the hood, so they wonāt give you different results. The MNE-C command-line tools might (but ideally should not).
cc @larsoner who might spot an error that I missed.