A set of SPARQL examples that are used in different SIB resources
List Rhea reactions that are not associated with an EC (enzyme classification).
PREFIX up: <http://purl.uniprot.org/core/>
SELECT
?rhea
?EC
WHERE {
?CatalyticActivity up:catalyzedReaction ?rhea .
MINUS {
?CatalyticActivity up:enzymeClass ?EC .
}
}