@@ -70,15 +70,19 @@ class Level1DesignInputSpec(SPMCommandInputSpec):
70
70
Number of basis functions
71
71
""" , mandatory = True )
72
72
volterra_expansion_order = traits .Enum (1 , 2 , field = 'volt' ,
73
- desc = 'Model interactions - yes:1, no:2 (opt) ' )
73
+ desc = 'Model interactions - yes:1, no:2' )
74
74
global_intensity_normalization = traits .Enum ('none' , 'scaling' , field = 'global' ,
75
- desc = 'Global intensity normalization - scaling or none (opt) ' )
75
+ desc = 'Global intensity normalization - scaling or none' )
76
76
mask_image = File (exists = True , field = 'mask' ,
77
- desc = 'Image for explicitly masking the analysis (opt) ' )
77
+ desc = 'Image for explicitly masking the analysis' )
78
78
mask_threshold = traits .Either (traits .Enum ('-Inf' ), traits .Float (),
79
- desc = "Thresholding for the mask (opt, '-Inf')" , default = '-Inf' , usedefault = True )
80
- model_serial_correlations = traits .Enum ('AR(1)' , 'none' , field = 'cvi' ,
81
- desc = 'Model serial correlations AR(1) or none (opt)' )
79
+ desc = "Thresholding for the mask" ,
80
+ default = '-Inf' , usedefault = True )
81
+ model_serial_correlations = traits .Enum ('AR(1)' , 'FAST' , 'none' ,
82
+ field = 'cvi' ,
83
+ desc = ('Model serial correlations '
84
+ 'AR(1), FAST or none. FAST '
85
+ 'is available in SPM12' ))
82
86
83
87
84
88
class Level1DesignOutputSpec (TraitedSpec ):
0 commit comments