Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/metaDMG/viz/viz_utils.py
Original file line number Diff line number Diff line change
@@ -250,7 +250,12 @@ def get_range_slider_keywords(viz_results, column="N_reads", N_steps=100):
marks[marks_steps[0]] = {"label": no_min, "style": {"color": "#a3ada9"}}
marks[marks_steps[-1]] = {"label": no_max, "style": {"color": "#a3ada9"}}

elif column in ["D_max", "q", "A", "c"]:
elif column in ["D_max", "q", "A", "c"] or column in [
"Bayesian_D_max",
"Bayesian_q",
"Bayesian_A",
"Bayesian_c",
]:
range_min = 0.0
range_max = 1.0
marks = {

0 comments on commit f105fcf

Please sign in to comment.