-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathchebi-slim.owl
8630 lines (5485 loc) · 390 KB
/
chebi-slim.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.enanomapper.net/onto/external/chebi-slim.owl#"
xml:base="http://purl.enanomapper.net/onto/external/chebi-slim.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:pav="http://purl.org/pav/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:chebi="http://purl.obolibrary.org/obo/chebi#"
xmlns:ncicp="http://ncicb.nci.nih.gov/xml/owl/EVS/ComplexProperties.xsd#"
xmlns:chebi1="http://purl.obolibrary.org/obo/chebi#1"
xmlns:chebi2="http://purl.obolibrary.org/obo/chebi#3"
xmlns:chebi3="http://purl.obolibrary.org/obo/chebi#2"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.enanomapper.net/onto/external/chebi-slim.owl">
<pav:importedFrom>http://ftp.ebi.ac.uk/pub/databases/chebi/ontology/chebi_lite.obo</pav:importedFrom>
<oboInOwl:auto-generated-by>Slimmer</oboInOwl:auto-generated-by>
<oboInOwl:date>2025-02-01 01:53:02</oboInOwl:date>
<oboInOwl:date>27:12:2024 19:37</oboInOwl:date>
<oboInOwl:default-namespace>chebi_ontology</oboInOwl:default-namespace>
<oboInOwl:hasOBOFormatVersion>1.2</oboInOwl:hasOBOFormatVersion>
<oboInOwl:saved-by>chebi</oboInOwl:saved-by>
<rdfs:comment>Author: ChEBI curation team</rdfs:comment>
<rdfs:comment>ChEBI Release version 239</rdfs:comment>
<rdfs:comment>ChEBI subsumes and replaces the Chemical Ontology first</rdfs:comment>
<rdfs:comment>For any queries contact [email protected]</rdfs:comment>
<rdfs:comment>developed by Michael Ashburner & Pankaj Jaiswal.</rdfs:comment>
<owl:versionInfo>This SLIM file was generated automatically by the eNanoMapper Slimmer software library. For more information see http://github.com/enanomapper/slimmer.</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#BRAND_NAME -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#BRAND_NAME">
<rdfs:label>BRAND NAME</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#INN -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#INN">
<rdfs:label>INN</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#IUPAC_NAME -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#IUPAC_NAME">
<rdfs:label>IUPAC NAME</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#1_STAR -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#1_STAR">
<rdfs:comment>Preliminary entries</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#2_STAR -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#2_STAR">
<rdfs:comment>Annotated by 3rd party</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi#3_STAR -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi#3_STAR">
<rdfs:comment>Manually annotated by ChEBI Team</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.org/pav/importedFrom -->
<owl:AnnotationProperty rdf:about="http://purl.org/pav/importedFrom"/>
<!-- http://www.geneontology.org/formats/oboInOwl#SubsetProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SubsetProperty">
<rdfs:label>subset_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty">
<rdfs:label>synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#auto-generated-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#auto-generated-by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#default-namespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#default-namespace"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label>has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label>database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label>has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label>in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#is_cyclic -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#is_cyclic"/>
<!-- http://www.geneontology.org/formats/oboInOwl#is_transitive -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#is_transitive"/>
<!-- http://www.geneontology.org/formats/oboInOwl#saved-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#saved-by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#shorthand -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#shorthand">
<rdfs:label>shorthand</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://livercancer.imbi.uni-heidelberg.de/ccont#CCONT_0000047 -->
<owl:Class rdf:about="http://livercancer.imbi.uni-heidelberg.de/ccont#CCONT_0000047"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1541 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1541"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1544 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1544"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1892 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1892"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1893 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1893"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_707 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_707"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_729 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_729"/>
<!-- http://purl.enanomapper.org/onto/ENM_9000014 -->
<owl:Class rdf:about="http://purl.enanomapper.org/onto/ENM_9000014"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000016"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<!-- http://purl.obolibrary.org/obo/CHEBI_131795 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_131795">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51065"/>
<obo:IAO_0000115>A dopamine agonist that binds to and activates the dopamine receptor D1.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:131795</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>dopamine receptor D1 agonist</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_131895 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_131895">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_52855"/>
<obo:IAO_0000115>An inorganic nanoparticle consisting of cobalt cations and phosphide(3-) anions. Depending on the method of preparation, the formula can vary from CoP through Co3P2 to Co2P.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:131895</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>cobalt phosphide nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_131897 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_131897">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_52855"/>
<obo:IAO_0000115>A nanoparticle consisting of tungsten atoms.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:131897</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>tungsten nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_131898 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_131898">
<rdfs:subClassOf rdf:resource="http://purl.bioontology.org/ontology/npo#NPO_1893"/>
<obo:IAO_0000115>A bimetallic nanoparticle consisting of platinum and copper atoms.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:131898</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>platinum copper nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_132272 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_132272">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33286"/>
<obo:IAO_0000115>A compound used with herbicides that reduces the effect of the herbicide on crop plants or otherwise improves the selectivity of the herbicide for weed species over the crop plant.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:132272</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>herbicide safener</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_132717 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_132717">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33893"/>
<obo:IAO_0000115>A reagent that lightens or whitens a substrate through chemical reaction. Bleaching reactions usually involve oxidative or reductive processes that degrade colour systems. Bleaching can occur by destroying one or more of the double bonds in the conjugated chain, by cleaving the conjugated chain, or by oxidation of one of the other moieties in the conjugated chain. Their reactivity results in many bleaches having strong bactericidal, disinfecting, and sterilising properties.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:132717</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>bleaching agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_132889 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_132889">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A single carbon layer of the graphite oxide structure.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:132889</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#2_STAR"/>
<rdfs:label>graphene oxide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_132992 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_132992">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23888"/>
<obo:IAO_0000115>A drug that makes increases the sensitivity of tumour cells to radiation therapy.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:132992</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>radiosensitizing agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133326 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133326">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A metal sulfate with formula BaO4S. Virtually insoluble in water at room temperature, it is mostly used as a component in oil well drilling fluid it occurs naturally as the mineral barite.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133326</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>barium sulfate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133333 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133333">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A mixed metal oxide with formula Fe2NiO4.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133333</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>nickel ferrite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133337 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133337">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A mixed metal oxide with formula Fe2O4Zn.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133337</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>zinc ferrite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133349 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133349">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_18246"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A (1->4)-beta-D-glucan consisting of elementary cellulose fibrils or their bundles, whose diameter lies typically in the range of 20-40 nm, but may be as small as 3-10 nm. The fibrils can exceed 1 mum in length.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133349</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>nanofibrillar cellulose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133352 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133352">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_59999"/>
<obo:IAO_0000115>The non-crystalline allotrope of elemental silicon. It is used as semiconductor material in thin-film transistors.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133352</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>amorphous silicon</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133354 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133354">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_48730"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_59999"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60004"/>
<obo:IAO_0000115>An aluminosilicate mineral consisting mostly of montmorillonite. The different types of bentonite (aluminium bentonite; calcium bentonite; potassium bentonite; sodium bentonite) are named after their dominant element.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133354</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>bentonite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_133602 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_133602">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_82297"/>
<obo:IAO_0000115>Any form of carbon black which has a particle size of less than 100 nm in each dimension.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:133602</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>carbon black nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134173 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134173">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50247"/>
<obo:IAO_0000115>A role borne by a molecule that acts to counteract or neutralise the deleterious effects of barbiturates.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134173</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>antidote to barbiturate poisoning</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134402 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134402">
<rdfs:subClassOf rdf:resource="http://purl.bioontology.org/ontology/npo#NPO_1544"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_52855"/>
<obo:IAO_0000115>An inorganic nanoparticle consisting of copper(II) oxide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134402</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>cuprous oxide nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134403 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134403">
<rdfs:subClassOf rdf:resource="http://purl.enanomapper.org/onto/ENM_9000014"/>
<obo:IAO_0000115>A nanoparticle composed of poly(styrene).</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134403</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>poly(styrene) nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134404 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134404">
<rdfs:subClassOf rdf:resource="http://purl.enanomapper.org/onto/ENM_9000014"/>
<obo:IAO_0000115>A nanoparticle composed of graphene.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134404</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>graphene nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134440 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134440">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134441"/>
<obo:IAO_0000115>A nanoparticle consisting of titanium(III) oxide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134440</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>titanium(III) oxide nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_134441 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_134441">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_52855"/>
<obo:IAO_0000115>A nanoparticle composed of any titanium oxide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:134441</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>titanium oxide nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136643 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136643">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136859"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25944"/>
<obo:IAO_0000115>A prodrug that, on administration, undergoes chemical conversion by biochemical (enzymatic), chemical (possibly following an enzymatic step), or physical (e.g. photochemical) activation processes before becoming the pharmacologically active pesticide for which it is a propesticide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136643</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>propesticide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136644 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136644">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24852"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by metabolic processes before becoming the pharmacologically active insecticide for which it is a proinsecticide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136644</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>proinsecticide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136645 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136645">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24127"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by metabolic processes before becoming the pharmacologically active fungicide for which it is a profungicide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136645</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>profungicide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136646 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136646">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24527"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by biochemical (enzymatic), chemical (possibly following an enzymatic step), or physical (e.g. photochemical) activation processes before becoming the pharmacologically active herbicide for which it is a proherbicide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136646</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>proherbicide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136647 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136647">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22153"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by metabolic processes before becoming the pharmacologically active insecticide for which it is a proacaricide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136647</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>proacaricide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136648 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136648">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_132272"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by biochemical (enzymatic), chemical (possibly following an enzymatic step), or physical (e.g. photochemical) activation processes before becoming the pharmacologically active herbicide savener for which it is a prosafener.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136648</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>prosafener</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136859 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136859">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33232"/>
<obo:IAO_0000115>A compound that, on administration, undergoes conversion by biochemical (enzymatic), chemical (possibly following an enzymatic step), or physical (e.g. photochemical) activation processes before becoming the active agent for which it is a pro-agent.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136859</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>pro-agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_136860 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_136860">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50247"/>
<obo:IAO_0000115>A role borne by a molecule that acts to counteract or neutralise the nerve agent sarin.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:136860</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>antidote to sarin poisoning</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_137431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_137431">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35554"/>
<obo:IAO_0000115>A cardiovascular drug that tends to raise reduced blood pressure.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:137431</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>antihypotensive agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_137736 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_137736">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35471"/>
<obo:IAO_0000115>Any psychotropic drug that induces anxiety or panic.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:137736</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>anxiogenic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_138015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_138015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51061"/>
<obo:IAO_0000115>Any compound that can disrupt the functions of the endocrine (hormone) system</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:138015</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>endocrine disruptor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_138416 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_138416">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51060"/>
<obo:IAO_0000115>A hormone antagonist that acts at angiotensin receptors.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:138416</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>angiotensin receptor agonist</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_138675 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_138675">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000115>Any main group molecular entity that is gaseous at standard temperature and pressure (STP; 0degreeC and 100 kPa).</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:138675</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>gas molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_139246 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_139246">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50406"/>
<obo:IAO_0000115>A probe that is a small labelled and chemical active peptide which has been structurally modified for reacting with, for example, the beta-lactam moieties of various penicillin-type compounds.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:139246</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>peptide probe</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_139547 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_139547">
<rdfs:subClassOf rdf:resource="http://purl.bioontology.org/ontology/npo#NPO_729"/>
<obo:IAO_0000115>An iron oxide nanoparticle consisting of a magnetic iron oxide core (usually magnetite, Fe3O4, or maghemite, gamma-Fe2O3). They may be coated with a biocompatible polymer or precipitated within the pores of a porous biocompatible polymer, which can be attached to cytotoxic drugs or antibodies. These can be targeted to the required area using external magnets; after the external magnetic field is removed, the particles no longer show magnetic interaction.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:139547</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>superparamagnetic iron oxide nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_139552 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_139552">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_139547"/>
<obo:IAO_0000115>A superparamagnetic iron oxide nanoparticle consisting of maghemite, Fe2O3.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:139552</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>maghemite nanoparticle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_140399 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_140399">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_67079"/>
<obo:IAO_0000115>A class of cell signaling molecules enzymatically derived from n-3 long chain polyunsaturated fatty acids that have important roles in orchestrating the resolution of tissue inflammation.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:140399</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>specialised pro-resolving mediator</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_141153 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_141153">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24127"/>
<obo:IAO_0000115>A mitochondrial cytochrome-bc1 complex inhibitor that acts at the Quinone 'outer' (Qo) binding site of the cytochrome-bc1 complex.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:141153</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>quinone outside inhibitor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_141301 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_141301">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_136643"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25491"/>
<obo:IAO_0000115>A compound that, on administration, must undergo chemical conversion by metabolic processes before becoming the pharmacologically active nematicide for which it is a pronematicide.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:141301</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>pronematicide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_143001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_143001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51373"/>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:143001</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#1_STAR"/>
<rdfs:label>GABAB receptor agonist</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_143130 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_143130">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51086"/>
<obo:IAO_0000115>A chemical role played by any unwanted chemical substance inside a confined amount of liquid, gas, or solid, which differs from the chemical composition of the material or compound. For example, an impurity can be an undesired by-product of a chemical reaction or manufacturing process, a drug contaminant, or can be created upon degradation during storage.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:143130</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>impurity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_145047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_145047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33232"/>
<obo:IAO_0000115>An agent that destroy spermatozoa in the male genitalia and block spermatogenesis.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:145047</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>antispermatogenic agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_145515 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_145515">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_65259"/>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:145515</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#1_STAR"/>
<rdfs:label>GABAA receptor antagonist</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_145947 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_145947">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35554"/>
<obo:IAO_0000115>A cardiovascular drug that prevents atherosclerosis (a disease in which the inside of an artery narrows due to the build up of plaque). Compare with antiatherogenic agent.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:145947</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:label>antiatherosclerotic agent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_146222 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_146222">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24852"/>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:146222</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#1_STAR"/>
<rdfs:label>ryanoid insecticide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_146270 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_146270">