@@ -751,6 +751,9 @@ class CopyInputSpec(AFNICommandInputSpec):
751751 argstr = '%s' ,
752752 position = - 1 ,
753753 name_source = 'in_file' )
754+ verbose = traits .Bool (
755+ desc = 'print progress reports' ,
756+ argstr = '-verb' )
754757
755758
756759class Copy (AFNICommand ):
@@ -1377,6 +1380,9 @@ class MaskToolInputSpec(AFNICommandInputSpec):
13771380 'or using the labels in {R,L,A,P,I,S}.' ,
13781381 argstr = '-fill_dirs %s' ,
13791382 requires = ['fill_holes' ])
1383+ verbose = traits .Int (
1384+ desc = 'specify verbosity level, for 0 to 3' ,
1385+ argstr = '-verb %s' )
13801386
13811387
13821388class MaskToolOutputSpec (TraitedSpec ):
@@ -1985,6 +1991,9 @@ class TCatInputSpec(AFNICommandInputSpec):
19851991 'dataset mean back in. Option -rlt++ adds overall mean of all '
19861992 'dataset timeseries back in.' ,
19871993 position = 1 )
1994+ verbose = traits .Bool (
1995+ desc = 'Print out some verbose output as the program' ,
1996+ argstr = '-verb' )
19881997
19891998
19901999class TCat (AFNICommand ):
@@ -2291,6 +2300,7 @@ class UnifizeInputSpec(AFNICommandInputSpec):
22912300 exists = True ,
22922301 copyfile = False )
22932302 out_file = File (
2303+ name_template = '%s_unifized' ,
22942304 desc = 'output image file name' ,
22952305 argstr = '-prefix %s' ,
22962306 name_source = 'in_file' )
@@ -2337,6 +2347,22 @@ class UnifizeInputSpec(AFNICommandInputSpec):
23372347 'b = bottom percentile of normalizing data range, [default=70.0]\n '
23382348 'r = top percentile of normalizing data range, [default=80.0]\n ' ,
23392349 argstr = '-rbt %f %f %f' )
2350+ t2_up = traits .Float (
2351+ desc = 'Option for AFNI experts only.'
2352+ 'Set the upper percentile point used for T2-T1 inversion. '
2353+ 'Allowed to be anything between 90 and 100 (inclusive), with '
2354+ 'default to 98.5 (for no good reason).' ,
2355+ argstr = '-T2up %f' )
2356+ cl_frac = traits .Float (
2357+ desc = 'Option for AFNI experts only.'
2358+ 'Set the automask \' clip level fraction\' . Must be between '
2359+ '0.1 and 0.9. A small fraction means to make the initial '
2360+ 'threshold for clipping (a la 3dClipLevel) smaller, which '
2361+ 'will tend to make the mask larger. [default=0.1]' ,
2362+ argstr = '-clfrac %f' )
2363+ quiet = traits .Bool (
2364+ desc = 'Don\' t print the progress messages.' ,
2365+ argstr = '-quiet' )
23402366
23412367
23422368class UnifizeOutputSpec (TraitedSpec ):
0 commit comments