-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreac4cat_with_examples_inferred2.owl
1693 lines (1494 loc) · 100 KB
/
reac4cat_with_examples_inferred2.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:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xml:base="https://nfdi4cat.org/ontologies/reac4cat_with_examples"
xmlns="https://nfdi4cat.org/ontologies/reac4cat_with_examples#"
xmlns:oboI="http://www.geneontology.org/formats/oboInOwl#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:term="http://purl.org/dc/terms/"
xmlns:x_0.1="http://xmlns.com/foaf/0.1/"
xmlns:x_1.1="http://purl.org/dc/elements/1.1/"
xmlns:dcam="http://purl.org/dc/dcam/"
xmlns:om-2="http://www.ontology-of-units-of-measure.org/resource/om-2/"
xmlns:prop="http://purl.allotrope.org/ontologies/property#"
xmlns:core="http://www.w3.org/2004/02/skos/core#"
xmlns:cheb="http://purl.obolibrary.org/obo/chebi/"
xmlns:onto="https://nfdi4cat.org/ontologies/">
<owl:Ontology rdf:about="https://nfdi4cat.org/ontologies/reac4cat_with_examples">
<term:hasPart rdf:resource="http://purl.allotrope.org/voc/afo/merged/REC/2023/09/merged-without-qudt-and-inferred.ttl"/>
<term:hasPart rdf:resource="http://purl.obolibrary.org/obo/chebi.owl"/>
<term:hasPart rdf:resource="http://purl.obolibrary.org/obo/bfo/2.0/bfo.owl"/>
<term:hasPart rdf:resource="https://raw.githubusercontent.com/rsc-ontologies/rxno/master/mop.owl"/>
<term:hasPart rdf:resource="https://raw.githubusercontent.com/rsc-ontologies/rxno/master/rxno.owl"/>
<term:license rdf:resource="https://creativecommons.org/public-domain/cc0/"/>
<rdfs:seeAlso rdf:resource="https://nfdi4cat.org/en/"/>
<x_0.1:homepage rdf:resource="https://github.com/AleSteB/Reac4Cat"/>
<obo:IAO_0000116 xml:lang="en">Reused Ontologies: [Alexander Behr]
AFO
BFO
RXNO
MOP
Chebi
RO
Artifacts from other OBO ontologies might occur due to cross importing from some of the imported OBO Ontologies.</obo:IAO_0000116>
<x_1.1:contributor>Alexander Behr</x_1.1:contributor>
<x_1.1:contributor>Hendrik Borgelt</x_1.1:contributor>
<term:hasPart>http://purl.obolibrary.org/obo/ro.owl</term:hasPart>
</owl:Ontology>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002131"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_ontology"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_gocam"/>
<obo:IAO_0000111 xml:lang="en">has part</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my body has part my brain (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this year has part this day (occurrent parthood)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a whole and its part</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_part</obo:IAO_0000118>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002314"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000053"/>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<obo:IAO_0000111 xml:lang="en">inheres in</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this fragility is a characteristic of this vase</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this red color is a characteristic of this apple</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">inheres_in</obo:IAO_0000118>
<rdfs:comment>Note that this relation was previously called "inheres in", but was changed to be called "characteristic of" because BFO2 uses "inheres in" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.</rdfs:comment>
<rdfs:label xml:lang="en">characteristic of</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000053">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/relation"/>
<obo:IAO_0000115>A relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence. [RO]</obo:IAO_0000115>
<core:altLabel>is bearer of</core:altLabel>
<core:definition>A relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence. [RO]</core:definition>
<core:editorialNote>A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist. [RO]</core:editorialNote>
<core:example>this apple is bearer of this red color</core:example>
<core:example>this vase is bearer of this fragility</core:example>
<core:prefLabel>bearer of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000081">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000052"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<obo:IAO_0000112 xml:lang="en">this investigator role is a role of this person</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">is role of</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">role_of</obo:IAO_0000118>
<rdfs:comment>This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.</rdfs:comment>
<rdfs:label xml:lang="en">role of</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000053"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/relation"/>
<core:definition>A relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence [RO]</core:definition>
<core:editorialNote>A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists. [RO]</core:editorialNote>
<core:example>this person has role this investigator role (more colloquially: this person has this role of investigator) [RO]</core:example>
<core:prefLabel>has role</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002131">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002323"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/valid_for_gocam"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<obo:IAO_0000115>x overlaps y if and only if there exists some z such that x has part z and z part of y</obo:IAO_0000115>
<obo:IAO_0000424>http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)</obo:IAO_0000424>
<rdfs:label xml:lang="en">overlaps</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002314">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002502"/>
<obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-6601-2165"/>
<obo:IAO_0000119 rdf:resource="http://www.ncbi.nlm.nih.gov/pubmed/20064205"/>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/ro/docs/reflexivity/"/>
<obo:IAO_0000115>q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w.</obo:IAO_0000115>
<obo:IAO_0000116>Because part_of is transitive, inheres in is a sub-relation of characteristic of part of</obo:IAO_0000116>
<obo:IAO_0000118>inheres in part of</obo:IAO_0000118>
<rdfs:label xml:lang="en">characteristic of part of</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002323">
<obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-6601-2165"/>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<obo:IAO_0000115>A mereological relationship or a topological relationship</obo:IAO_0000115>
<obo:IAO_0000232>Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships</obo:IAO_0000232>
<rdfs:label xml:lang="en">mereotopologically related to</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002502">
<obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-6601-2165"/>
<rdfs:seeAlso rdf:resource="http://purl.obolibrary.org/obo/BFO_0000169"/>
<rdfs:label>depends on</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000003">
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000058"/>
<rdfs:label>hasCatalyst</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000004">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label>hasComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000005">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000062"/>
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000009"/>
<owl:propertyChainAxiom>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000006"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000004"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:propertyChainAxiom>
<rdfs:label>hasEductComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000006">
<rdfs:label>hasInitialMixture</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000007">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000062"/>
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000065"/>
<owl:propertyChainAxiom>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000008"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000004"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:propertyChainAxiom>
<rdfs:label>hasProductComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000008">
<rdfs:label>hasProductComponentSet</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000009">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000063"/>
<rdfs:label>isEductComponentOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000011">
<rdfs:label>isCatalyzedBy</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000015">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000060"/>
<rdfs:label>hasReactionRole</rdfs:label>
<core:editorialNote xml:lang="en">This object property should be a subclass of 'has role' http://purl.obolibrary.org/obo/RO_0000087 (or 'has chemical role' http://purl.obolibrary.org/obo/RO_0002262).
However, due to the inverse relation 'characteristic of' http://purl.obolibrary.org/obo/RO_0000052 being a functional relation, the intended reasoning leads to an unwanted inference between individuals.
This unwanted inference, in which all Individuals with the property 'has role' are set equivalent to each other, is based on the 'has role' relation pointing to a role bearing individual. [AB]</core:editorialNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000048">
<rdfs:label xml:lang="en">hasReactionVesselMaterial</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000052">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:label xml:lang="en">hasCatalystSample</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000053">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000062"/>
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000064"/>
<owl:propertyChainAxiom>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000056"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000052"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000004"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:propertyChainAxiom>
<rdfs:label>hasCatalystSampleComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000054">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000062"/>
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000069"/>
<owl:propertyChainAxiom>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000056"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000048"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000004"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:propertyChainAxiom>
<rdfs:label>hasReactorVesselComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000056">
<rdfs:label xml:lang="en">hasReactionVessel</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000058">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:label xml:lang="en">isCatalystOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000060">
<rdfs:label xml:lang="en">isReactionRoleOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000062">
<owl:inverseOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000063"/>
<rdfs:label>hasReactionComponent</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000063">
<rdfs:label>isReactionComponentOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000064">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000063"/>
<rdfs:label>isCatalystSampleComponentOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000065">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000063"/>
<rdfs:label>isProductComponentOf</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000067">
<owl:propertyChainAxiom>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000015"/>
<rdf:rest>
<rdf:Description>
<rdf:first rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000011"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:propertyChainAxiom>
<rdfs:label>isPotentiallyCatalysedBy</rdfs:label>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000069">
<rdfs:subPropertyOf rdf:resource="https://nfdi4cat.org/ontologies/reac4cat_000063"/>
<rdfs:label>isReactionVesselComponentOf</rdfs:label>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000012">
<rdfs:label>measured_reaction_velocity</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000013">
<rdfs:label>hasMeanReactionPressure</rdfs:label>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000014">
<rdfs:label>hasMeanReactionTemperature</rdfs:label>
</owl:DatatypeProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasPart">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
<term:description xml:lang="en">This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of.</term:description>
<rdfs:comment xml:lang="en">A related resource that is included either physically or logically in the described resource.</rdfs:comment>
<rdfs:label xml:lang="en">Has Part</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/LicenseDocument"/>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/rights"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/rights"/>
<term:description xml:lang="en">Recommended practice is to identify the license document with a URI. If this is not possible or feasible, a literal value that identifies the license may be provided.</term:description>
<rdfs:comment xml:lang="en">A legal document giving official permission to do something with the resource.</rdfs:comment>
<rdfs:label xml:lang="en">License</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/homepage"/>
<owl:AnnotationProperty rdf:about="http://purl.allotrope.org/ontologies/property#AFX_0002796"/>
<owl:AnnotationProperty rdf:about="http://purl.allotrope.org/ontologies/property#AFX_0002798"/>
<owl:AnnotationProperty rdf:about="http://purl.allotrope.org/ontologies/property#AFX_0002809"/>
<owl:AnnotationProperty rdf:about="http://purl.allotrope.org/ontologies/property#AFX_0002818"/>
<owl:AnnotationProperty rdf:about="http://purl.allotrope.org/ontologies/property#AFX_0002865"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000179">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000180">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116">
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">editor note</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000424"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000600"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000602"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0010000"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001900"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/charge"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/formula"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/inchi"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/inchikey"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/mass"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/monoisotopicmass"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/smiles"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/dcam/rangeIncludes"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/relation"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/abstract">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
<rdfs:comment xml:lang="en">A summary of the resource.</rdfs:comment>
<rdfs:label xml:lang="en">Abstract</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
<term:description xml:lang="en">Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.</term:description>
<rdfs:comment xml:lang="en">An account of the resource.</rdfs:comment>
<rdfs:label xml:lang="en">Description</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/references">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
<term:description xml:lang="en">This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By.</term:description>
<rdfs:comment xml:lang="en">A related resource that is referenced, cited, or otherwise pointed to by the described resource.</rdfs:comment>
<rdfs:label xml:lang="en">References</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/relation">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<term:description xml:lang="en">Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.</term:description>
<rdfs:comment xml:lang="en">A related resource.</rdfs:comment>
<rdfs:label xml:lang="en">Relation</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/rights"/>
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/source"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
<term:description xml:lang="en">This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.</term:description>
<rdfs:comment xml:lang="en">A related resource from which the described resource is derived.</rdfs:comment>
<rdfs:label xml:lang="en">Source</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:AnnotationProperty rdf:about="http://www.ontology-of-units-of-measure.org/resource/om-2/alternativeLabel"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#editorialNote"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/mbox"/>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/process#AFP_0003711">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115>A chemical reaction is a process that results in the interconversion of chemical species. [IUPAC]</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.allotrope.org/ontologies/process#AFP_0003711</obo:IAO_0000412>
<om-2:alternativeLabel>chemical reaction</om-2:alternativeLabel>
<om-2:alternativeLabel>reaction</om-2:alternativeLabel>
<rdfs:label>chemical reaction (molecular)</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000217">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000086"/>
<prop:AFX_0002809 rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35223"/>
<term:license rdf:resource="http://purl.allotrope.org/voc/iupac-license"/>
<term:rights rdf:resource="http://purl.allotrope.org/voc/iupac-copyright"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<prop:AFX_0002798 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</prop:AFX_0002798>
<term:source>PAC, 1996, 68, 155 (Glossary of terms used in chemical kinetics, including reaction dynamics.)</term:source>
<core:altLabel>catalyst</core:altLabel>
<core:definition>A catalyst role is a reagent role of a substance that increases the rate of a reaction without modifying the overall standard Gibbs energy change in the reaction; the process is called catalysis. The catalyst is both a reactant and product of the reaction. [IUPAC]</core:definition>
<core:prefLabel>catalyst role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000229">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000086"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>intermedate reagent role</core:altLabel>
<core:altLabel>intermediate</core:altLabel>
<core:altLabel>intermediate reagent role</core:altLabel>
<core:altLabel>intermediate role</core:altLabel>
<core:altLabel>reaction intermediate</core:altLabel>
<core:definition>Intermediate role is a role of material that is formed from reactants (or preceding intermediates) and reacts further to give the directly observed products of a chemical reaction. [Wikipedia]</core:definition>
<core:prefLabel>reaction intermediate role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000231">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000086"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>reactant</core:altLabel>
<core:altLabel>starting material</core:altLabel>
<core:definition>Reactant role is a role of a chemical entity that is present at the start of a reaction. [Allotrope]</core:definition>
<core:prefLabel>reactant role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000249">
<rdfs:subClassOf rdf:resource="http://purl.allotrope.org/ontologies/role#AFRL_0000344"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>ingredient</core:altLabel>
<core:definition>Ingredient is a role of material that is used in a material combining process to produce a new material. [Allotrope]</core:definition>
<core:prefLabel>ingredient role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000344">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:definition>A synthesis role is a role of a material that is participating in a synthesis (material conversion) process. [Allotrope]</core:definition>
<core:prefLabel>synthesis role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000360">
<rdfs:subClassOf rdf:resource="http://purl.allotrope.org/ontologies/role#AFRL_0000344"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>chemical product</core:altLabel>
<core:altLabel>product</core:altLabel>
<core:definition>A role of a material that is intended and desired to be produced in a synthesis. [Allotrope]</core:definition>
<core:prefLabel>product role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000361">
<rdfs:subClassOf rdf:resource="http://purl.allotrope.org/ontologies/role#AFRL_0000360"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>batch</core:altLabel>
<core:altLabel>lot</core:altLabel>
<core:altLabel>lot role</core:altLabel>
<core:definition>Batch role is a product role of a portion of material that is intended to have uniform character and quality, within specified limits, and is produced according to a single manufacturing order during the same cycle of manufacture. [Allotrope, CFR21]</core:definition>
<core:prefLabel>batch role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.allotrope.org/ontologies/role#AFRL_0000421">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000086"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:definition>A reagent role of the material with the least mole quantity in a chemical process and as such limits the amount of product that can be formed. [Allotrope]</core:definition>
<core:prefLabel>limiting reagent role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000003">
<rdfs:comment xml:lang="en">Semantic artefact of the BFO class 'occurent' (http://purl.obolibrary.org/obo/BFO_0000003) which has not been fully implemented in order to reduce the complexity and depth a full import of a Top level ontology would bring into this example</rdfs:comment>
<rdfs:label>occurent</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<obo:BFO_0000179>process</obo:BFO_0000179>
<obo:BFO_0000180>Process</obo:BFO_0000180>
<obo:IAO_0000112 xml:lang="en">a process of cell-division, \ a beating of the heart</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a process of meiosis</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a process of sleeping</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the course of a disease</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the flight of a bird</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the life of an organism</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">your process of aging.</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)</obo:IAO_0000116>
<obo:IAO_0000602>(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] </obo:IAO_0000602>
<rdfs:label xml:lang="en">process</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017">
<rdfs:comment xml:lang="en">Semantic artefact of the BFO class 'realizable entity' (http://purl.obolibrary.org/obo/BFO_0000017) which has not been fully implemented in order to reduce the complexity and depth a full import of a Top level ontology would bring into this example</rdfs:comment>
<rdfs:label>realizable entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<obo:BFO_0000179>role</obo:BFO_0000179>
<obo:BFO_0000180>Role</obo:BFO_0000180>
<obo:IAO_0000112 xml:lang="en">John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the priest role</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of a boundary to demarcate two neighboring administrative territories</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of a building in serving as a military target</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of a stone in marking a property boundary</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of subject in a clinical trial</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the student role</obo:IAO_0000112>
<obo:IAO_0000116 xml:lang="en">BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.</obo:IAO_0000116>
<obo:IAO_0000600 xml:lang="en">b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])</obo:IAO_0000600>
<obo:IAO_0000602>(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] </obo:IAO_0000602>
<rdfs:label xml:lang="en">role</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040">
<rdfs:comment xml:lang="en">Semantic artefact of the BFO class 'Material Entity' (http://purl.obolibrary.org/obo/BFO_0000040) which has not been fully implemented in order to reduce the complexity and depth a full import of a Top level ontology would bring into this example</rdfs:comment>
<rdfs:label xml:lang="en">material entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_138675">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33579"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>Any main group molecular entity that is gaseous at standard temperature and pressure (STP; 0degreeC and 100 kPa).</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:138675</oboI:id>
<rdfs:label>gas molecular entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_15377">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_52625"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An oxygen hydride consisting of an oxygen atom that is covalently bonded to two hydrogen atoms</obo:IAO_0000115>
<cheb:charge>0</cheb:charge>
<cheb:formula>H2O</cheb:formula>
<cheb:inchi>InChI=1S/H2O/h1H2</cheb:inchi>
<cheb:inchikey>XLYOFNOQVPJJNP-UHFFFAOYSA-N</cheb:inchikey>
<cheb:mass>18.01530</cheb:mass>
<cheb:monoisotopicmass>18.01056</cheb:monoisotopicmass>
<cheb:smiles>[H]O[H]</cheb:smiles>
<oboI:hasAlternativeId>CHEBI:10743</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13352</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:27313</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:42043</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:42857</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:43228</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44292</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44701</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44819</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:5585</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:15377</oboI:id>
<rdfs:label>water</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16134">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An azane that consists of a single nitrogen atom covelently bonded to three hydrogen atoms.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:13405</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13406</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13407</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13771</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:22533</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44269</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44284</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:44404</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:7434</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:16134</oboI:id>
<rdfs:label>ammonia</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16183">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A one-carbon compound in which the carbon is attached by single bonds to four hydrogen atoms. It is a colourless, odourless, non-toxic but flammable gas (b.p. -161degreeC).</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:14585</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:25220</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:6811</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:16183</oboI:id>
<rdfs:label>methane</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16526">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A one-carbon compound with formula CO2 in which the carbon is attached to each oxygen atom by a double bond. A colourless, odourless gas under normal conditions, it is produced during respiration by all animals, fungi and microorganisms that depend directly or indirectly on living or decaying plants for food.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:13282</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13283</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13284</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:13285</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:23011</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:3283</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:48829</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:16526</oboI:id>
<rdfs:label>carbon dioxide</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_17997">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An elemental molecule consisting of two trivalently-bonded nitrogen atoms.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:13388</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:14660</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:25365</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:43128</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:7593</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:17997</oboI:id>
<rdfs:label>dinitrogen</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_18248">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33356"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An iron group element atom that has atomic number 26.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:13322</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:24872</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:5974</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:18248</oboI:id>
<rdfs:label>iron atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_18276">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An elemental molecule consisting of two hydrogens joined by a single bond.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:13350</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:25363</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:5785</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:18276</oboI:id>
<rdfs:label>dihydrogen</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_23367">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/bfo.owl#material"/>
<prop:AFX_0002796 rdf:resource="http://purl.allotrope.org/ontologies/result#AFR_0001222"/>
<prop:AFX_0002865 rdf:resource="http://purl.obolibrary.org/obo/chebi.owl"/>
<term:license rdf:resource="http://purl.allotrope.org/voc/iupac-license"/>
<term:rights rdf:resource="http://purl.allotrope.org/voc/iupac-copyright"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/perspective/REC/2021/09/molecular-scale"/>
<obo:IAO_0000115>Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.</obo:IAO_0000115>
<term:source>PAC, 1994, 66, 1077. (Glossary of terms used in physical organic chemistry (IUPAC Recommendations 1994)) on page 1142</term:source>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:23367</oboI:id>
<rdfs:label>molecular entity</rdfs:label>
<core:definition>Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity. [IUPAC]</core:definition>
<core:prefLabel>molecular entity</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24431">
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:24431</oboI:id>
<rdfs:label>chemical entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24835">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A molecular entity that contains no carbon.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:24835</oboI:id>
<rdfs:label>inorganic molecular entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_27081">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33521"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An element whose atom has an incomplete d sub-shell, or which can give rise to cations with an incomplete d sub-shell.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:27081</oboI:id>
<rdfs:label>transition element atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_28112">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33362"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>Chemical element (nickel group element atom) with atomic number 28.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:25515</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:7552</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:28112</oboI:id>
<rdfs:label>nickel atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_30682">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33356"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33365"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An iron group element atom that has formula Ru.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:30682</oboI:id>
<rdfs:label>ruthenium atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33250">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A chemical entity constituting the smallest component of an element having the chemical properties of the element.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:22671</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:23907</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33250</oboI:id>
<rdfs:label>atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33352">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_27081"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33352</oboI:id>
<rdfs:label>manganese group element atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33356">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_27081"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33356</oboI:id>
<rdfs:label>iron group element atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33362">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_27081"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33362</oboI:id>
<rdfs:label>nickel group element atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33365">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_27081"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33365</oboI:id>
<rdfs:label>platinum group metal atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33521">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33250"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>An atom of an element that exhibits typical metallic properties, being typically shiny, with high electrical and thermal conductivity.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:25217</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:6788</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33521</oboI:id>
<rdfs:label>metal atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33579">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A molecular entity containing one or more atoms from any of groups 1, 2, 13, 14, 15, 16, 17, and 18 of the periodic table.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:33579</oboI:id>
<rdfs:label>main group molecular entity</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_49882">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33352"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A manganese group element atom that has formula Re.</obo:IAO_0000115>
<oboI:hasAlternativeId>CHEBI:33354</oboI:hasAlternativeId>
<oboI:hasAlternativeId>CHEBI:49879</oboI:hasAlternativeId>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:49882</oboI:id>
<rdfs:label>rhenium atom</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_52625">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24835"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:52625</oboI:id>
<rdfs:label>inorganic hydroxy compound</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_59999">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A chemical substance is a portion of matter of constant composition, composed of molecular entities of the same type or of different types.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:59999</oboI:id>
<rdfs:label>chemical substance</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_60003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_59999"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A pure substance is a chemical substance composed of multiple molecules, which are all of the same kind.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:60003</oboI:id>
<rdfs:label>pure substance</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_60004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_59999"/>
<oboI:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<obo:IAO_0000115>A mixture is a chemical substance composed of multiple molecules, at least two of which are of a different kind.</obo:IAO_0000115>
<oboI:hasOBONamespace>chebi_ontology</oboI:hasOBONamespace>
<oboI:id>CHEBI:60004</oboI:id>
<rdfs:label>mixture</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/MOP_0000543">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115>A process in which at least one of the participants is a molecule.</obo:IAO_0000115>
<oboI:hasOBONamespace>RXNO</oboI:hasOBONamespace>
<oboI:id>MOP:0000543</oboI:id>
<rdfs:comment>TODO: needs work, formal definition, etc.</rdfs:comment>
<rdfs:label>molecular process</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/MOP_0000569">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/MOP_0000543"/>
<obo:IAO_0000115>The complete transfer of one or more electrons to a molecular entity.</obo:IAO_0000115>
<oboI:created_by>batchelorc</oboI:created_by>
<oboI:creation_date>2009-06-01T06:04:18Z</oboI:creation_date>
<oboI:hasExactSynonym>electronation</oboI:hasExactSynonym>
<oboI:hasOBONamespace>RXNO</oboI:hasOBONamespace>
<oboI:id>MOP:0000569</oboI:id>
<rdfs:label>reduction</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/MOP_0000589">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/MOP_0000569"/>
<obo:IAO_0000115>A reduction process that involves addition of hydrogen atoms across a double bond.</obo:IAO_0000115>
<oboI:created_by>batchelorc</oboI:created_by>
<oboI:creation_date>2009-06-05T04:53:34Z</oboI:creation_date>
<oboI:hasOBONamespace>RXNO</oboI:hasOBONamespace>
<oboI:id>MOP:0000589</oboI:id>
<rdfs:label>hydrogenation</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000086">
<rdfs:subClassOf rdf:resource="http://purl.allotrope.org/ontologies/role#AFRL_0000249"/>
<prop:AFX_0002809 rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33893"/>
<prop:AFX_0002865 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<core:altLabel>reagent</core:altLabel>
<core:definition>A role inhering in a biological or chemical entity that is intended to be applied in a scientific technique to participate (or have molecular components that participate) in a chemical reaction that facilitates the generation of data about some entity distinct from the bearer, or the generation of some specified material output distinct from the bearer. [OBI]</core:definition>
<core:prefLabel>reagent role</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="http://purl.obolibrary.org/obo/bfo.owl#material">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<prop:AFX_0002865 rdf:resource="http://purl.allotrope.org/taxonomy"/>
<prop:AFX_0002865 rdf:resource="http://purl.allotrope.org/voc/afo/REC/2018/07/aft"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/REC/2021/09/aft"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/perspective/REC/2021/09/portion-of-material"/>
<rdfs:isDefinedBy rdf:resource="http://purl.allotrope.org/voc/afo/perspective/REC/2021/09/system"/>
<prop:AFX_0002818 rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</prop:AFX_0002818>
<rdfs:isDefinedBy>http://purl.allotrope.org/ontologies/material#AFM_0000275</rdfs:isDefinedBy>
<core:altLabel>matter</core:altLabel>
<core:definition>A material entity that occupies space and possesses a rest mass. [Allotrope]</core:definition>
<core:prefLabel>material</core:prefLabel>
</owl:Class>
<owl:Class rdf:about="https://nfdi4cat.org/ontologies/reac4cat_000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/bfo.owl#material"/>
<rdfs:label>process mixture</rdfs:label>
</owl:Class>