Skip to content

Commit 8384523

Browse files
authored
Merge pull request #2361 from djarecka/forwho-DiffusionToolkit_fix
updating dti.py (cont #1653)
2 parents 6f5b7f7 + ee06cc8 commit 8384523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/diffusion_toolkit/dti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class DTITrackerInputSpec(CommandLineInputSpec):
129129
angle_threshold_weight = traits.Float(desc="set angle threshold weighting factor. weighting will be be applied \
130130
on top of the angle_threshold", argstr="-atw %f")
131131
random_seed = traits.Int(desc="use random location in a voxel instead of the center of the voxel \
132-
to seed. can also define number of seed per voxel. default is 1", argstr="-rseed")
132+
to seed. can also define number of seed per voxel. default is 1", argstr="-rseed %d")
133133
invert_x = traits.Bool(desc="invert x component of the vector", argstr="-ix")
134134
invert_y = traits.Bool(desc="invert y component of the vector", argstr="-iy")
135135
invert_z = traits.Bool(desc="invert z component of the vector", argstr="-iz")

nipype/interfaces/diffusion_toolkit/tests/test_auto_DTITracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_DTITracker_inputs():
4848
),
4949
primary_vector=dict(argstr='-%s',
5050
),
51-
random_seed=dict(argstr='-rseed',
51+
random_seed=dict(argstr='-rseed %d',
5252
),
5353
step_length=dict(argstr='-l %f',
5454
),

0 commit comments

Comments
 (0)