Skip to content

Commit c9a25d7

Browse files
committed
Fix bug where mutation and recombination rates input to _tskit.LsHmm are flipped
1 parent e160880 commit c9a25d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/tests/beagle_numba.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ def run_tsimpute(ref_ts, query_h, pos, mu, rho, precision=22, genetic_map=None):
410410
bm = _tskit.CompressedMatrix(ref_ts_genotyped._ll_tree_sequence)
411411
ls_hmm = _tskit.LsHmm(
412412
ref_ts_genotyped._ll_tree_sequence,
413-
mu,
414413
rho,
414+
mu,
415415
acgt_alleles=True,
416416
precision=precision,
417417
)

0 commit comments

Comments
 (0)