File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ class RESTORE(DipyBaseInterface):
57
57
Example
58
58
-------
59
59
60
- >>> import pysdcev .interfaces.reconstruction as pir
61
- >>> dti = pir .RESTORE()
60
+ >>> from nipype .interfaces import dipy as ndp
61
+ >>> dti = ndp .RESTORE()
62
62
>>> dti.inputs.in_file = '4d_dwi.nii'
63
63
>>> dti.inputs.in_bval = 'bvals'
64
64
>>> dti.inputs.in_bvec = 'bvecs'
@@ -185,8 +185,8 @@ class EstimateResponseSH(DipyBaseInterface):
185
185
Example
186
186
-------
187
187
188
- >>> import pysdcev .interfaces.reconstruction as pir
189
- >>> dti = pir .EstimateResponseSH()
188
+ >>> from nipype .interfaces import dipy as ndp
189
+ >>> dti = ndp .EstimateResponseSH()
190
190
>>> dti.inputs.in_file = '4d_dwi.nii'
191
191
>>> dti.inputs.in_bval = 'bvals'
192
192
>>> dti.inputs.in_bvec = 'bvecs'
@@ -304,8 +304,8 @@ class CSD(DipyBaseInterface):
304
304
Example
305
305
-------
306
306
307
- >>> import pysdcev .interfaces.reconstruction as pir
308
- >>> csd = pir .CSD()
307
+ >>> from nipype .interfaces import dipy as ndp
308
+ >>> csd = ndp .CSD()
309
309
>>> csd.inputs.in_file = '4d_dwi.nii'
310
310
>>> csd.inputs.in_bval = 'bvals'
311
311
>>> csd.inputs.in_bvec = 'bvecs'
Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ class StreamlineTractography(BaseInterface):
139
139
Example
140
140
-------
141
141
142
- >>> import pysdcev .interfaces.reconstruction as pir
143
- >>> track = pir .StreamlineTractography()
142
+ >>> from nipype .interfaces import dipy as ndp
143
+ >>> track = ndp .StreamlineTractography()
144
144
>>> track.inputs.in_file = '4d_dwi.nii'
145
145
>>> track.inputs.in_model = 'model.pklz'
146
146
>>> track.inputs.tracking_mask = 'dilated_wm_mask.nii'
You can’t perform that action at this time.
0 commit comments