Skip to content

Commit 5821469

Browse files
committed
Fix bbregister init-reg argument
1 parent 394ac0d commit 5821469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/freesurfer/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ class BBRegisterInputSpec(FSTraitedSpec):
807807
init = traits.Enum('spm', 'fsl', 'header', argstr='--init-%s',
808808
mandatory=True, xor=['init_reg_file'],
809809
desc='initialize registration spm, fsl, header')
810-
init_reg_file = File(exists=True,
810+
init_reg_file = File(exists=True, argstr='--init-reg %s',
811811
desc='existing registration file',
812812
xor=['init'], mandatory=True)
813813
contrast_type = traits.Enum('t1', 't2', argstr='--%s',

0 commit comments

Comments
 (0)