Skip to content

Commit 9c4e9ad

Browse files
committed
fix: node variable name
1 parent 1750e14 commit 9c4e9ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/workflows/fmri/fsl/preprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,9 +1162,9 @@ def create_reg_workflow(name='registration'):
11621162
"""
11631163

11641164
anat2target_affine = pe.Node(fsl.FLIRT(), name='anat2target_linear')
1165-
anat2target.inputs.searchr_x = [-180, 180]
1166-
anat2target.inputs.searchr_y = [-180, 180]
1167-
anat2target.inputs.searchr_z = [-180, 180]
1165+
anat2target_affine.inputs.searchr_x = [-180, 180]
1166+
anat2target_affine.inputs.searchr_y = [-180, 180]
1167+
anat2target_affine.inputs.searchr_z = [-180, 180]
11681168
register.connect(stripper, 'out_file', anat2target_affine, 'in_file')
11691169
register.connect(inputnode, 'target_image_brain', anat2target_affine, 'reference')
11701170

0 commit comments

Comments
 (0)