File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -2711,6 +2711,11 @@ class WarpInputSpec(AFNICommandInputSpec):
2711
2711
desc = 'apply transformation from 3dWarpDrive' ,
2712
2712
argstr = '-matparent %s' ,
2713
2713
exists = True )
2714
+ oblique_parent = File (
2715
+ desc = 'Read in the oblique transformation matrix from an oblique '
2716
+ 'dataset and make cardinal dataset oblique to match' ,
2717
+ argstr = '-oblique_parent %s' ,
2718
+ exists = True )
2714
2719
deoblique = traits .Bool (
2715
2720
desc = 'transform dataset from oblique to cardinal' ,
2716
2721
argstr = '-deoblique' )
@@ -2728,6 +2733,9 @@ class WarpInputSpec(AFNICommandInputSpec):
2728
2733
zpad = traits .Int (
2729
2734
desc = 'pad input dataset with N planes of zero on all sides.' ,
2730
2735
argstr = '-zpad %d' )
2736
+ verbose = traits .Bool (
2737
+ desc = 'Print out some information along the way.' ,
2738
+ argstr = '-verb' )
2731
2739
2732
2740
2733
2741
class Warp (AFNICommand ):
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ def test_Warp_inputs():
32
32
num_threads = dict (nohash = True ,
33
33
usedefault = True ,
34
34
),
35
+ oblique_parent = dict (argstr = '-oblique_parent %s' ,
36
+ ),
35
37
out_file = dict (argstr = '-prefix %s' ,
36
38
name_source = 'in_file' ,
37
39
name_template = '%s_warp' ,
@@ -42,6 +44,8 @@ def test_Warp_inputs():
42
44
),
43
45
tta2mni = dict (argstr = '-tta2mni' ,
44
46
),
47
+ verbose = dict (argstr = '-verb' ,
48
+ ),
45
49
zpad = dict (argstr = '-zpad %d' ,
46
50
),
47
51
)
You can’t perform that action at this time.
0 commit comments