Skip to content

Commit

Permalink
refactor: Add 1.0 threshold to subsetting heatmap (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe authored Feb 2, 2024
1 parent ea23262 commit e051b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/make_heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def make_heatmap(file_in, file_out):
df = pd.read_table(file_in)
total_genomes = len(set(df["Query"].to_list() + df["Reference"].to_list()))
# define the thresholds to investigate
thresholds = [0.9, 0.95, 0.99, 0.999, 0.9999]
thresholds = [0.9, 0.95, 0.99, 0.999, 0.9999, 1.0]
records = []

for t in it.product(thresholds, thresholds):
Expand Down

0 comments on commit e051b27

Please sign in to comment.