File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ def test_MRIsExpand_inputs():
37
37
spring = dict (argstr = '-S %g' ,
38
38
),
39
39
subjects_dir = dict (),
40
+ target_intensity = dict (argstr = '-intensity %g %s' ,
41
+ ),
40
42
terminal_output = dict (nohash = True ,
41
43
),
42
44
thickness = dict (argstr = '-thickness' ,
Original file line number Diff line number Diff line change @@ -2923,6 +2923,12 @@ class MRIsExpandInputSpec(FSTraitedSpec):
2923
2923
nsurfaces = traits .Int (
2924
2924
argstr = '-N %d' ,
2925
2925
desc = 'Number of surfacces to write during expansion' )
2926
+ # Requires dev version
2927
+ # https://github.com/freesurfer/freesurfer/blob/9730cb9/mris_expand/mris_expand.c
2928
+ target_intensity = traits .Tuple (
2929
+ traits .Float , traits .File (exists = True ),
2930
+ argstr = '-intensity %g %s' ,
2931
+ desc = 'Tuple of intensity and brain volume to crop to target intensity' )
2926
2932
2927
2933
2928
2934
class MRIsExpandOutputSpec (TraitedSpec ):
You can’t perform that action at this time.
0 commit comments