@@ -37,20 +37,19 @@ class SignalExtractionInputSpec(BaseInterfaceInputSpec):
37
37
'corresponds to the class labels in label_file '
38
38
'in ascending order' )
39
39
out_file = File ('signals.tsv' , usedefault = True , exists = False ,
40
- mandatory = False , desc = 'The name of the file to output to. '
40
+ desc = 'The name of the file to output to. '
41
41
'signals.tsv by default' )
42
- incl_shared_variance = traits .Bool (True , usedefault = True , mandatory = False , desc = 'By default '
42
+ incl_shared_variance = traits .Bool (True , usedefault = True , desc = 'By default '
43
43
'(True), returns simple time series calculated from each '
44
44
'region independently (e.g., for noise regression). If '
45
45
'False, returns unique signals for each region, discarding '
46
46
'shared variance (e.g., for connectivity. Only has effect '
47
47
'with 4D probability maps.' )
48
- include_global = traits .Bool (False , usedefault = True , mandatory = False ,
48
+ include_global = traits .Bool (False , usedefault = True ,
49
49
desc = 'If True, include an extra column '
50
50
'labeled "global", with values calculated from the entire brain '
51
51
'(instead of just regions).' )
52
- detrend = traits .Bool (False , usedefault = True , mandatory = False ,
53
- desc = 'If True, perform detrending using nilearn.' )
52
+ detrend = traits .Bool (False , usedefault = True , desc = 'If True, perform detrending using nilearn.' )
54
53
55
54
class SignalExtractionOutputSpec (TraitedSpec ):
56
55
out_file = File (exists = True , desc = 'tsv file containing the computed '
0 commit comments