QSIPrep output problems: framewise displacement and dwi image hyperintensities

Summary of what happened:

Hello everyone!

I am new to diffusion MRI and QSIPrep, and I am finding several problems.
I am working with single-shell, full fourrier, prescan normalized data.

The html output looks ok, but I am not sure how to interpret the framewise displacement section. Based on Power et al.,2012, the cutoff for framewise displacement is set at 0.50 mm. There are 3 different measures on the plot: max, mean and variance. Which one should I look at? Also I assume the measure unit is mm? Also, I get very different carpetplots from one subject to another, is that normal?

Finally, most of the preprocessed dwi images have hyperintensities in the OFC and ventro-temporal cortex, is that normal? If not, how can I fix it?

Thank you so much for your help !

Command used (and if a helper script was used, a link to the helper script or the command generated):

Here is the script:

for i in $(seq -w 01 39); do
subject=sub-${i}
docker run -ti --rm \
-v /path/output_dcm2bids:/data:ro \
-v /path/qsiprep_output_dir:/out \
-v /path/qsiprep_work_dir:/work \
-v /path/freesurfer-license.txt:/license.txt \
pennlinc/qsiprep:latest \
/data /out participant \
--skip-bids-validation \
--participant-label ${subject#sub-} \
--anat-modality T1w \
--unringing-method mrdegibbs \
--distortion-group-merge none \
--b1-biascorrect-stage none \
--separate-all-dwis \
--output-resolution 2 \
--fs-license-file /license.txt \
--hmc-model eddy \
--work-dir /work/sub-${subject#sub-} \
--write-graph \
--notrack

done

Version:

1.0.2

Environment (Docker, Singularity / Apptainer, custom installation):

Docker

Data formatted according to a validatable standard? Please provide the output of the validator:

PASTE VALIDATOR OUTPUT HERE

Relevant log outputs (up to 20 lines):

PASTE LOG OUTPUT HERE

Screenshots / relevant information:




Hi @jruizfdez and welcome to neurostars!

I’m the future please use the software support post template. You can see I edited in for you this time.

That guideline is for fMRI which typically has lower FD values than DWI, since the TR for DWI is typically much longer (so there’s more time between volumes for motion to occur).

Yes

All can be useful. A high max FD could lead to problems with a volumes head motion correction. Especially if you have a low number of volumes, that could confound the fitting of a diffusion tensor. But most commonly, mean FD is used as a modeling covariate.

It would help to see pics, but there’s a chance susceptibility distortion correction could help. Do you correct with field maps? If not, consider synthesizing a field map with SynB0-DisCo.

Best,
Steven

Hi @Steven, thank you for your answers!

I will make sure to use the template for future posts.

Noted for Power et al., 2012. Is there then a guideline for FD in DWI? Or what would the typical range of FD values? Also, do the carpetplots I shared look fine?

Concerning the hyperintensities, I do use field maps. Here is a screenshot of the output:

Best,
Julia

Hi @jruizfdez,

There is no set recommendation for FD in DWI. This is in part because, especially for something as simple as a diffusion tensor, models are generally overfit because of how many directions are collected, so they are generally robust to noise when using modern preprocessing methods.

The hyper intensities do not look ideal, but are those regions important for your study hypotheses?

Best,
Steven

@jruizfdez is your acquisition b1-corrected on the scanner before you run qsiprep? Is this a monopolar or bipolar scheme?

Just to add that if excessive motion is a concern, there are methods to fit DTI that are particularly “robust” to artifacts that are isolated to particular volumes in the acquisition. They essentially do this by fitting a model and then detecting volumes that are not well fit by the model and excluding them automatically. There is an implementation of such a model called RESTORE here.

Thank you for the clarification on FD in DWI @Steven.

The OFC is indeed a region I am interested in. Best,

Hi @Ariel_Rokem,
Thank you for the suggestion, I will keep that in mind. Best,

Hi @mattcieslak,
The acquisitions are prescan normalized with a bipolar sceheme. Best,

I’ve seen this kind of signal pileup in bipolar schemes before. I don’t think there’s much you can do about it unfortunately

Noted. Thank you for your answer @mattcieslak!
Best,
Julia