sparql-examples

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

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

83_rhea_reactions_not_associated_with_ec_in_uniprotkb

rq turtle/ttl

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

Use at

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

SELECT 
  ?rhea 
  ?EC 
WHERE {
  ?CatalyticActivity up:catalyzedReaction ?rhea .
  MINUS {
    ?CatalyticActivity up:enzymeClass ?EC .
  }
}
MINUS
up:catalyzedReaction
up:enzymeClass
?EC
?CatalyticActivity
?rhea