Hi, I have two questions regarding the output of fmriprep:
I see here: fMRIPrep: A Robust Preprocessing Pipeline for fMRI Data — fmriprep version documentation that the data is normalized but not detrend. So, when using nilearn.image.clean_img to read it, it’s advisable to use detrend=True (as it is the default), but to override default and use standardize=False? (since fmriprep already dealt with this).
In what cases it is recommended to use high_pass / low_pass filters?
I read the spec about the output here: Outputs of fMRIPrep — fmriprep version documentation but I am not sure when to use desc-preproc_bold.nii.gz and when to use MNI152NLin2009cAsym_res-native_desc-preproc_bold.nii for the analysis? (I want to build encoding models based on the BOLD data)
I think your intuition is right here. High and low pass filtering is advised in most cases, although the parameters may depend on the application. For reference you should try to find a recent paper similar to what you are trying to do and see how they filter. fMRIPrep does not apply filtering.
fMRIprep should not output any pure .nii files, only .nii.gz. In either case, you should probably work with whichever *desc-preproc_bold.nii.gz file is in the space you want to work with.
@Steven When taking the columns ['framewise_displacement','t_comp_cor_00','t_comp_cor_01','t_comp_cor_02','t_comp_cor_03', 't_comp_cor_04'],
I have a single cell that is nan for framewise_displacement which raises the error: {ValueError}array must not contain infs or NaNs ,
any idea what can be done or how it is usually handled?
@Steven I came across some cases where I only have the columns 't_comp_cor_00','t_comp_cor_01','t_comp_cor_02','t_comp_cor_03' but not ‘t_comp_cor_04’ or ‘t_comp_cor_05’. (sometime only 00-04). Any idea why? Per fmriprep docs I should see all
Any idea why?