A set of SPARQL examples that are used in different SIB resources
Proteins with at least one annotated mutagenesis site
PREFIX : <http://nextprot.org/rdf/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
?iso :mutagenesis ?mut.
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?entry"):::projected
v2("?iso")
v3("?mut")
v1 --":isoform"--> v2
v2 --":mutagenesis"--> v3