From dcbb2a9d31e2f2141cb069d8924dd47c6b056254 Mon Sep 17 00:00:00 2001 From: schmidtfa Date: Wed, 4 Dec 2024 10:27:07 +0000 Subject: [PATCH] now getting 80 --- tests/test_raw.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/test_raw.py b/tests/test_raw.py index da784a1..adac16a 100644 --- a/tests/test_raw.py +++ b/tests/test_raw.py @@ -9,6 +9,13 @@ def test_src(gen_mne_data_raw): #, ch_picks meg_path = data_path / 'MEG' / 'sample' ak = AlmKanal(raw=gen_mne_data_raw) + ak.do_maxwell() + # %% you can always use common mne methods like filtering that modify + # the raw and epoched objects in place + ak.raw.filter(l_freq=0.1, h_freq=100) + # %% one shot call to ica + ak.do_ica() + fwd_fname = meg_path / 'sample_audvis-meg-vol-7-fwd.fif' fwd = mne.read_forward_solution(fwd_fname) ak.pick_dict['meg'] = True