From 9734eedcf73014eea1b3f95b94d6b445607d0b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20H=C3=B6chenberger?= Date: Thu, 2 Nov 2023 14:51:39 +0100 Subject: [PATCH] Docs --- docs/source/settings/preprocessing/artifacts.md | 1 + mne_bids_pipeline/_config.py | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/source/settings/preprocessing/artifacts.md b/docs/source/settings/preprocessing/artifacts.md index 9a81b4d151..88407cd2c5 100644 --- a/docs/source/settings/preprocessing/artifacts.md +++ b/docs/source/settings/preprocessing/artifacts.md @@ -17,3 +17,4 @@ tags: - reject - reject_tmin - reject_tmax + - autoreject_n_interpolate diff --git a/mne_bids_pipeline/_config.py b/mne_bids_pipeline/_config.py index a3bcdc31fd..8e8d025bc4 100644 --- a/mne_bids_pipeline/_config.py +++ b/mne_bids_pipeline/_config.py @@ -1389,7 +1389,9 @@ reject_tmin: Optional[float] = None """ Start of the time window used to reject epochs. If `None`, the window will -start with the first time point. +start with the first time point. Has no effect if +[`reject`][mne_bids_pipeline._config.reject] has been set to `"autoreject_local"`. + ???+ example "Example" ```python reject_tmin = -0.1 # 100 ms before event onset. @@ -1399,7 +1401,9 @@ reject_tmax: Optional[float] = None """ End of the time window used to reject epochs. If `None`, the window will end -with the last time point. +with the last time point.Has no effect if +[`reject`][mne_bids_pipeline._config.reject] has been set to `"autoreject_local"`. + ???+ example "Example" ```python reject_tmax = 0.3 # 300 ms after event onset.