Skip to content

Commit c5f27a7

Browse files
committed
Revert 127f2fc..a24df01
This rolls back to commit 127f2fc.
1 parent a24df01 commit c5f27a7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ Next release
5353
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
5454
* FIX: typo in nipype.interfaces.freesurfer.utils.py Tkregister2 (https://github.com/nipy/nipype/pull/1083)
5555
* FIX: SSHDataGrabber outputs now return full path to the grabbed/downloaded files. (https://github.com/nipy/nipype/pull/1086)
56-
* FIX: N4BiasFieldCorrection dimension input now uses short tag for compatibility. (https://github.com/nipy/nipype/pull/1096)
5756

5857
Release 0.10.0 (October 10, 2014)
5958
============

nipype/interfaces/ants/segmentation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,23 +279,23 @@ class N4BiasFieldCorrection(ANTSCommand):
279279
>>> n4.inputs.convergence_threshold = 1e-6
280280
>>> n4.cmdline
281281
'N4BiasFieldCorrection --bspline-fitting [ 300 ] \
282-
-d 3 --input-image structural.nii \
282+
--image-dimension 3 --input-image structural.nii \
283283
--convergence [ 50x50x30x20, 1e-06 ] --output structural_corrected.nii \
284284
--shrink-factor 3'
285285
286286
>>> n4_2 = copy.deepcopy(n4)
287287
>>> n4_2.inputs.bspline_order = 5
288288
>>> n4_2.cmdline
289289
'N4BiasFieldCorrection --bspline-fitting [ 300, 5 ] \
290-
--d 3 --input-image structural.nii \
290+
--image-dimension 3 --input-image structural.nii \
291291
--convergence [ 50x50x30x20, 1e-06 ] --output structural_corrected.nii \
292292
--shrink-factor 3'
293293
294294
>>> n4_3 = N4BiasFieldCorrection()
295295
>>> n4_3.inputs.input_image = 'structural.nii'
296296
>>> n4_3.inputs.save_bias = True
297297
>>> n4_3.cmdline
298-
'N4BiasFieldCorrection -d 3 --input-image structural.nii \
298+
'N4BiasFieldCorrection --image-dimension 3 --input-image structural.nii \
299299
--output [ structural_corrected.nii, structural_bias.nii ]'
300300
"""
301301

0 commit comments

Comments
 (0)