Troubleshooting
This page is dedicated for Troubleshooting. Known errors and problems will be listed here with a possible solution for solving this issue. If you solved a problem that might be relevant for others as well, feel free to contact Maximilian (,Adam or Natalia) so that it can be added to this page as well.
1 General
If you encounter an error - Check the error message, maybe copy/paste it to google to get a first idea of what is wrong - Check if all necessary ressources are sourced (e.g. did you include ml freesurfer
before opening a volume to check for noise scans) - Check if your working directory is set correctly, if not, correct that with cd /desired/path/
(e.g. when you try to remove the noise scans) - Check if the paths in your command are correct. In some scripts you define you path in a variable, like $SUBJECTS_DIR
or $niidir
. If you want to only run a specific line of code separately, you might have to write out the complete path
2 fmriprep
2.1 I ran fMRIprep but no distortion correction happened
2.1.1 Detection of this Problem
2.1.1.1 Error Message
This problem might occur with a corresponding error message (and the fmriprep command stopping)
2.1.1.2 Silent error
It can be hard to realize this issue, since this problem sometimes “occurs silently”, thus no error message will be shown.
If the distortion correction was successful, the subject’s .html should include a section \(B_0\) field mapping. As you can see in the image below, this would be shown at the top of the file where the different sections are listed as well:
If the distortion correction failed silently (thus, without an explicit error that is printed somewhere), the section is missing as whole and is not shown at the top of the .html file:
2.1.2 Solution
you might be using a wrong BIDS specification in the fmap’s
json
file. See Information about BIDS uri, or the corresponding wiki entry.If your fmap .json file is using the BIDS uri specification (= newer version) in the
IntendedFor
field and you are using an older fMRIprep version (< v24.0.0) then this will need to be changed to the older path specification. Similarly, if you changed the “IntendedFor” section as described here, but you use an fmriprep version older than 24.0.0, this leeds to the same problem
\(\to\) Check the “IntendedFor” section of your fmap’s .json file and compare if the entries are suitable for the version of fmriprep you want to use:
BIDS uri spec for fmriprep 24.0.0 or newer:
``` json
"IntendedFor": [
"bids::sub-1181001/ses-1/func/sub-1181001_ses-1_task-movie_run-1_bold.nii.gz",
"bids::sub-1181001/ses-1/func/sub-1181001_ses-1_task-movie_run-2_bold.nii.gz",
etc
]
```
Older fmap spec for fmriprep older than 24.0.0:
``` json
"IntendedFor": [
"ses-1/func/sub-1181001_ses-1_task-movie_run-1_bold.nii.gz",
"ses-1/func/sub-1181001_ses-1_task-movie_run-2_bold.nii.gz",
etc
]
```
\(\to\) if they don´t match, correct the “IntentedFor”-Section of the fmap’s .json file
2.2 ValueError: Reference passed is not aligned with spline grids
This error sometimes occurs by chance, but should not appear regularly. It is caused by the coregistration algorithm of fmriprep itself. There are two options you can try:
Try a different version of fmriprep
Transform your T1w scan
2.2.1 Transform your T1w scan
Transforming your T1w scan to avoid this error is not the ideal solution, but it is a good workaround for this complex problem.
To transform your T1w scan:
Load your structural scan in freeview (identical process as described here for a functional scan)
In the menu-bar in freeview (top-left), select
Tools > Transform Volume...
In the resulting window, select
Transform
in the top menu and change the value in the second “line” (=Y (P-A)
) to -2.5 (with the slider or enter the number directly). This will shift the T1w scan 2.5mm in the posterior direction. Subsequently, selectSave Volume As
You can simply overwrite the existing T1w file which should already be selected (you could always reverse this step with the described method). Make sure to select the option
Do not resample voxel data when saving (only update header)
!
\(\to\) when you run freesurfer with this transformed T1w scan, the “Spline Grid Error” should not occur anymore.
2.3 If using already run FreeSurfer recon-all
output and have specified an expert-opts
file then fMRIprep shows multiple errors
\(\to\) In the directory that has the prerun recon-all
there is a folder scripts
that saves the expert-opts
file. Removing this file allows fMRIprep to run
2.4 I ran fMRIprep and the distortion correction of the data is too extreme
This is an issue with certain issues of fMRIprep. Using fMRIprep version 20.2.7 may be needed to avoid the extreme distortion correction (newer versions of fMRIprep haven’t been tested)