(T, m)
| 158 | |
| 159 | @pytest.mark.parametrize("T, m", test_data) |
| 160 | def test_subspace(T, m): |
| 161 | motif_idx = 1 |
| 162 | nn_idx = 4 |
| 163 | |
| 164 | for k in range(T.shape[0]): |
| 165 | ref_S = naive.subspace(T, m, motif_idx, nn_idx, k) |
| 166 | comp_S = subspace(T, m, motif_idx, nn_idx, k) |
| 167 | npt.assert_almost_equal(ref_S, comp_S) |
| 168 | |
| 169 | |
| 170 | @pytest.mark.parametrize("T, m", test_data) |
nothing calls this directly
no test coverage detected