File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 6
6
def test_Unifize_inputs ():
7
7
input_map = dict (args = dict (argstr = '%s' ,
8
8
),
9
+ cl_frac = dict (argstr = '-clfrac %f' ,
10
+ ),
9
11
environ = dict (nohash = True ,
10
12
usedefault = True ,
11
13
),
@@ -33,12 +35,16 @@ def test_Unifize_inputs():
33
35
name_source = 'in_file' ,
34
36
),
35
37
outputtype = dict (),
38
+ quiet = dict (argstr = '-quiet' ,
39
+ ),
36
40
rbt = dict (argstr = '-rbt %f %f %f' ,
37
41
),
38
42
scale_file = dict (argstr = '-ssave %s' ,
39
43
),
40
44
t2 = dict (argstr = '-T2' ,
41
45
),
46
+ t2_up = dict (argstr = '-T2up %f' ,
47
+ ),
42
48
terminal_output = dict (deprecated = '1.0.0' ,
43
49
nohash = True ,
44
50
),
Original file line number Diff line number Diff line change @@ -2337,6 +2337,22 @@ class UnifizeInputSpec(AFNICommandInputSpec):
2337
2337
'b = bottom percentile of normalizing data range, [default=70.0]\n '
2338
2338
'r = top percentile of normalizing data range, [default=80.0]\n ' ,
2339
2339
argstr = '-rbt %f %f %f' )
2340
+ t2_up = traits .Float (
2341
+ desc = 'Option for AFNI experts only.'
2342
+ 'Set the upper percentile point used for T2-T1 inversion. '
2343
+ 'Allowed to be anything between 90 and 100 (inclusive), with '
2344
+ 'default to 98.5 (for no good reason).' ,
2345
+ argstr = '-T2up %f' )
2346
+ cl_frac = traits .Float (
2347
+ desc = 'Option for AFNI experts only.'
2348
+ 'Set the automask \' clip level fraction\' . Must be between '
2349
+ '0.1 and 0.9. A small fraction means to make the initial '
2350
+ 'threshold for clipping (a la 3dClipLevel) smaller, which '
2351
+ 'will tend to make the mask larger. [default=0.1]' ,
2352
+ argstr = '-clfrac %f' )
2353
+ quiet = traits .Bool (
2354
+ desc = 'Don\' t print the progress messages.' ,
2355
+ argstr = '-quiet' )
2340
2356
2341
2357
2342
2358
class UnifizeOutputSpec (TraitedSpec ):
You can’t perform that action at this time.
0 commit comments