File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1324,7 +1324,6 @@ class TCorr1DInputSpec(AFNICommandInputSpec):
1324
1324
name_template = '%s_correlation.nii.gz' ,
1325
1325
argstr = '-prefix %s' ,
1326
1326
name_source = 'xset' ,
1327
- genfile = True ,
1328
1327
keep_extension = True )
1329
1328
pearson = traits .Bool (desc = 'Correlation is the normal' +
1330
1329
' Pearson correlation coefficient' ,
@@ -1359,6 +1358,14 @@ class TCorr1D(AFNICommand):
1359
1358
in the input 3D+time dataset.
1360
1359
For complete details, see the `3dTcorr1D Documentation.
1361
1360
<http://afni.nimh.nih.gov/pub/dist/doc/program_help/3dTcorr1D.html>`_
1361
+
1362
+ >>> from nipype.interfaces import afni as afni
1363
+ >>> tcorr1D = afni.TCorr1D()
1364
+ >>> tcorr1D.inputs.xset= 'u_rc1s1_Template.nii'
1365
+ >>> tcorr1D.inputs.y_1d = 'seed.1D'
1366
+ >>> tcorr1D.cmdline
1367
+ '3dTcorr1D -prefix u_rc1s1_Template_correlation.nii.gz u_rc1s1_Template.nii seed.1D'
1368
+ >>> res = tcorr1D.run() # doctest: +SKIP
1362
1369
"""
1363
1370
1364
1371
_cmd = '3dTcorr1D'
You can’t perform that action at this time.
0 commit comments