Skip to content

Commit

Permalink
Update confounds.py (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Aug 28, 2024
1 parent 9594677 commit 782baf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmripost_aroma/interfaces/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 782baf8

Please sign in to comment.