Denoising strategy with fMRIPrep confounds

Hi everyone,

With the preprocessed bold data from fMRIPrep I would like to perform denoising using the generated confounds tsv file. I decided to remove the 6 motion parameters, cosines, and some aCompCor components but wanted to validate that the order of operations is correct. As an example, I will use the nilearn.image.clean_img function.

  1. data = clean_img(data, detrend=False, standardize=False, confounds=[motion])

  2. data = clean_img(data, detrend=False, standardize=False, confounds=[cosines])

  3. data = clean_img(data, detrend=False, standardize=False, confounds=[acompcor])

The idea is to first remove the motion parameters since they were estimated without any prior high-pass filtering. As a next step, I apply the high-pass filtering via the cosines as this is required to filter out the aCompCor components. Finally, the aCompCor confounds can be regressed out of the data.

Now my question is whether these steps are correct and have to be taken separately or whether I can simply include all confounds at once. Also, I am wondering if I can now detrend my data after the 3 steps, since detrending is typically done before any confounds are removed. If I understood it right, fMRIPrep does not detrend the data before estimating the aCompCor confounds though.

Any help with this issue is appreciated!

paging @karofinc @rastko @jdkent as this falls outside my area of expertise :slight_smile:

Thanks for the tag @oesteban and hi @Alejandro, I hope my answer can help.

I would recommend using all confounds at once, you can reintroduce noise if you perform regression modularly. See this paper for more details: https://onlinelibrary.wiley.com/doi/full/10.1002/hbm.24528

The cosines should take care of removing the low frequency noise removing the need for any additional detrending, see this section of fmriprep for details (specifically look for the Discrete cosine-basis regressors heading).

If anything wasn’t clear or if I mis-stated something, please ask/add a response.

Best,
James

2 Likes

Thanks a lot for the fast reply, that clarified a lot!

The only thing I’m still wondering about is whether including the motion parameters (which were based on non-detrended data) and aCompCor parameters (which were based on detrended data) might introduce a trend again into the denoised functional data when all confounds are used at the same time. Do you think this might be an issue?

hi Alejandro,

Provided you have the low-frequency cosines basis in your confound models, then it doesn’t matter that motion parameters were not detrended. The residuals after regression will be orthogonal to the cosines, i.e. detrended.

Pierre

1 Like

Just to follow up on the standardization question - is it recommended to standardize the signal after fmriprep? I don’t think fmriprep does this, from what I can tell, correct?

1 Like