Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
- PREFIX dcterms: <http://purl.org/dc/terms/>
- PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
- PREFIX sio: <http://semanticscience.org/resource/>
- SELECT DISTINCT
- STR(?geneID) AS ?ID
- STR(?score) AS ?score
- WHERE {
- ?gda sio:SIO_000628 ?gene, <http://linkedlifedata.com/resource/umls/id/%s>;
- sio:SIO_000216 ?scoreIRI .
- ?gene rdf:type ncit:C16612 ;
- dcterms:identifier ?geneID.
- ?scoreIRI sio:SIO_000300 ?score
- }
- ORDER BY DESC(?score)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement