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 @@ -7,6 +7,8 @@ def test_ACompCor_inputs():
7
7
input_map = dict (components_file = dict (usedefault = True ,
8
8
),
9
9
header_prefix = dict (),
10
+ high_pass_filter = dict (usedefault = True ,
11
+ ),
10
12
ignore_exception = dict (nohash = True ,
11
13
usedefault = True ,
12
14
),
@@ -23,6 +25,9 @@ def test_ACompCor_inputs():
23
25
),
24
26
regress_poly_degree = dict (usedefault = True ,
25
27
),
28
+ repetition_time = dict (),
29
+ save_hpf_basis = dict (requires = ['high_pass_filter' ],
30
+ ),
26
31
use_regress_poly = dict (usedefault = True ,
27
32
),
28
33
)
@@ -35,6 +40,7 @@ def test_ACompCor_inputs():
35
40
36
41
def test_ACompCor_outputs ():
37
42
output_map = dict (components_file = dict (),
43
+ hpf_basis_file = dict (),
38
44
)
39
45
outputs = ACompCor .output_spec ()
40
46
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ def test_TCompCor_inputs():
7
7
input_map = dict (components_file = dict (usedefault = True ,
8
8
),
9
9
header_prefix = dict (),
10
+ high_pass_filter = dict (usedefault = True ,
11
+ ),
10
12
ignore_exception = dict (nohash = True ,
11
13
usedefault = True ,
12
14
),
@@ -25,6 +27,9 @@ def test_TCompCor_inputs():
25
27
),
26
28
regress_poly_degree = dict (usedefault = True ,
27
29
),
30
+ repetition_time = dict (),
31
+ save_hpf_basis = dict (requires = ['high_pass_filter' ],
32
+ ),
28
33
use_regress_poly = dict (usedefault = True ,
29
34
),
30
35
)
@@ -38,6 +43,7 @@ def test_TCompCor_inputs():
38
43
def test_TCompCor_outputs ():
39
44
output_map = dict (components_file = dict (),
40
45
high_variance_masks = dict (),
46
+ hpf_basis_file = dict (),
41
47
)
42
48
outputs = TCompCor .output_spec ()
43
49
You can’t perform that action at this time.
0 commit comments