Skip to content

Commit

Permalink
Update H3N2 titer references
Browse files Browse the repository at this point in the history
  • Loading branch information
huddlej committed Dec 14, 2023
1 parent 9a77301 commit d038d68
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
50 changes: 24 additions & 26 deletions config/references_for_titer_plots_h3n2.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
A/Darwin/6/2021
A/Michigan/60/2022
A/SouthAustralia/1/2023
A/Poland/97/2022
A/Norway/24873/2021
A/Hyogo/3001/2022
A/Massachusetts/18/2022
A/Shimane/1/2022
A/Thailand/8/2022
A/Perth/186/2022
A/Florida/57/2022
A/SouthAfrica/R08120/2022
A/Thuringen/10/2022
A/Darwin/2475/2022
A/Victoria/164/2023
A/Montana/8/2023
A/SouthAustralia/389/2022
A/SouthAustralia/380/2022
A/Kanagawa/ZC2201/2022
A/Darwin/9/2021-egg
A/Darwin/6/2021-egg
A/Victoria/39/2022-egg
A/Canberra/1/2022-egg
A/Norway/24873/2021-egg
A/Thailand/8/2022-egg
A/Albania/289813/2022-egg
A/Massachusetts/18/2022 # H
A/Hyogo/3001/2022 # H
A/Shimane/1/2022 # H
A/Thailand/8/2022 # H for HI
A/NewYork/66/2022 # H:122D
A/SouthAustralia/48/2023 # H:122D
A/Albania/289813/2022 # H:91N,122D for HI
A/Darwin/6/2021 # G.1:53G
A/Michigan/60/2022 # G.1.1.2
A/SouthAustralia/1/2023 # G.1.1.2 for HI
A/Poland/97/2022 # G.1.2:4S,25V,145N for HI
A/Florida/57/2022 # G.2
A/Montana/8/2023 # G.2.1
A/SouthAustralia/389/2022 # G.2.1 for HI
A/SouthAustralia/380/2022 # G.2.2 for HI
A/Kanagawa/ZC2201/2022 # G.2.2
A/California/122/2022-egg # H
A/Thailand/8/2022-egg # H
A/California/122/2022-egg # H for HI
A/Brandenburg/15/2022-egg # H for HI
A/Albania/289813/2022-egg # H:91N,122D for HI
A/Darwin/9/2021-egg # G.1
A/SouthAustralia/389/2022-egg # G.2.1
A/Darwin/6/2021-egg # G.1:53G
2 changes: 1 addition & 1 deletion config/subclades_for_titer_plots_h3n2.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
H
G.1.1.2
G.1.3.1
H
G.1.3.2
G.2
G.2.1
Expand Down
6 changes: 5 additions & 1 deletion scripts/plot_antigenic_distances_between_strains.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,11 @@
left = xticks[0]
right = xticks[-1]
width = right - left
height = yticks[1] - yticks[0]

if len(yticks) > 1:
height = yticks[1] - yticks[0]
else:
height = 1

# create bars at yticks that are the length of our greatest xtick and have a height equal to our tick spacing
ax.barh(
Expand Down

0 comments on commit d038d68

Please sign in to comment.