@@ -1887,7 +1887,7 @@ class RandomiseInputSpec(FSLCommandInputSpec):
1887
1887
in_file = File (exists = True , desc = '4D input file' , argstr = '-i %s' ,
1888
1888
position = 0 , mandatory = True )
1889
1889
base_name = traits .Str (
1890
- 'tbss_ ' , desc = 'the rootname that all generated files will have' ,
1890
+ 'randomise ' , desc = 'the rootname that all generated files will have' ,
1891
1891
argstr = '-o "%s"' , position = 1 , usedefault = True )
1892
1892
design_mat = File (
1893
1893
exists = True , desc = 'design matrix file' , argstr = '-d %s' , position = 2 )
@@ -1934,9 +1934,9 @@ class RandomiseInputSpec(FSLCommandInputSpec):
1934
1934
var_smooth = traits .Int (
1935
1935
argstr = '-v %d' , desc = 'use variance smoothing (std is in mm)' )
1936
1936
c_thresh = traits .Float (
1937
- argstr = '-c %.2f ' , desc = 'carry out cluster-based thresholding' )
1937
+ argstr = '-c %.1f ' , desc = 'carry out cluster-based thresholding' )
1938
1938
cm_thresh = traits .Float (
1939
- argstr = '-C %.2f ' , desc = 'carry out cluster-mass-based thresholding' )
1939
+ argstr = '-C %.1f ' , desc = 'carry out cluster-mass-based thresholding' )
1940
1940
f_c_thresh = traits .Float (
1941
1941
argstr = '-F %.2f' , desc = 'carry out f cluster thresholding' )
1942
1942
f_cm_thresh = traits .Float (
@@ -1980,7 +1980,7 @@ class Randomise(FSLCommand):
1980
1980
>>> import nipype.interfaces.fsl as fsl
1981
1981
>>> rand = fsl.Randomise(in_file='allFA.nii', mask = 'mask.nii', tcon='design.con', design_mat='design.mat')
1982
1982
>>> rand.cmdline
1983
- 'randomise -i allFA.nii -o "tbss_ " -d design.mat -t design.con -m mask.nii'
1983
+ 'randomise -i allFA.nii -o "randomise " -d design.mat -t design.con -m mask.nii'
1984
1984
1985
1985
"""
1986
1986
0 commit comments