Skip to content

Commit aadb26b

Browse files
committed
Merge pull request #814 from swederik/bf/streamtrack
Fix for stop argstr in MRtrix's Streamtrack interface
2 parents f14b4ce + 7967af7 commit aadb26b

5 files changed

+5
-5
lines changed

nipype/interfaces/mrtrix/tests/test_auto_DiffusionTensorStreamlineTrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test_DiffusionTensorStreamlineTrack_inputs():
9494
step_size=dict(argstr='-step %s',
9595
units='mm',
9696
),
97-
stop=dict(argstr='-gzip',
97+
stop=dict(argstr='-stop',
9898
),
9999
terminal_output=dict(mandatory=True,
100100
nohash=True,

nipype/interfaces/mrtrix/tests/test_auto_ProbabilisticSphericallyDeconvolutedStreamlineTrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_ProbabilisticSphericallyDeconvolutedStreamlineTrack_inputs():
9292
step_size=dict(argstr='-step %s',
9393
units='mm',
9494
),
95-
stop=dict(argstr='-gzip',
95+
stop=dict(argstr='-stop',
9696
),
9797
terminal_output=dict(mandatory=True,
9898
nohash=True,

nipype/interfaces/mrtrix/tests/test_auto_SphericallyDeconvolutedStreamlineTrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def test_SphericallyDeconvolutedStreamlineTrack_inputs():
9090
step_size=dict(argstr='-step %s',
9191
units='mm',
9292
),
93-
stop=dict(argstr='-gzip',
93+
stop=dict(argstr='-stop',
9494
),
9595
terminal_output=dict(mandatory=True,
9696
nohash=True,

nipype/interfaces/mrtrix/tests/test_auto_StreamlineTrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def test_StreamlineTrack_inputs():
9090
step_size=dict(argstr='-step %s',
9191
units='mm',
9292
),
93-
stop=dict(argstr='-gzip',
93+
stop=dict(argstr='-stop',
9494
),
9595
terminal_output=dict(mandatory=True,
9696
nohash=True,

nipype/interfaces/mrtrix/tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class StreamlineTrackInputSpec(CommandLineInputSpec):
9999
inputmodel = traits.Enum('DT_STREAM', 'SD_PROB', 'SD_STREAM',
100100
argstr='%s', desc='input model type', usedefault=True, position=-3)
101101

102-
stop = traits.Bool(argstr='-gzip', desc="stop track as soon as it enters any of the include regions.")
102+
stop = traits.Bool(argstr='-stop', desc="stop track as soon as it enters any of the include regions.")
103103
do_not_precompute = traits.Bool(argstr='-noprecomputed', desc="Turns off precomputation of the legendre polynomial values. Warning: this will slow down the algorithm by a factor of approximately 4.")
104104
unidirectional = traits.Bool(argstr='-unidirectional', desc="Track from the seed point in one direction only (default is to track in both directions).")
105105
no_mask_interpolation = traits.Bool(argstr='-nomaskinterp', desc="Turns off trilinear interpolation of mask images.")

0 commit comments

Comments
 (0)