Skip to content

Commit

Permalink
Merge pull request jeromekelleher#340 from szhan/update_lineage_details
Browse files Browse the repository at this point in the history
Add LineageDetail for Beta and Gamma
  • Loading branch information
jeromekelleher authored Oct 7, 2024
2 parents 6051725 + 65e5485 commit 56c98c3
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion sc2ts/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ class LineageDetails:
Details about major known lineages that we can use for QC purposes.
https://github.com/jeromekelleher/sc2ts/issues/290
The month and year of the first detected sample are taken from
https://www.ecdc.europa.eu/en/covid-19/variants-concern
"""

pango_lineage: str
Expand All @@ -46,6 +49,13 @@ class LineageDetails:
"2020-09",
["C5388A", "C3267T"],
),
LineageDetails(
"B.1.351",
"20H",
"Beta",
"2020-09",
None, # TODO: From which source?
),
LineageDetails(
"B.1.617.2",
"21A",
Expand All @@ -59,6 +69,13 @@ class LineageDetails:
"C27752T",
],
),
LineageDetails(
"P.1",
"20J",
"Gamma",
"2020-12",
None, # TODO: From which source?
),
LineageDetails(
"BA.1",
"21K",
Expand Down Expand Up @@ -114,7 +131,6 @@ class LineageDetails:
["T27383A", "C27382G"],
),
]
# 20J , P.1 , Gamma , voc , 2020-09-11


def tally_lineages(ts, metadata_db, show_progress=False):
Expand Down

0 comments on commit 56c98c3

Please sign in to comment.