Skip to content

Commit

Permalink
sigfig rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
clararehmann committed Jan 23, 2025
1 parent 4730b22 commit 49fee96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion stdpopsim/qc/MusMus.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,10 @@ def QC_GammaB21():
description=id,
long_description=id,
mutation_types=[neutral, negative],
proportions=[1 - prop_nonsynonymous, prop_nonsynonymous],
proportions=[
np.around(1 - prop_nonsynonymous, 3),
np.around(prop_nonsynonymous, 3),
],
)


Expand Down

0 comments on commit 49fee96

Please sign in to comment.