Skip to content

Commit 74b804e

Browse files
author
Shoshana Berleant
committed
add new param incl_shared_variance
1 parent 97dd3aa commit 74b804e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

nipype/interfaces/nilearn.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ class SignalExtractionInputSpec(BaseInterfaceInputSpec):
3939
out_file = File('signals.tsv', usedefault=True, exists=False,
4040
mandatory=False, 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 '
43+
'(True), returns simple time series calculated from each '
44+
'region independently (e.g., for noise regression). If '
45+
'False, returns unique signals for each region, discarding '
46+
'shared variance (e.g., for connectivity)')
4247
include_global = traits.Bool(False, usedefault=True, mandatory=False,
4348
desc='If True, include an extra column '
4449
'labeled "global", with values calculated from the entire brain '

0 commit comments

Comments
 (0)