| 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. } |