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

ex:104_uniprot_recomended_protein_full_name a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "The recommended protein full names for UniProtKB entries"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>

SELECT ?protein
  ?fullName
WHERE {
  ?protein a up:Protein ;
           up:recommendedName ?recommendedName .
  ?recommendedName up:fullName ?fullName .
}""" ;
    schema:keywords "protein name" ; 
    schema:target <https://sparql.uniprot.org/sparql/> .

