This function maps lineage name to snps and to taxon names. Everything is GISAID-specific.

cov_glue_snp_lineage()

Value

a data.frame

Examples

res = cov_glue_snp_lineage()
res
#> # A tibble: 14,793 × 3
#>    lineage snp     taxon                      
#>    <chr>   <chr>   <chr>                      
#>  1 A       29301AT Beijing/233/2020           
#>  2 A       1691AG  India/1-31/2020            
#>  3 A       16877CT India/1-31/2020            
#>  4 A       24351CT India/1-31/2020            
#>  5 A       24990CT Australia/QLD02/2020       
#>  6 A       25587CT Australia/QLD02/2020       
#>  7 A       2875GA  Beijing/Wuhan_IME-BJ04/2020
#>  8 A       11937GA Beijing/Wuhan_IME-BJ01/2020
#>  9 A       2445CT  Australia/NSW04/2020       
#> 10 A       20367TC Australia/NSW04/2020       
#> # … with 14,783 more rows
colnames(res)
#> [1] "lineage" "snp"     "taxon"  
dplyr::glimpse(res)
#> Rows: 14,793
#> Columns: 3
#> $ lineage <chr> "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A…
#> $ snp     <chr> "29301AT", "1691AG", "16877CT", "24351CT", "24990CT", "25587CT…
#> $ taxon   <chr> "Beijing/233/2020", "India/1-31/2020", "India/1-31/2020", "Ind…