File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,9 @@ class ArtifactDetect(BaseInterface):
278
278
279
279
Uses intensity and motion parameters to infer outliers. If `use_norm` is
280
280
True, it computes the movement of the center of each face a cuboid centered
281
- around the head and returns the maximal movement across the centers.
281
+ around the head and returns the maximal movement across the centers. If you
282
+ wish to use individual thresholds instead, import `Undefined` from
283
+ `nipype.interfaces.base` and set `....inputs.use_norm = Undefined`
282
284
283
285
284
286
Examples
@@ -591,13 +593,13 @@ class StimCorrInputSpec(BaseInterfaceInputSpec):
591
593
desc = "SPM mat file (use pre-estimate SPM.mat file)" )
592
594
concatenated_design = traits .Bool (mandatory = True ,
593
595
desc = ("state if the design matrix "
594
- "contains concatenated sessions" )
596
+ "contains concatenated sessions" ))
595
597
596
598
597
599
class StimCorrOutputSpec (TraitedSpec ):
598
600
stimcorr_files = OutputMultiPath (File (exists = True ),
599
601
desc = ("List of files containing "
600
- "correlation values" )
602
+ "correlation values" ))
601
603
602
604
603
605
class StimulusCorrelation (BaseInterface ):
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def test_ArtifactDetect_inputs():
40
40
usedefault = True ,
41
41
),
42
42
use_norm = dict (requires = ['norm_threshold' ],
43
+ usedefault = True ,
43
44
),
44
45
zintensity_threshold = dict (mandatory = True ,
45
46
),
You can’t perform that action at this time.
0 commit comments