Skip to content

Commit

Permalink
rebase for vaf lags
Browse files Browse the repository at this point in the history
  • Loading branch information
harveydevereux committed Nov 4, 2024
1 parent 3a97ce6 commit dc017d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_correlator.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def test_vaf(tmp_path):
vaf = safe_load(cor)
vaf_na = np.array(vaf["vaf_Na"]["value"])
vaf_cl = np.array(vaf["vaf_Cl"]["value"])
assert vaf_na * 3 == approx(vaf_post[0], rel=1e-5)
assert vaf_cl * 3 == approx(vaf_post[1], rel=1e-5)
assert vaf_na * 3 == approx(vaf_post[1][0], rel=1e-5)
assert vaf_cl * 3 == approx(vaf_post[1][1], rel=1e-5)


def test_md_correlations(tmp_path):
Expand Down

0 comments on commit dc017d5

Please sign in to comment.