Skip to content

Commit

Permalink
Generalize refs to lineages in interface (#199)
Browse files Browse the repository at this point in the history
* Also replace one ref to strains with lineages
  • Loading branch information
ivansg44 authored Apr 30, 2024
1 parent 25e3a81 commit 4218fba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generators/heatmap_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_heatmap_row(data):
# Space for voc and voi legend
dbc.Row(
dbc.Col(
"Variants",
"Sample groups",
className="text-right h5",
style={"padding-top": 105, "padding-right": 15}
),
Expand Down
2 changes: 1 addition & 1 deletion generators/legend_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_axes_description():
html.B("bold"),
", and VOI are in ",
html.I("italics"),
". Actively circulating strains are denoted with ⚠️."
". Actively circulating lineages are denoted with ⚠️."
]),
dbc.Col([
html.B("Top axis: "),
Expand Down
4 changes: 2 additions & 2 deletions generators/toolbar_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_select_lineages_toolbar_btn():
for selecting lineages.
:rtype: dbc.Button
"""
return dbc.Button("Select lineages",
return dbc.Button("Select groups",
id="open-select-lineages-modal-btn",
className="mr-2")

Expand All @@ -97,7 +97,7 @@ def get_select_lineages_modal():
:rtype: dbc.Modal
"""
return dbc.Modal([
dbc.ModalHeader("Select lineages"),
dbc.ModalHeader("Select sample groups"),
# Empty at launch; populated when user opens modal
dbc.ModalBody(None,
id="select-lineages-modal-body",
Expand Down

0 comments on commit 4218fba

Please sign in to comment.