Skip to content

Commit 226fc8a

Browse files
committed
make specs
1 parent aed10c8 commit 226fc8a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

nipype/algorithms/tests/test_auto_ACompCor.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ def test_ACompCor_inputs():
77
input_map = dict(components_file=dict(usedefault=True,
88
),
99
header_prefix=dict(),
10+
high_pass_filter=dict(usedefault=True,
11+
),
1012
ignore_exception=dict(nohash=True,
1113
usedefault=True,
1214
),
@@ -23,6 +25,9 @@ def test_ACompCor_inputs():
2325
),
2426
regress_poly_degree=dict(usedefault=True,
2527
),
28+
repetition_time=dict(),
29+
save_hpf_basis=dict(requires=['high_pass_filter'],
30+
),
2631
use_regress_poly=dict(usedefault=True,
2732
),
2833
)
@@ -35,6 +40,7 @@ def test_ACompCor_inputs():
3540

3641
def test_ACompCor_outputs():
3742
output_map = dict(components_file=dict(),
43+
hpf_basis_file=dict(),
3844
)
3945
outputs = ACompCor.output_spec()
4046

nipype/algorithms/tests/test_auto_TCompCor.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ def test_TCompCor_inputs():
77
input_map = dict(components_file=dict(usedefault=True,
88
),
99
header_prefix=dict(),
10+
high_pass_filter=dict(usedefault=True,
11+
),
1012
ignore_exception=dict(nohash=True,
1113
usedefault=True,
1214
),
@@ -25,6 +27,9 @@ def test_TCompCor_inputs():
2527
),
2628
regress_poly_degree=dict(usedefault=True,
2729
),
30+
repetition_time=dict(),
31+
save_hpf_basis=dict(requires=['high_pass_filter'],
32+
),
2833
use_regress_poly=dict(usedefault=True,
2934
),
3035
)
@@ -38,6 +43,7 @@ def test_TCompCor_inputs():
3843
def test_TCompCor_outputs():
3944
output_map = dict(components_file=dict(),
4045
high_variance_masks=dict(),
46+
hpf_basis_file=dict(),
4147
)
4248
outputs = TCompCor.output_spec()
4349

0 commit comments

Comments
 (0)