sparql-examples

A set of SPARQL examples that are used in different SIB resources

View the Project on GitHub sib-swiss/sparql-examples

neXtProt/NXQ_00007

Proteins associated with diseases that are associated with cardiovascular aspects

Use at

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