Skip to content

Commit dde825d

Browse files
committed
Merge branch '698-move-karyotype' of github.com:malariagen/malariagen-data-python into 698-move-karyotype
2 parents ef121d1 + a40b5f2 commit dde825d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/label_issues.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Label issues
2+
on:
3+
issues:
4+
types:
5+
- reopened
6+
- opened
7+
jobs:
8+
label_issues:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
14+
env:
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GH_REPO: ${{ github.repository }}
17+
NUMBER: ${{ github.event.issue.number }}
18+
LABELS: triage

malariagen_data/anoph/distance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ def plot_njt(
421421
height: plotly_params.fig_height = 600,
422422
show: plotly_params.show = True,
423423
renderer: plotly_params.renderer = None,
424-
render_mode: plotly_params.render_mode = "auto",
424+
render_mode: plotly_params.render_mode = "svg",
425425
title: plotly_params.title = True,
426426
title_font_size: plotly_params.title_font_size = 14,
427427
line_width: plotly_params.line_width = 0.5,

0 commit comments

Comments
 (0)