From e0c1b985d33448789bd8c08b655032c87849b572 Mon Sep 17 00:00:00 2001 From: Tamas Gal <himself@tamasgal.com> Date: Wed, 10 Apr 2024 12:01:00 +0200 Subject: [PATCH] Fix signature of count_multiplicities --- test/hits_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hits_tests.jl b/test/hits_tests.jl index 18e08d2..2b47058 100644 --- a/test/hits_tests.jl +++ b/test/hits_tests.jl @@ -67,7 +67,7 @@ end # multiplicities sorted_hits = sort(hits, by=h->h.t) sort!(sorted_hits, by=h->h.dom_id) -mtps, mtp_ids = NeRCA.count_multiplicities(sorted_hits, 10) +mtps, mtp_ids = NeRCA.count_multiplicities(sorted_hits; tmax=10) @test (1, 1) == (mtps[1], mtp_ids[1]) @test (2, 2) == (mtps[2], mtp_ids[2]) @test (2, 2) == (mtps[3], mtp_ids[3]) -- GitLab