Skip to content

Commit 30ab4eb

Browse files
committed
edited doc string to correct order
1 parent 33df5fc commit 30ab4eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nipype/interfaces/mrtrix3/preprocess.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,13 +343,12 @@ class DWIPreproc(MRTrix3Base):
343343
>>> preproc = mrt.DWIPreproc()
344344
>>> preproc.inputs.in_file = 'dwi.mif'
345345
>>> preproc.inputs.rpe_options = '-rpe_none'
346-
>>> preproc.inputs.eddy_options = '"--slm=linear --repol"'
347346
>>> preproc.inputs.out_file = "preproc.mif"
348347
>>> preproc.inputs.grad_file = "dwi.b"
349348
>>> preproc.inputs.ro_time = 0.165240 # 'TotalReadoutTime' in BIDS JSON metadata files
350349
>>> preproc.inputs.pe_dir = 'j' # 'PhaseEncodingDirection' in BIDS JSON metadata files
351350
>>> preproc.cmdline
352-
`dwifslpreproc dwi.mif preproc.mif -eddy_options "--slm=linear " -rpe_none -pe_dir j -grad dwi.b -readout_time 0.165240`
351+
`dwifslpreproc dwi.mif preproc.mif -rpe_none -pe_dir j -readout_time 0.165240 -grad dwi.b`
353352
"""
354353

355354
_cmd = "dwifslpreproc"

0 commit comments

Comments
 (0)