Skip to content

Commit ccc7e95

Browse files
committed
enh: add FAST option for SPM12
1 parent f1f0213 commit ccc7e95

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

nipype/interfaces/spm/model.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,19 @@ class Level1DesignInputSpec(SPMCommandInputSpec):
7070
Number of basis functions
7171
""", mandatory=True)
7272
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')
7474
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')
7676
mask_image = File(exists=True, field='mask',
77-
desc='Image for explicitly masking the analysis (opt)')
77+
desc='Image for explicitly masking the analysis')
7878
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'))
8286

8387

8488
class Level1DesignOutputSpec(TraitedSpec):

0 commit comments

Comments
 (0)