Load a sensible subset of the fMRI confounds generated with fMRIprep in python (Esteban et al., 2018).
⚠️ load_confounds
is now a new feature in NiLearn 0.9.0. Development of this project will fully migrate to NiLearn. Please see the following links for the implementation.⚠️ New API:
The usage examples:
Install with pip
(Python >=3.5):
pip install load_confounds
Load confounds for a minimal denosing strategy commonly used in resting state functional connectivity. (Full motion parameters, WM/CSF signals, and high pass filter)
from load_confounds import Minimal
from nilearn.input_data import NiftiMasker
# load_confounds auto-detects the companion .tsv file (which needs to be in the same directory)
file = "path/to/file/sub-01_ses-001_bold.nii.gz"
confounds = Minimal().load(file)
# Use the confounds to load preprocessed time series with nilearn
masker = NiftiMasker(smoothing_fwhm=5, standardize=True)
img = masker.fit_transform(file, confounds=confounds)
It is also possible to fine-tune a subset of noise components and their parameters:
from load_confounds import Confounds
confounds = Confounds(strategy=['high_pass', 'motion', 'global'], motion="full").load(file)
You can check our tutorial on MyBinder for more info
The following noise components are supported. Check the docstring of Confounds
for more info on the parameters for each type of noise.
motion
the motion parameters including 6 translation/rotation (basic
), and optionally derivatives, squares, and squared derivatives (full
).high_pass
basis of discrete cosines covering slow time drift frequency band.wm_csf
the average signal of white matter and cerebrospinal fluid masks (basic
), and optionally derivatives, squares, and squared derivatives (full
).global
the global signal (basic
), and optionally derivatives, squares, and squared derivatives (full
).compcor
the results of a PCA applied on a mask based on either anatomy (anat
), temporal variance (temp
), or both (combined
).ica_aroma
the results of an idependent component analysis (ICA) followed by identification of noise components. This can be implementing by incorporating ICA regressors (basic
) or directly loading a denoised file generated by fMRIprep (full
).scrub
regressors coding for time frames with excessive motion, using threshold on frame displacement and standardized DVARS (basic
) and suppressing short time windows using the (Power et al., 2014) appreach (full
).
Minimal
is suitable for data with minimal motion. Only includes motion parameters, wm and csf, with the option to add global.
Like Minimal
, but with scrubbing. Pros: Actual impact on data is pretty limited, but still good and offers the most control on what's being discarded. Cons: high loss of degrees of freedom, and messes up with the time axis in a way that may be difficult to handle for downstream analyses.
CompCor
includes anatomical or temporal compcor. The default is anatomical compcor with fully expanded motion parameters. Pros: large impact of denoising, efficient denoising, controlled loss of degrees of freedom. Cons: low control on what is being discarded (who knows what signal actually show up in the PCA for a given subject).
ICA-AROMA are only applicable to fMRIprep output generated with --use-aroma
. Pros: pretty similar to CompCor, with better control of discarded components (those can be visually reviewed even though this is time consuming. Cons: may require retraining the noise detector and also requires to believe that ICA does efficiently separate noise from signal, which is not that clear, and the quality of separation may also vary substantially across subjects.
Note that if a .nii.gz
file is specified, load_confounds
will automatically look for the companion tsv
confound file generated by fMRIprep. It is also possible to specify a list of confound (or imaging) files, in which case load_confounds
will return a list of numpy ndarray.
Low pass filtering is a common operation in resting-state fMRI analysis, and is featured in all preprocessing strategies of the Ciric et al. (2017) paper. fMRIprep does not output the discrete cosines for low pass filtering. Instead, this operation can be implemented directly with the nilearn masker, using the argument low_pass
. Be sure to also specify the argument tr
in the nilearn masker if you use low_pass
.
Nilearn masker features two arguments to remove slow time drifts: high_pass
and detrend
. Both of these operations are redundant with the high_pass
regressors generated by fMRIprep, and included in all load_confounds
strategies. Do not use nilearn's high_pass
or detrend
options with these strategies. It is however possible to use a flexible Confounds
loader to exclude the high_pass
noise components, and then rely on nilearn's high pass filterning or detrending options. This is not advised with compcor
or ica_aroma
analysis, which have been generated with the high_pass
components of fMRIprep.
Unless you use the detrend
or high_pass
options of nilearn maskers, it may be important to demean the confounds. This is done by default by load_confounds
, and is required to properly regress out confounds using nilearn with the standardize=False
, standardize=True
or standardize="zscore"
options. If you want to use standardize="psc"
, you will need to turn off the demeaning in load_confounds
, which can be achieved using, e.g.:
from load_confounds import Params6
conf = Params6(demean=False)
We decided to focus our strategy catalogue on a reasonable but limited set of choices, and followed (mostly) the Ciric et al. (2017) reference. However, there are other strategies proposed in benchmarks such as (Parkes et al. 2018, Mascali et al. 2020). Advanced users can still explore these other choices using the flexible Confounds
API, which can be used to reproduce most denoising strategies in a single short and readable command.
There has been a number of benchmarks you may want to refer to in order to select a denoising strategy (e.g. Ciric et al., 2017; Parkes et al. 2018; Mascali et al., 2020; Raval et al., 2020). However, a number of caveats do apply and the conclusions of these studies may not directly apply to load_confounds
strategies. First, the noise regressors generated by fMRIprep do not necessarily follow the same implementations as these papers did. For example, the way load_confounds
implements scrubbing is by adding regressors, while Ciric et al. (2017) excluded outlier time points prior to regressing other confounds. There are also other aspects of the fMRI preprocessing pipelines which are not controlled by load_confounds
. For example, Ciric et al. (2017) did apply image distortion correction in all preprocessing strategies. This step is controlled by fMRIprep, and cannot be changed through load_confounds
.
ICA-AROMA related strategies are only applicable to fMRIprep output generated with --use-aroma
. The approach predefined in load_confounds
is the non-aggressive apporach, and the recommanded way of applying ICA-AROMA. fMRIprep produces files with suffix desc-smoothAROMAnonaggr_bold
. Other noise regressors needed are retrieved by the predefined strategy in load_confounds
. For details of the implementation, please refer to the documentation of load_confounds.ICAAROMA
.
The aggressive approach was described in Pruim et al. (2015) and achieve denoising in one step by load_confound
. Noise independent components along with other source of noise are included in confound regressors. The aggressive approach must be applied to the regular minimally processed fMRIprep output suffixed desc-prepro_bold
. The name "aggressive" reflects that this approach doesn't consider the potential good signals regressed out by the noise independent compoenents. Please refer to table Recreating strategies from Ciric et al. 2017 for the relevant options.
load_confounds
can recreate the following strategies. The following table highlights the relevant options:
Strategy | high_pass |
motion |
wm_csf |
global |
compcor |
ica_aroma |
scrub |
---|---|---|---|---|---|---|---|
Params2 |
x | basic |
|||||
Params6 |
x | basic |
|||||
Params9 |
x | basic |
basic |
basic |
|||
Params9Scrub |
x | basic |
basic |
full |
|||
Params24 |
x | full |
|||||
Params36 |
x | full |
full |
full |
|||
Params36Scrub |
x | full |
full |
full |
|||
AnatCompCor |
x | full |
anat |
||||
TempCompCor |
x | temp |
|||||
ICAAROMA |
x | basic |
full |
||||
AROMAGSR |
x | basic |
basic |
full |
|||
AggrICAAROMA |
x | basic |
basic |
basic |
Development of this library was supported in part by the Canadian Consortium on Neurodegeneration in Aging (CCNA) and in part by the Courtois Foundation.
Behzadi Y, Restom K, Liau J, Liu TT. A component based noise correction method (CompCor) for BOLD and perfusion based fMRI. Neuroimage. 2007. doi:10.1016/j.neuroimage.2007.04.042
Ciric R, Wolf DH, Power JD, Roalf DR, Baum GL, Ruparel K, Shinohara RT, Elliott MA, Eickhoff SB, Davatzikos C., Gur RC, Gur RE, Bassett DS, Satterthwaite TD. Benchmarking of participant-level confound regression strategies for the control of motion artifact in studies of functional connectivity. Neuroimage. 2017. doi:10.1016/j.neuroimage.2017.03.020
Esteban O, Markiewicz CJ, Blair RW, Moodie CA, Isik AI, Erramuzpe A, Kent JD, Goncalves M, DuPre E, Snyder M, Oya H, Ghosh SS, Wright J, Durnez J, Poldrack RA, Gorgolewski KJ. fMRIPrep: a robust preprocessing pipeline for functional MRI. Nat Meth. 2018. doi: 10.1038/s41592-018-0235-4
Fox MD, Snyder AZ, Vincent JL, Corbetta M, Van Essen DC, Raichle ME. The human brain is intrinsically organized into dynamic, anticorrelated functional networks. Proceedings of the National Academy of Sciences. 2005; doi: 10.1073/pnas.0504136102.
Mascali, D, Moraschi, M, DiNuzzo, M, et al. Evaluation of denoising strategies for task‐based functional connectivity: Equalizing residual motion artifacts between rest and cognitively demanding tasks. Hum Brain Mapp. 2020; 1– 24. doi: 10.1002/hbm.25332
Parkes, L., Fulcher, B., Yucel, M., & Fornito, A. (2018). An evaluation of the efficacy, reliability, and sensitivity of motion correction strategies for resting-state functional MRI. NeuroImage, 171, 415-436. doi: 10.1016/j.neuroimage.2017.12.073
Power JD, Mitra A, Laumann TO, Snyder AZ, Schlaggar BL, Petersen SE. Methods to detect, characterize, and remove motion artifact in resting state fMRI. Neuroimage 2014 84:320-41. doi: 10.1016/j.neuroimage.2013.08.048
Pruim, R. H., Mennes, M., van Rooij, D., Llera, A., Buitelaar, J. K., & Beckmann, C. F. (2015). ICA-AROMA: A robust ICA-based strategy for removing motion artifacts from fMRI data. Neuroimage, 112, 267-277. doi: 10.1016/j.neuroimage.2015.02.064
V. Raval, K. P. Nguyen, C. Mellema and A. Montillo, "Improved motion correction for functional MRI using an omnibus regression model," 2020 IEEE 17th International Symposium on Biomedical Imaging (ISBI), 2020, pp. 1044-1047, doi: 10.1109/ISBI45749.2020.9098688.
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!