A set of SPARQL examples that are used in different SIB resources
Proteins that are annotated with GO "F" (function) terms prefixed by "Not"
PREFIX : <http://nextprot.org/rdf/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform ?iso.
?iso :goMolecularFunction ?statement.
?statement :negativeEvidence ?ev.
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?entry"):::projected
v4("?ev")
v2("?iso")
v3("?statement")
v1 --":isoform"--> v2
v2 --":goMolecularFunction"--> v3
v3 --":negativeEvidence"--> v4