From 0de5c6d00bb92f0e69e69888d447e8d7b7efc738 Mon Sep 17 00:00:00 2001 From: mcblatter Date: Wed, 30 Oct 2024 09:45:25 +0100 Subject: [PATCH] Update uniprot_primary_accession.ttl modify description add kw --- examples/UniProt/uniprot_primary_accession.ttl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 .