Skip to content

Commit 0997f84

Browse files
authored
FIX: Default to 6 DoF for BOLD-T1w registration
1 parent eb7e4a5 commit 0997f84

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

fmriprep/cli/run.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,9 @@ def get_parser():
119119
'T2*-driven coregistration. When multi-echo data is provided and this '
120120
'option is not enabled, standard EPI-T1 coregistration is performed '
121121
'using the middle echo.')
122-
g_conf.add_argument('--bold2t1w-dof', action='store', default=9, choices=[6, 9, 12], type=int,
122+
g_conf.add_argument('--bold2t1w-dof', action='store', default=6, choices=[6, 9, 12], type=int,
123123
help='Degrees of freedom when registering BOLD to T1w images. '
124-
'9 (rotation, translation, and scaling) is used by '
125-
'default to compensate for field inhomogeneities.')
124+
'6 degrees (rotation and translation) are used by default.')
126125
g_conf.add_argument(
127126
'--output-space', required=False, action='store',
128127
choices=['T1w', 'template', 'fsnative', 'fsaverage', 'fsaverage6', 'fsaverage5'],

0 commit comments

Comments
 (0)