Uniprot contains several human versions (disregarding entries described as fragments or ‘highly similar to’)
I will concentrate on http://www.uniprot.org/uniprot/P20807
However, Erik’s CWA servlet (http://aneurist.erasmusmc.nl/CWA/servlet/pop) tells me the UMLS identifier is umls/C3000052. I think that is used as the identifier in the CWA knowledge base, so I will continue with that.
The query
SELECT DISTINCT cwa_concept, relation, cwa_concept2
FROM
{cwa_concept} relation {cwa_concept2}
WHERE
Localname(cwa_concept)= "C3000052"
USING NAMESPACE
cwa = <http://www.nbic.nl/cwa#>,
rdf = <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
gives all relations of the UMLS term identifyer. ‘relation’ appears to be one of cwa:related, cwa:relation, rdf:instanceOf; there appears to be no further information (e.g. human readable labels) in this repository.
The SPARQL ‘amost’ equivalent (couldn’t find ‘Localname()’ equivalent: see this post):
PREFIX cwa: <http://www.nbic.nl/cwa#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?cwa_concept ?relation ?cwa_concept2
WHERE {
?cwa_concept ?relation ?cwa_concept2.
FILTER (?cwa_concept = <http://www.nbic.nl/cwa/umls/C3000052>)
}
[CHECK UMLS repository]
0 responses so far ↓
You must log in to post a comment.