Skip to content

Commit a73efae

Browse files
committed
DOC: Clarify use of "NULL"
1 parent e97caa4 commit a73efae

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nipype/interfaces/ants/registration.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,14 @@ class RegistrationInputSpec(ANTSCommandInputSpec):
221221
desc='image to apply transformation to (generally a coregistered functional)')
222222
fixed_image_mask = InputMultiPath(
223223
traits.Either('NULL', File(exists=True)),
224-
desc='mask used to limit metric sampling region of the fixed image')
224+
desc='mask used to limit metric sampling region of the fixed image '
225+
'(Use "NULL" to omit a mask at a given stage)')
225226
moving_image = InputMultiPath(File(exists=True), mandatory=True,
226227
desc='image to apply transformation to (generally a coregistered functional)')
227228
moving_image_mask = InputMultiPath(
228229
traits.Either('NULL', File(exists=True)),
229-
desc='mask used to limit metric sampling region of the moving image')
230+
desc='mask used to limit metric sampling region of the moving image '
231+
'(Use "NULL" to omit a mask at a given stage)')
230232

231233
save_state = File(argstr='--save-state %s', exists=False,
232234
desc='Filename for saving the internal restorable state of the registration')

0 commit comments

Comments
 (0)