@@ -8,21 +8,18 @@ def test_BEDPOSTX5_inputs():
8
8
),
9
9
args = dict (argstr = '%s' ,
10
10
),
11
- burn_in = dict (argstr = '--burnin= %d' ,
11
+ burn_in = dict (argstr = '-b %d' ,
12
12
),
13
13
burn_in_no_ard = dict (argstr = '--burninnoard=%d' ,
14
14
),
15
- bvals = dict (argstr = '--bvals=%s' ,
16
- mandatory = True ,
15
+ bvals = dict (mandatory = True ,
17
16
),
18
- bvecs = dict (argstr = '--bvecs=%s' ,
19
- mandatory = True ,
17
+ bvecs = dict (mandatory = True ,
20
18
),
21
19
cnlinear = dict (argstr = '--cnonlinear' ,
22
20
xor = ('no_spat' , 'non_linear' , 'cnlinear' ),
23
21
),
24
- dwi = dict (argstr = '--data=%s' ,
25
- mandatory = True ,
22
+ dwi = dict (mandatory = True ,
26
23
),
27
24
environ = dict (nohash = True ,
28
25
usedefault = True ,
@@ -36,25 +33,24 @@ def test_BEDPOSTX5_inputs():
36
33
force_dir = dict (argstr = '--forcedir' ,
37
34
usedefault = True ,
38
35
),
39
- fudge = dict (argstr = '--fudge= %d' ,
36
+ fudge = dict (argstr = '-w %d' ,
40
37
),
41
38
gradnonlin = dict (argstr = '-g' ,
42
39
),
43
40
ignore_exception = dict (nohash = True ,
44
41
usedefault = True ,
45
42
),
46
43
logdir = dict (argstr = '--logdir=%s' ,
47
- usedefault = True ,
48
44
),
49
- mask = dict (argstr = '--mask=%s' ,
50
- mandatory = True ,
45
+ mask = dict (mandatory = True ,
51
46
),
52
- model = dict (argstr = '-- model= %d' ,
47
+ model = dict (argstr = '-model %d' ,
53
48
),
54
- n_fibres = dict (argstr = '--nfibres=%d' ,
49
+ n_fibres = dict (argstr = '-n %d' ,
50
+ mandatory = True ,
55
51
usedefault = True ,
56
52
),
57
- n_jumps = dict (argstr = '--njumps= %d' ,
53
+ n_jumps = dict (argstr = '-j %d' ,
58
54
),
59
55
no_ard = dict (argstr = '--noard' ,
60
56
xor = ('no_ard' , 'all_ard' ),
@@ -73,7 +69,7 @@ def test_BEDPOSTX5_inputs():
73
69
output_type = dict (),
74
70
rician = dict (argstr = '--rician' ,
75
71
),
76
- sample_every = dict (argstr = '--sampleevery= %d' ,
72
+ sample_every = dict (argstr = '-s %d' ,
77
73
),
78
74
seed = dict (argstr = '--seed=%d' ,
79
75
),
@@ -90,23 +86,16 @@ def test_BEDPOSTX5_inputs():
90
86
yield assert_equal , getattr (inputs .traits ()[key ], metakey ), value
91
87
92
88
def test_BEDPOSTX5_outputs ():
93
- output_map = dict (d_stdsamples = dict (),
94
- dsamples = dict (),
95
- dyads = dict (),
96
- dyads_disp = dict (),
97
- fsamples = dict (),
89
+ output_map = dict (dyads = dict (),
90
+ dyads_dispersion = dict (),
98
91
mean_S0samples = dict (),
99
- mean_d_stdsamples = dict (),
100
92
mean_dsamples = dict (),
101
93
mean_fsamples = dict (),
102
94
mean_phsamples = dict (),
103
- mean_tausamples = dict (),
104
95
mean_thsamples = dict (),
105
96
merged_fsamples = dict (),
106
97
merged_phsamples = dict (),
107
98
merged_thsamples = dict (),
108
- phsamples = dict (),
109
- thsamples = dict (),
110
99
)
111
100
outputs = BEDPOSTX5 .output_spec ()
112
101
0 commit comments