Skip to content

Commit 5da86ea

Browse files
committed
FIX: Remove dev option from interface until release
1 parent 4b6968f commit 5da86ea

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

nipype/interfaces/freesurfer/tests/test_auto_MRIsExpand.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ def test_MRIsExpand_inputs():
2323
mandatory=True,
2424
position=-3,
2525
),
26-
navgs=dict(argstr='-navgs %d %d',
27-
),
2826
nsurfaces=dict(argstr='-N %d',
2927
),
3028
out_name=dict(argstr='%s',

nipype/interfaces/freesurfer/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3000,11 +3000,6 @@ class MRIsExpandInputSpec(FSTraitedSpec):
30003000
desc=('Name of thickness file (implicit: "thickness")\n'
30013001
'If no path, uses directory of `in_file`\n'
30023002
'If no path AND missing "lh." or "rh.", derive from `in_file`'))
3003-
navgs = traits.Tuple(
3004-
traits.Int, traits.Int,
3005-
argstr='-navgs %d %d',
3006-
desc=('Tuple of (n_averages, min_averages) parameters '
3007-
'(implicit: (16, 0))'))
30083003
pial = traits.Str(
30093004
argstr='-pial %s', copyfile=False,
30103005
desc=('Name of pial file (implicit: "pial")\n'
@@ -3026,6 +3021,11 @@ class MRIsExpandInputSpec(FSTraitedSpec):
30263021
desc='Number of surfacces to write during expansion')
30273022
# # Requires dev version - Re-add when min_ver/max_ver support this
30283023
# # https://github.com/freesurfer/freesurfer/blob/9730cb9/mris_expand/mris_expand.c
3024+
# navgs = traits.Tuple(
3025+
# traits.Int, traits.Int,
3026+
# argstr='-navgs %d %d',
3027+
# desc=('Tuple of (n_averages, min_averages) parameters '
3028+
# '(implicit: (16, 0))'))
30293029
# target_intensity = traits.Tuple(
30303030
# traits.Float, traits.File(exists=True),
30313031
# argstr='-intensity %g %s',

0 commit comments

Comments
 (0)