File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11from .tracks import TrackDensityMap
2- from .tensors import TensorMode
2+ from .tensors import TensorMode , DTI
33from .preprocess import Resample , Denoise
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ class TensorMode(BaseInterface):
164164 >>> mode.inputs.in_file = 'diffusion.nii'
165165 >>> mode.inputs.bvecs = 'bvecs'
166166 >>> mode.inputs.bvals = 'bvals'
167- >>> mode.inputs.mask = 'wm_mask.nii'
167+ >>> mode.inputs.mask_file = 'wm_mask.nii'
168168 >>> mode.run() # doctest: +SKIP
169169 """
170170 input_spec = TensorModeInputSpec
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ def test_DTI_inputs():
99 ),
1010 in_file = dict (mandatory = True ,
1111 ),
12- mask_file = dict (mandatory = False ,
12+ mask_file = dict (mandatory = False ,
1313 ),
1414 out_filename = dict (genfile = True ,
1515 ),
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ def test_TensorMode_inputs():
99 ),
1010 in_file = dict (mandatory = True ,
1111 ),
12+ mask_file = dict (mandatory = False ,
13+ ),
1214 out_filename = dict (genfile = True ,
1315 ),
1416 )
You can’t perform that action at this time.
0 commit comments