Created
August 13, 2018 00:01
-
-
Save zaltoprofen/5c1fb0641c5b32ea8a7e5a8ca2ca72e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX dcterms: <http://purl.org/dc/terms/> | |
PREFIX vocab: <http://bio2rdf.org/drugbank_vocabulary:> | |
select distinct ?drug ?name ?SMILES where { | |
?drug rdf:type vocab:Small-molecule; | |
dcterms:title ?name; | |
vocab:calculated-properties ?props | |
filter regex(?name, 'profen$'). | |
?props rdf:type vocab:SMILES; | |
vocab:value ?SMILES. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment