Skip to content

Commit

Permalink
FIX MneExperiment.make_ica_selection(): switch to ICA pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed Feb 6, 2021
1 parent 32ce552 commit 9113880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eelbrain/_experiment/mne_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -4402,7 +4402,7 @@ def make_ica_selection(self, epoch=None, samplingrate=None, decim=None, session=
path = self.make_ica(**state)
# display data
subject = self.get('subject')
pipe = self._raw[self.get('raw')]
pipe = self._get_ica_pipe(state)
bads = pipe.load_bad_channels(subject, self.get('recording'))
with self._temporary_state, warnings.catch_warnings():
warnings.filterwarnings('ignore', 'The measurement information indicates a low-pass', RuntimeWarning)
Expand Down

0 comments on commit 9113880

Please sign in to comment.