diff --git a/mne_bids_pipeline/_config.py b/mne_bids_pipeline/_config.py index 336a115f1..8e269b88d 100644 --- a/mne_bids_pipeline/_config.py +++ b/mne_bids_pipeline/_config.py @@ -1247,6 +1247,12 @@ will also be applied to the ECG and EOG epochs created to find heart beats and ocular artifacts. +???+ info + MNE-BIDS-Pipeline will automatically try to detect EOG and ECG artifacts in + your data, and remove them. For this to work properly, it is recommended + to **not** specify rejection thresholds for EOG and ECG channels here – + otherwise, ICA won't be able to "see" these artifacts. + ???+ info This setting is applied only to the epochs that are used for **fitting** ICA. The goal is to make it easier for ICA to produce a good decomposition. After fitting, @@ -1255,12 +1261,6 @@ contain large-amplitude artifacts. Those epochs can then be rejected by using the [`reject`][mne_bids_pipeline._config.reject] parameter. -MNE-BIDS-Pipeline will automatically try to detect EOG and ECG artifacts in -your data, and remove them. For this to work properly, it is recommended -to **not** specify rejection thresholds for EOG and ECG channels here – -otherwise, ICA won't be able to "see" these artifacts. - - ???+ example "Example" ```python ica_reject = {'grad': 10e-10, 'mag': 20e-12, 'eeg': 400e-6}