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 1efb783 commit 7154fabCopy full SHA for 7154fab
nipype/interfaces/c3.py
@@ -31,9 +31,10 @@ class C3dAffineTool(SEMLikeCommandLine):
31
>>> from nipype.interfaces.c3 import C3dAffineTool
32
>>> c3 = C3dAffineTool()
33
>>> c3.inputs.source_file = 'cmatrix.mat'
34
- >>> c3.inputs.itk_transform = True
+ >>> c3.inputs.itk_transform = 'affine.txt'
35
>>> c3.inputs.fsl2ras = True
36
- >>> c3.run() #doctest: +SKIP
+ >>> c3.cmdline
37
+ 'c3d_affine_tool -src cmatrix.mat -fsl2ras -oitk affine.txt'
38
"""
39
input_spec = C3dAffineToolInputSpec
40
output_spec = C3dAffineToolOutputSpec
0 commit comments