A set of SPARQL examples that are used in different SIB resources
Proteins associated with diseases that are associated with cardiovascular aspects
PREFIX : <http://nextprot.org/rdf/>
PREFIX nextprot_cv: <http://nextprot.org/rdf/terminology/>
SELECT DISTINCT ?entry WHERE {
?entry :isoform /:medical / :term /:related / :childOf nextprot_cv:D002318.
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?entry"):::projected
a1((" "))
a2((" "))
a3((" "))
a4((" "))
c6([":terminology/D002318"]):::iri
v1 --":isoform"--> a1
a1 --":medical"--> a2
a2 --":term"--> a3
a3 --":related"--> a4
a4 --":childOf"--> c6