We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28008c commit 1d77af8Copy full SHA for 1d77af8
nipype/interfaces/afni/utils.py
@@ -1327,10 +1327,10 @@ class Unifize(AFNICommand):
1327
1328
>>> from nipype.interfaces import afni
1329
>>> unifize = afni.Unifize()
1330
- >>> unifize.inputs.in_file = 't1.nii'
1331
- >>> unifize.inputs.out_file = 't1_unifized.nii'
+ >>> unifize.inputs.in_file = 'structural.nii'
+ >>> unifize.inputs.out_file = 'structural_unifized.nii'
1332
>>> unifize.cmdline # doctest: +ALLOW_UNICODE
1333
- '3dUnifize -prefix t1_unifized.nii -input t1.nii'
+ '3dUnifize -prefix structural_unifized.nii -input structural.nii'
1334
>>> res = unifize.run() # doctest: +SKIP
1335
1336
"""
0 commit comments