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 sio: <http://semanticscience.org/resource/>
- SELECT DISTINCT
- STR(?geneName) AS ?name
- STR(?geneSymbol) AS ?symbol
- STR(?dsi) AS ?dsi
- STR(?dpi) AS ?dpi
- WHERE {
- <http://identifiers.org/ncbigene/%s> dcterms:title ?geneName;
- sio:SIO_000205 ?geneSymbolIRI;
- sio:SIO_000216 ?dsiIRI, ?dpiIRI.
- ?geneSymbolIRI dcterms:title ?geneSymbol.
- ?dsiIRI a sio:SIO_001351 ;
- sio:SIO_000300 ?dsi .
- ?dpiIRI a sio:SIO_001352 ;
- sio:SIO_000300 ?dpi}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement