We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 147329a + 67c23e6 commit 6d711b7Copy full SHA for 6d711b7
1 file changed
malariagen_data/anoph/fst.py
@@ -235,7 +235,7 @@ def plot_fst_gwss_track(
235
height=height,
236
toolbar_location="above",
237
x_range=x_range,
238
- y_range=(0, 1),
+ y_range=(clip_min, 1),
239
output_backend=output_backend,
240
)
241
@@ -252,7 +252,7 @@ def plot_fst_gwss_track(
252
253
# tidy up the plot
254
fig.yaxis.axis_label = "Fst"
255
- fig.yaxis.ticker = [0, 1]
+ fig.yaxis.ticker = sorted(set([clip_min, 0, 1]))
256
self._bokeh_style_genome_xaxis(fig, contig)
257
258
if show: # pragma: no cover
0 commit comments