@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:14 a sh:SPARQLConstructExecutable,
        sh:SPARQLExecutable ;
    rdfs:comment "Construct new triples of the type 'HumanProtein' from all human UniProtKB entries"@en ;
    sh:construct """PREFIX taxon: <http://purl.uniprot.org/taxonomy/>
PREFIX up: <http://purl.uniprot.org/core/>

CONSTRUCT
{
	?protein a up:HumanProtein .
}
WHERE
{
	?protein a up:Protein .
	?protein up:organism taxon:9606
}""" ;
    sh:prefixes _:sparql_examples_prefixes ;
    schema:keywords "triples" ;
    schema:target <https://sparql.uniprot.org/sparql/> .

