@prefix ex: <https://sparql.uniprot.org/.well-known/sparql-examples/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

ex:82_rhea_reactions_associated_with_ec_in_uniprotkb a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "List <a href=\"https://www.rhea-db.org/\">Rhea</a> reactions associated with an <a href=\"https://iubmb.qmul.ac.uk/enzyme/index.html\">EC (enzyme classification)</a>."^^rdf:HTML ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>

SELECT 
  ?rhea 
  ?EC 
WHERE {
  ?CatalyticActivity  up:catalyzedReaction   ?rhea ;
    up:enzymeClass         ?EC .
}""" ;
    schema:keywords "enzyme" , "enzyme classification" , "Rhea" , "list" ;
    schema:target <https://sparql.uniprot.org/sparql/> .

