@@ -37,20 +37,19 @@ class SignalExtractionInputSpec(BaseInterfaceInputSpec):
3737 'corresponds to the class labels in label_file '
3838 'in ascending order' )
3939 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. '
4141 '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 '
4343 '(True), returns simple time series calculated from each '
4444 'region independently (e.g., for noise regression). If '
4545 'False, returns unique signals for each region, discarding '
4646 'shared variance (e.g., for connectivity. Only has effect '
4747 'with 4D probability maps.' )
48- include_global = traits .Bool (False , usedefault = True , mandatory = False ,
48+ include_global = traits .Bool (False , usedefault = True ,
4949 desc = 'If True, include an extra column '
5050 'labeled "global", with values calculated from the entire brain '
5151 '(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.' )
5453
5554class SignalExtractionOutputSpec (TraitedSpec ):
5655 out_file = File (exists = True , desc = 'tsv file containing the computed '
0 commit comments