@@ -14,16 +14,19 @@ class CiftiDilateInputSpec(CommandLineInputSpec):
14
14
"ROW" ,
15
15
"COLUMN" ,
16
16
mandatory = True ,
17
+ argstr = "%s" ,
17
18
position = 1 ,
18
19
desc = "Which dimension to dilate along, ROW or COLUMN" ,
19
20
)
20
21
surface_distance = traits .Int (
21
22
mandatory = True ,
23
+ argstr = "%d" ,
22
24
position = 2 ,
23
25
desc = "The distance to dilate on surfaces, in mm" ,
24
26
)
25
27
volume_distance = traits .Int (
26
28
mandatory = True ,
29
+ argstr = "%d" ,
27
30
position = 3 ,
28
31
desc = "The distance to dilate in the volume, in mm" ,
29
32
)
@@ -37,7 +40,6 @@ class CiftiDilateInputSpec(CommandLineInputSpec):
37
40
)
38
41
left_surface = File (
39
42
exists = True ,
40
- mandatory = True ,
41
43
position = 5 ,
42
44
argstr = "-left-surface %s" ,
43
45
desc = "Specify the left surface to use" ,
@@ -51,7 +53,6 @@ class CiftiDilateInputSpec(CommandLineInputSpec):
51
53
)
52
54
right_surface = File (
53
55
exists = True ,
54
- mandatory = True ,
55
56
position = 7 ,
56
57
argstr = "-right-surface %s" ,
57
58
desc = "Specify the right surface to use" ,
@@ -72,7 +73,7 @@ class CiftiDilateInputSpec(CommandLineInputSpec):
72
73
cerebellum_corrected_areas = File (
73
74
exists = True ,
74
75
position = 10 ,
75
- requires = ["cerebellum_surf " ],
76
+ requires = ["cerebellum_surface " ],
76
77
argstr = "-cerebellum-corrected-areas %s" ,
77
78
desc = "vertex areas (as a metric) to use instead of computing them from the cerebellum "
78
79
"surface" ,
0 commit comments