(T, m)
| 353 | |
| 354 | @pytest.mark.parametrize("T, m", test_data) |
| 355 | def test_motifs(T, m): |
| 356 | if T.ndim > 1: |
| 357 | T = T.copy() |
| 358 | T = T[0] |
| 359 | |
| 360 | mp = aamp(T, m) |
| 361 | ref = aamp_motifs(T, mp[:, 0]) |
| 362 | comp = motifs(T, mp[:, 0], normalize=False) |
| 363 | npt.assert_almost_equal(ref, comp) |
| 364 | |
| 365 | |
| 366 | @pytest.mark.parametrize("T, m", test_data) |
nothing calls this directly
no test coverage detected