Skip to main content
. 2023 Feb 11;15(2):505. doi: 10.3390/v15020505
Listing 1. Query to extract the mutation list of B.1.617.2 variant.
PREFIX  ns:<https://github.com/jbakkas/SARSMutOnto/ blob /main/SARSMutOnto.owl#>
SELECT  ?mutationName ?gene
FROM  <https://raw.githubusercontent.com/jbakkas/SARSMutOnto/main/SARSMutOnto.owl>
WHERE {
  ?mutation   a   ns:SNP.
  ?lineage    a   ns:B.1.617.2.
  ?mutation    ns:has_for_lineage  ?lineage.
  ?mutation  ns:has_for_gene      ?gene .
  ?mutation   ns:mutation_name   ?mutationName
} ORDER BY DESC ( ? gene )