diff --git a/examples/UniProt/uniprot_primary_accession.ttl b/examples/UniProt/uniprot_primary_accession.ttl index b60e0fc6f..a5f6b4e83 100644 --- a/examples/UniProt/uniprot_primary_accession.ttl +++ b/examples/UniProt/uniprot_primary_accession.ttl @@ -5,7 +5,7 @@ ex:uniprot_primary_accession a sh:SPARQLExecutable, sh:SPARQLSelectExecutable ; - rdfs:comment "Extracting an UniProtKB primary accession from our IRIs. Is done with a bit of string manipulation. While UniProt primary accession are unique within UniProtKB they may be reused by accident or itentionally by other data sources. If we provided them as strings (not IRI) and if you used them in a query that way, you might accidentaly retrieve completly wrong records."@en ; + rdfs:comment "Extracting an UniProtKB primary accession from our IRIs. Is done with a bit of string manipulation. While UniProt primary accession are unique within UniProtKB they may be reused by accident or itentionally by other data sources. If we provided them as strings (not IRI) and if you used them in a query that way, you might accidentaly retrieve completely wrong records."@en ; sh:prefixes _:sparql_examples_prefixes ; sh:select """PREFIX uniprotkb: PREFIX up: @@ -17,5 +17,6 @@ WHERE { ?protein a up:Protein . BIND(substr(str(?protein), strlen(str(uniprotkb:))+1) AS ?primaryAccession) }""" ; + schema:keywords "identifier" , "mapping" ; schema:target .