Skip to content

Commit

Permalink
fix(mi): incorrect MI% plus/minus 1 copy value in MI report histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 27, 2023
1 parent b45e230 commit b24eff8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion strkit/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.5
0.11.6
2 changes: 1 addition & 1 deletion strkit/mi/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ def calculate_histogram(self, bin_width: int = 10) -> tuple[list[dict], list]:

for i in range(len(bins)):
vsb = vals_strict_by_bin[i]
vpm1b = vals_strict_by_bin[i]
vpm1b = vals_pm1_by_bin[i]
v95b = vals_95_ci_by_bin[i] if vals_95_ci_by_bin else None
v99b = vals_99_ci_by_bin[i] if vals_95_ci_by_bin else None

Expand Down

0 comments on commit b24eff8

Please sign in to comment.