diff --git a/nipype/interfaces/afni/preprocess.py b/nipype/interfaces/afni/preprocess.py index 736732042c..219f19cd55 100644 --- a/nipype/interfaces/afni/preprocess.py +++ b/nipype/interfaces/afni/preprocess.py @@ -2711,6 +2711,11 @@ class WarpInputSpec(AFNICommandInputSpec): desc='apply transformation from 3dWarpDrive', argstr='-matparent %s', exists=True) + oblique_parent = File( + desc='Read in the oblique transformation matrix from an oblique ' + 'dataset and make cardinal dataset oblique to match', + argstr='-oblique_parent %s', + exists=True) deoblique = traits.Bool( desc='transform dataset from oblique to cardinal', argstr='-deoblique') @@ -2728,6 +2733,9 @@ class WarpInputSpec(AFNICommandInputSpec): zpad = traits.Int( desc='pad input dataset with N planes of zero on all sides.', argstr='-zpad %d') + verbose = traits.Bool( + desc='Print out some information along the way.', + argstr='-verb') class Warp(AFNICommand): diff --git a/nipype/interfaces/afni/tests/test_auto_Warp.py b/nipype/interfaces/afni/tests/test_auto_Warp.py index c579758afb..d37ed85676 100644 --- a/nipype/interfaces/afni/tests/test_auto_Warp.py +++ b/nipype/interfaces/afni/tests/test_auto_Warp.py @@ -32,6 +32,8 @@ def test_Warp_inputs(): num_threads=dict(nohash=True, usedefault=True, ), + oblique_parent=dict(argstr='-oblique_parent %s', + ), out_file=dict(argstr='-prefix %s', name_source='in_file', name_template='%s_warp', @@ -42,6 +44,8 @@ def test_Warp_inputs(): ), tta2mni=dict(argstr='-tta2mni', ), + verbose=dict(argstr='-verb', + ), zpad=dict(argstr='-zpad %d', ), )