sparql-examples

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

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

82_rhea_reactions_associated_with_ec_in_uniprotkb

List Rhea reactions associated with an EC (enzyme classification).

Use at

PREFIX up: <http://purl.uniprot.org/core/>

SELECT 
  ?rhea 
  ?EC 
WHERE {
  ?CatalyticActivity  up:catalyzedReaction   ?rhea ;
    up:enzymeClass         ?EC .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?CatalyticActivity")
  v3("?EC"):::projected 
  v2("?rhea"):::projected 
  v1 --"up:catalyzedReaction"-->  v2
  v1 --"up:enzymeClass"-->  v3