From 782baf855289aa644394b312a04a7bfbd74d0ac2 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 28 Aug 2024 18:07:04 -0400 Subject: [PATCH] Update confounds.py (#51) --- src/fmripost_aroma/interfaces/confounds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fmripost_aroma/interfaces/confounds.py b/src/fmripost_aroma/interfaces/confounds.py index 580aab7..24c4f56 100644 --- a/src/fmripost_aroma/interfaces/confounds.py +++ b/src/fmripost_aroma/interfaces/confounds.py @@ -158,7 +158,7 @@ def _run_interface(self, runtime): # Denoise the data with the motion components masker = NiftiMasker( mask_img=self.inputs.mask_file, - standardize_confounds=False, + standardize_confounds=True, standardize=False, smoothing_fwhm=None, detrend=False, @@ -182,7 +182,7 @@ def _run_interface(self, runtime): # Once you have these "pure evil" components, you can denoise the data masker = NiftiMasker( mask_img=self.inputs.mask_file, - standardize_confounds=False, + standardize_confounds=True, standardize=False, smoothing_fwhm=None, detrend=False,