Skip to content

Commit cdbf335

Browse files
author
Wouter Beek
committed
ADDED: Linkset.
1 parent ee84fdb commit cdbf335

1 file changed

Lines changed: 91 additions & 0 deletions

File tree

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
@prefix : <http://guidelines.data2semantics.org/data/> .
2+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
3+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
5+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
6+
@base <http://guidelines.data2semantics.org/data/> .
7+
@prefix drug: <http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/drugs/> .
8+
@prefix drugcategory: <http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugcategory/>.
9+
@prefix drugbank: <http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/drugbank/> .
10+
@prefix dbpedia: <http://dbpedia.org/resource/>.
11+
12+
##########
13+
# Linking drugbank drugs and categories with tmr drug types
14+
##########
15+
16+
:DrugTAspirin owl:sameAs drug:DB00945 ;
17+
owl:sameAs dbpedia:Aspirin;
18+
tmr:pubchemCID "2244"^^xsd:string ;
19+
#tmr:pubchemURL <http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=2244>
20+
tmr:umlsCode "C0004057"^^xsd:string .
21+
#tmr:hasATCCode "B01AC04"^^xsd:string ; ????????
22+
23+
24+
:DrugTClopidogrel owl:sameAs drug:DB00758 ;
25+
owl:sameAs dbpedia:Clopidogrel;
26+
tmr:pubchemCID "60606"^^xsd:string ;
27+
#tmr:pubchemURL <http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=60606>
28+
tmr:umlsCode "C0070166"^^xsd:string .
29+
#tmr:hasATCCode "B01AC04"^^xsd:string .
30+
31+
:DrugTDipyridamole owl:sameAs drug:DB00975 ;
32+
owl:sameAs dbpedia:Dipyridamole ;
33+
tmr:pubchemCID "3108"^^xsd:string ;
34+
#tmr:pubchemURL <http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=3108>
35+
tmr:umlsCode "C0012582"^^xsd:string .
36+
37+
:DrugTTramadol owl:sameAs drug:DB00193 ;
38+
owl:sameAs dbpedia:Tramadol ;
39+
tmr:pubchemCID "33741"^^xsd:string ;
40+
tmr:umlsCode "C0040610"^^xsd:string .
41+
42+
:DrugTIbuprofen owl:sameAs drug:DB01050 ;
43+
owl:sameAs dbpedia:Ibuprofen ;
44+
tmr:pubchemCID "3672"^^xsd:string ;
45+
tmr:umlsCode "C0020740"^^xsd:string .
46+
47+
:DrugCatThiazide owl:sameAs drugcategory:diuretics,Thiazide ;
48+
owl:sameAs dbpedia:Thiazide ;
49+
tmr:UMLSCode "C0541746"^^xsd:string .
50+
tmr:umlsCode "99222756"^^xsd:string .
51+
52+
:DrugCatPPI owl:sameAs drugcategory:proton-pumpInhibitors ;
53+
owl:sameAs dbpedia:Proton-pump_inhibitor ;
54+
tmr:umlsCode "C0358591"^^xsd:string .
55+
#tmr:pubchemSID "???"^^xsd:string .
56+
#tmr:atcCode "A02BC"^^xsd:string ;
57+
#tmr:meshCode "D054328"^^xsd:string .
58+
59+
60+
:DrugCatAntiBacterialAgent owl:sameAs drugcategory:anti-bacterialAgents ;
61+
owl:sameAs dbpedia:Bactericide ;
62+
tmr:umlsCode "C0004635"^^xsd:string ;
63+
tmr:pubchemSID "81065603"^^xsd:string .
64+
65+
66+
:DrugCatPlateletAggregationInhibitor owl:sameAs drugcategory:PlateletAggregationInhibitors ;
67+
owl:sameAs dbpedia:Antiplatelet_drug ;
68+
tmr:umlsCode "C0032177"^^xsd:string ;
69+
tmr:pubchemSID "134222865"^^xsd:string .
70+
71+
72+
:DrugCatAnalgesic owl:sameAs drugcategory:analgesics ;
73+
owl:sameAs dbpedia:Analgesic ;
74+
tmr:umlsCode "C0002771"^^xsd:string ;
75+
tmr:pubchemSID "131269065"^^xsd:string .
76+
77+
78+
:DrugCatAntiHypertensiveAgent owl:sameAs drugcategory:antihypertensiveAgents .
79+
owl:sameAs dbpedia:Antihypertensive_drug ;
80+
tmr:umlsCode "C0003364"^^xsd:string ;
81+
tmr:pubchemSID "81065608"^^xsd:string .
82+
83+
#####
84+
#check the availability of such data in drubank file
85+
#####
86+
87+
drug:DB01240 drugbank:drugCategory drugcategory:PlateletAggregationInhibitors .
88+
89+
# Fake, for test
90+
drug:DB01241 drugbank:drugCategory drugcategory:PlateletAggregationInhibitors .
91+

0 commit comments

Comments
 (0)