File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -108,8 +108,13 @@ class RobustTemplate(FSCommandOpenMP):
108
108
... 'functional.lta']
109
109
>>> template.inputs.scaled_intensity_outputs = ['structural-iscale.txt',
110
110
... 'functional-iscale.txt']
111
- >>> template.cmdline #doctest: +NORMALIZE_WHITESPACE +ALLOW_UNICODE
112
- 'mri_robust_template --satit --average 0 --fixtp --mov structural.nii functional.nii --inittp 1 --noit --template T1.nii --iscaleout structural-iscale.txt functional-iscale.txt --subsample 200 --lta structural.lta functional.lta'
111
+ >>> template.cmdline #doctest: +NORMALIZE_WHITESPACE +ALLOW_UNICODE +ELLIPSIS
112
+ 'mri_robust_template --satit --average 0 --fixtp --mov structural.nii functional.nii --inittp 1 --noit --template T1.nii --iscaleout .../structural-iscale.txt .../functional-iscale.txt --subsample 200 --lta .../structural.lta .../functional.lta'
113
+
114
+ >>> template.inputs.transform_outputs = True
115
+ >>> template.inputs.scaled_intensity_outputs = True
116
+ >>> template.cmdline #doctest: +NORMALIZE_WHITESPACE +ALLOW_UNICODE +ELLIPSIS
117
+ 'mri_robust_template --satit --average 0 --fixtp --mov structural.nii functional.nii --inittp 1 --noit --template T1.nii --iscaleout .../is1.txt .../is2.txt --subsample 200 --lta .../tp1.lta .../tp2.lta'
113
118
114
119
>>> template.run() #doctest: +SKIP
115
120
You can’t perform that action at this time.
0 commit comments