Hi all,
We are using tedana to combine and denoise our multi-echo data following preprocessing with fmriprep. About halfway through our data collection we realised that for some of our subjects, the fieldmaps weren’t being applied correctly due to unwanted shimming between AP and PA fieldmaps. To address this, we performed the following:
a. run fmriprep and “forcing” the IntendedFor fields in both AP and PA fieldmap json files to contain all scans (and all echoes) so that distortion correction would be applied to every scan with any available fieldmap that had the same setting as the EPI scans (which would be the PA fieldmap for many subjects); and
b. run fmriprep without the fieldmaps (we used --use-syn-sdc flag to ignore fieldmaps), and instead use ANTs SyN-based susceptibility distortion correction.
We then ran tedana on data from both of the methods, and found that tedana seems to drop out a lot more voxels from its adaptive mask in subjects with a “forced” IntendedFor field (preprocessing with any available fieldmap), and even excluding huge chunks of the brain in the final mask (although the issue was mostly present in subjects with only one fieldmap available), which was not the case in the same subjects that were run using --use-syn-sdc.
We have a few questions regarding the use of fieldmap and the pipeline integrating fmriprep and tedana:
(1) Does only using PA fieldmap (instead of both AP and PA) explain why tedana treats many voxels in the distortion-corrected scans as noise?
(2) related to question 1 above, we also wonder if it’s better to just go with the SyN-based distortion correction as opposed to only using the PA fieldmap? (we assumed that having both AP and PA fieldmaps for distortion correction would be optimal in this case).
(3) Given that we are taking the pre-processed single-echo EPI images from fmriprep, and then using tedana to denoise and combine these multi-echo images, we may need to manually perform the subsequent registration steps. We were wondering whether it would make sense to use antsApplyTransforms to transform our data from scanner space into T1 and MNI space. We plan to use the following command:
antsApplyTransforms \
-d 3 \
-e 3 \
-i “desc-denoised_bold.nii.gz” \ # tedana optimally combined image, scanner space
-r “sub-XX_task-YY_run-Z_space-T1w_boldref.nii.gz” \ # fmriprep T1-aligned reference to resample to
-o “_desc-denoised_bold_T1w.nii.gz” \ # output image
-n LanczosWindowedSinc \
-t “sub-XX_task-YY_run-Z_from-scanner_to-T1w_mode-image_xfm.txt” \ # see note*
--float \
-v
*= transformation matrix that maps scanner space to T1w space, generated by fmriprep.
We would like any feedback or suggestions on how to best integrate tedana with fmriprep when preprocessing multi-echo images!
Thanks in advance!