Skip to main content
. 2023 Feb 11;15(2):505. doi: 10.3390/v15020505
Listing 3. Query to extract the list of all mutations occurring in the spike (S) protein.
PREFIX  owl:<http://www.w3.org/2002/07/owl#>
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.
  ?mutation  a            owl:NamedIndividual.
  ?mutation  ns:has_for_gene    ns:S.
  ?mutation  ns:mutation_name   ?mutationName.
}