From 54afaef1ab1e79feaae61d2201b126a7ec3f5fac Mon Sep 17 00:00:00 2001 From: Mats Date: Tue, 7 Jan 2025 16:15:43 +0000 Subject: [PATCH] remove covs input from proc_chain --- osl_ephys/preprocessing/batch.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/osl_ephys/preprocessing/batch.py b/osl_ephys/preprocessing/batch.py index de108df..e4c7eef 100644 --- a/osl_ephys/preprocessing/batch.py +++ b/osl_ephys/preprocessing/batch.py @@ -753,8 +753,6 @@ def run_proc_chain( List of keys to skip writing to disk. If None, we don't skip any keys. extra_funcs : list User-defined functions. - covs : dict, pd.DataFrame, or None - Covariates for GLM. random_seed : 'auto' (default), int or None Random seed to set. If 'auto', a random seed will be generated. Random seeds are set for both Python and NumPy. If None, no random seed is set. @@ -1117,7 +1115,6 @@ def run_proc_batch( overwrite=overwrite, skip_save=skip_save, extra_funcs=extra_funcs, - covs=covs, random_seed=random_seed, )