forked from FoodOntology/foodon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foodon_siren.owl
12298 lines (8732 loc) · 549 KB
/
foodon_siren.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"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY obo "http://purl.obolibrary.org/obo/" >
<!ENTITY patterns "http://www.co-ode.org/patterns#" >
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY NCBITaxon "http://purl.obolibrary.org/obo/NCBITaxon#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY oboInOwl "http://www.geneontology.org/formats/oboInOwl#" >
]>
<rdf:RDF xmlns="&obo;foodon_siren.owl#"
xml:base="&obo;foodon_siren.owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:patterns="http://www.co-ode.org/patterns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:NCBITaxon="&obo;NCBITaxon#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="&obo;foodon_siren.owl">
<owl:versionIRI rdf:resource="&obo;foodon/releases/2017-08-05/foodon_siren.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/gaz_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/uberon_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/obi_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/envo_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/ecocore_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/ancestro_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/langual_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/ncbitaxon_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/chebi_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/ro_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/po_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/pato_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/metadata_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/eo_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/foodon_product_import.owl"/>
<owl:imports rdf:resource="&obo;foodon/imports/product_type_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/foodon/imports/langual_deprecated_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/foodon/imports/subset_siren_import.owl"/>
<dc:contributor xml:lang="en">Damion Dooley</dc:contributor>
<dc:contributor xml:lang="en">William Hsiao</dc:contributor>
<dc:contributor xml:lang="en">Pier Buttigieg</dc:contributor>
<dc:contributor xml:lang="en">Robert Hohendorf</dc:contributor>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="&obo;IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="&obo;IAO_0000116"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/FOODON_00001301 -->
<owl:ObjectProperty rdf:about="&obo;FOODON_00001301">
<rdf:type rdf:resource="&owl;SymmetricProperty"/>
<rdfs:label xml:lang="en">has food substance analog</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/FOODON_00001303 -->
<owl:ObjectProperty rdf:about="&obo;FOODON_00001303">
<rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
<rdfs:label xml:lang="en">has taxonomic identifier</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/FOODON_00001563 -->
<owl:ObjectProperty rdf:about="&obo;FOODON_00001563">
<obo:IAO_0100001 rdf:datatype="&xsd;anyURI">http://purl.obolibrary.org/obo/RO_0009005</obo:IAO_0100001>
<rdfs:label xml:lang="en">has primary substance added (deprecated)</rdfs:label>
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/FOODON_00002420 -->
<owl:ObjectProperty rdf:about="&obo;FOODON_00002420">
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;BFO_0000051"/>
<rdf:Description rdf:about="&obo;RO_0001000"/>
</owl:propertyChainAxiom>
<rdfs:label xml:lang="en">has ingredient</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000086 -->
<rdf:Description rdf:about="&obo;RO_0000086">
<rdfs:label xml:lang="en">has quality</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/RO_0001000 -->
<rdf:Description rdf:about="&obo;RO_0001000">
<rdf:type rdf:resource="&owl;ReflexiveProperty"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/RO_0009001 -->
<owl:ObjectProperty rdf:about="&obo;RO_0009001">
<rdf:type rdf:resource="&owl;IrreflexiveProperty"/>
<obo:IAO_0000112 xml:lang="en">muffin 'has substance added' some 'baking soda'</obo:IAO_0000112>
<obo:IAO_0000116 xml:lang="en">The relation X 'has substance added' some Y doesn't imply that X still has Y in any detectable fashion subsequent to the addition. Water in dehydrated food or ice cubes are examples, as is food that undergoes chemical transformation. This definition should encompass recipe ingredients.</obo:IAO_0000116>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0009002 -->
<owl:ObjectProperty rdf:about="&obo;RO_0009002">
<rdf:type rdf:resource="&owl;IrreflexiveProperty"/>
<obo:IAO_0000112 xml:lang="en">'egg white' 'has substance removed' some 'egg yolk'</obo:IAO_0000112>
<obo:IAO_0000117 xml:lang="en">Damion Dooley</obo:IAO_0000117>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0009003 -->
<owl:ObjectProperty rdf:about="&obo;RO_0009003">
<rdf:type rdf:resource="&owl;IrreflexiveProperty"/>
<obo:IAO_0000112 xml:lang="en">sardines 'immersed in' some 'oil and mustard'</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">"immersed in" is a relation between a (physical) entity and a fluid substance in which the entity is wholely or substantially surrounded by the substance.</obo:IAO_0000115>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">immersed in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0009004 -->
<owl:ObjectProperty rdf:about="&obo;RO_0009004">
<rdfs:label xml:lang="en">has consumer</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0009005 -->
<owl:ObjectProperty rdf:about="&obo;RO_0009005">
<rdfs:subPropertyOf rdf:resource="&obo;RO_0009001"/>
<rdf:type rdf:resource="&owl;IrreflexiveProperty"/>
<obo:IAO_0000112 xml:lang="en">bread 'has primary substance added' some 'flour'</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000122"/>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/CEPH_0000285 -->
<owl:Class rdf:about="&obo;CEPH_0000285">
<rdfs:subClassOf rdf:resource="&obo;UBERON_0000463"/>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000428"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0246</oboInOwl:hasDbXref>
<rdfs:label xml:lang="en">ink, aquatic animal</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_16966 -->
<rdf:Description rdf:about="&obo;CHEBI_16966">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_18154"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_17306 -->
<owl:Class rdf:about="&obo;CHEBI_17306">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_17593"/>
<rdfs:subClassOf rdf:resource="&obo;CHEBI_24405"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A glycosylglucose consisting of two D-glucopyranose units connected by an alpha-(1->4)-linkage.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">maltose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0206</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL curation note: Used when maltose or a high maltose sweetener is the major ingredient.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">maltose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_17634 -->
<owl:Class rdf:about="&obo;CHEBI_17634">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_17234"/>
<rdfs:subClassOf rdf:resource="&obo;CHEBI_17608"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A glucose with D-configuration.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">dextrose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0222</oboInOwl:hasDbXref>
<oboInOwl:hasSynonym xml:lang="en">glucose, d-</oboInOwl:hasSynonym>
<rdfs:comment xml:lang="en">LanguaL term definition: Used when dextrose or a high dextrose sweetener, such as corn syrup or corn syrup solids, is the major ingredient.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">D-glucose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_17716 -->
<owl:Class rdf:about="&obo;CHEBI_17716">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_24405"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A glycosylglucose disaccharide, found most notably in milk, that consists of D-galactose and D-glucose fragments bonded through a beta-1->4 glycosidic linkage. The glucose fragment can be in either the alpha- or beta-pyranose form, whereas the galactose fragment can only have the beta-pyranose form.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">lactose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0209</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: Used when lactose or a high lactose sweetener is the major ingredient.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">lactose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_17992 -->
<owl:Class rdf:about="&obo;CHEBI_17992">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_24407"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Sucrose is a disaccharide formed by glucose and fructose units joined by an acetal oxygen bridge from hemiacetal of glucose to the hemiketal of the fructose.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">sucrose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0210</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: Used when sucrose (e.g., cane sugar or beet sugar) is the major ingredient. Note: on a product label or in a recipe, 'sugar' means sucrose.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">sucrose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_18154 -->
<owl:Class rdf:about="&obo;CHEBI_18154">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_16646"/>
<rdfs:subClassOf rdf:resource="&obo;CHEBI_33694"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420152"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A biomacromolecule consisting of large numbers of monosaccharide residues linked glycosidically. This term is commonly used only for those containing more than ten monosaccharide residues.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">polysaccharide</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0153</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: Complex carbohydrate with molecules composed of eleven or more saccharide units. Usually not sweet to the taste. Includes starch, pectin and cellulose.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">polysaccharide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_23448 -->
<rdf:Description rdf:about="&obo;CHEBI_23448">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_50699"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_24174 -->
<rdf:Description rdf:about="&obo;CHEBI_24174">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_18154"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_24268 -->
<rdf:Description rdf:about="&obo;CHEBI_24268">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_50699"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_24431 -->
<rdf:Description rdf:about="&obo;CHEBI_24431">
<rdfs:subClassOf rdf:resource="&obo;BFO_0000040"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_25140 -->
<owl:Class rdf:about="&obo;CHEBI_25140">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_23652"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A dextrin in which the D-glucose units are linked by alpha-(1->4) glycosidic bonds.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">maltodextrin</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0282</oboInOwl:hasDbXref>
<rdfs:label rdf:datatype="&xsd;string">maltodextrin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_28260 -->
<owl:Class rdf:about="&obo;CHEBI_28260">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_33917"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">An aldohexose that is the C-4 epimer of glucose.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">galactose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0254</oboInOwl:hasDbXref>
<oboInOwl:hasSynonym xml:lang="en">galactose, d-</oboInOwl:hasSynonym>
<rdfs:label rdf:datatype="&xsd;string">galactose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_28757 -->
<owl:Class rdf:about="&obo;CHEBI_28757">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_24973"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420108"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A ketohexose that is an isomer of glucose.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">fructose</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0223</oboInOwl:hasDbXref>
<oboInOwl:hasSynonym xml:lang="en">levulose</oboInOwl:hasSynonym>
<rdfs:comment xml:lang="en">LanguaL curation note: Used when pure fructose is the major ingredient. If *HIGH FRUCTOSE SYRUP* is the major ingredient, use that term for indexing.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">fructose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_30911 -->
<owl:Class rdf:about="&obo;CHEBI_30911">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_17634"/>
<rdfs:subClassOf rdf:resource="&obo;CHEBI_24583"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03412972"/>
<obo:IAO_0000118 xml:lang="en">sorbitol</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sorbitol as food source</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sorbitols as food source</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>Codex::420</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Codex::420(i)</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Europe::420</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>LANGUAL:B3285</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>LANGUAL:B4427</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>LANGUAL:C0281</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL curation note: See "food additive" comments.</rdfs:comment>
<rdfs:comment xml:lang="en">LanguaL term definition: Food additive.</rdfs:comment>
<rdfs:comment xml:lang="en">LanguaL term definition: Food additive; technological purpose(s): bulking agent, humectant, sequestrant, stabilizer, sweetener.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">glucitol</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_36233 -->
<rdf:Description rdf:about="&obo;CHEBI_36233">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_50699"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_37164 -->
<rdf:Description rdf:about="&obo;CHEBI_37164">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_18154"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_50126 -->
<rdf:Description rdf:about="&obo;CHEBI_50126">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_50699"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_50699 -->
<owl:Class rdf:about="&obo;CHEBI_50699">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_16646"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420152"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A compound in which monosaccharide units are joined by glycosidic linkages. The term is commonly used to refer to a defined structure as opposed to a polymer of unspecified length or a homologous mixture. When the linkages are of other types the compounds are regarded as oligosaccharide analogues.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">oligosaccharide</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0226</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: Complex carbohydrate with molecules composed of three to ten saccharide units (specifically dextrin). May be slightly sweet to the taste.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">oligosaccharide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_5291 -->
<owl:Class rdf:about="&obo;CHEBI_5291">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_60004"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420236"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A mixture of peptides and proteins produced by partial hydrolysis of collagen extracted from the skin, bones, and connective tissues of animals such as domesticated cattle, chicken, pigs, and fish.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">gelatin</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0219</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: A protein extract or concentrate derived from collagen.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">gelatin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_83163 -->
<owl:Class rdf:about="&obo;CHEBI_83163">
<rdfs:subClassOf rdf:resource="&obo;CHEBI_60004"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420271"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A mixture of sugar (fructose, glucose, sucrose) and carbohydrate components that is a by-product from sugar refinery.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">molasses</obo:IAO_0000118>
<obo:IAO_0000412 rdf:resource="&obo;chebi.owl"/>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0207</oboInOwl:hasDbXref>
<rdfs:comment xml:lang="en">LanguaL term definition: Liquid product remaining after crystallization of sugar from sugar syrup; most molasses is made from sugar cane.</rdfs:comment>
<rdfs:label rdf:datatype="&xsd;string">molasses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FOODON_00000000 -->
<owl:Class rdf:about="&obo;FOODON_00000000">
<rdfs:subClassOf rdf:resource="&owl;Thing"/>
<obo:IAO_0000115 xml:lang="en">The FoodOn food ontology is a controlled vocabulary that currently covers human food raw ingredients, food products and product types. It will develop semantics for food safety, food security, the agricultural and animal husbandry practices linked to food production, culinary, nutritional and chemical ingredients and processes. FoodOn will also grow to encompass food-chains and natural ecosystems involving other animals and plants. It is built to interoperate with the OBO Library family of ontologies.
FoodOn owes a large debt to LanguaL, the food indexing system developed since the mid 1970's (see LanguaL.org). LanguaL's facets have all been imported here, with some adaptation.</obo:IAO_0000115>
<rdfs:label xml:lang="en">foodon ontology</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FOODON_00001001 -->
<owl:Class rdf:about="&obo;FOODON_00001001">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_03420300"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03430114"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03301103"/>
<rdfs:label xml:lang="en">orange juice (liquid)</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FOODON_00001006 -->
<rdf:Description rdf:about="&obo;FOODON_00001006">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001010"/>
<rdf:Description rdf:about="&obo;FOODON_00001131"/>
<rdf:Description rdf:about="&obo;FOODON_00001132"/>
<rdf:Description rdf:about="&obo;FOODON_00001134"/>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03420103"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03306766"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001010 -->
<rdf:Description rdf:about="&obo;FOODON_00001010">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03420125"/>
</owl:Restriction>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001015 -->
<rdf:Description rdf:about="&obo;FOODON_00001015">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00002403"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411347"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001023 -->
<owl:Class rdf:about="&obo;FOODON_00001023">
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420123"/>
<rdfs:subClassOf rdf:resource="&obo;FOODON_03420190"/>
<obo:IAO_0000114 rdf:resource="&obo;IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">Cream component produced by churning and containing not less than 80% milkfat.</obo:IAO_0000115>
<obo:IAO_0000412>http://langual.org</obo:IAO_0000412>
<oboInOwl:hasDbXref>LANGUAL:C0179</oboInOwl:hasDbXref>
<rdfs:label xml:lang="en">butter</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FOODON_00001047 -->
<rdf:Description rdf:about="&obo;FOODON_00001047">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03460230"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_03411059"/>
<rdf:Description rdf:about="&obo;FOODON_03411222"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001059 -->
<owl:Class rdf:about="&obo;FOODON_00001059">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_03420300"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03411245"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FOODON_00001064 -->
<rdf:Description rdf:about="&obo;FOODON_00001064">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001260"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;PATO_0005016"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_03490204"/>
<rdf:Description rdf:about="&obo;FOODON_03490214"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001068 -->
<rdf:Description rdf:about="&obo;FOODON_00001068">
<rdfs:subClassOf rdf:resource="&obo;FOODON_00002418"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001072 -->
<rdf:Description rdf:about="&obo;FOODON_00001072">
<rdfs:subClassOf rdf:resource="&oboInOwl;ObsoleteClass"/>
<obo:IAO_0100001>http://purl.obolibrary.org/obo/FOODON_03311884</obo:IAO_0100001>
<owl:deprecated rdf:datatype="&xsd;boolean">true</owl:deprecated>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001092 -->
<rdf:Description rdf:about="&obo;FOODON_00001092">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00002403"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411297"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001099 -->
<rdf:Description rdf:about="&obo;FOODON_00001099">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001140"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03310788"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001100 -->
<rdf:Description rdf:about="&obo;FOODON_00001100">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411339"/>
</owl:Restriction>
</rdfs:subClassOf>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001131 -->
<rdf:Description rdf:about="&obo;FOODON_00001131">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411563"/>
</owl:Restriction>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001132 -->
<rdf:Description rdf:about="&obo;FOODON_00001132">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411136"/>
</owl:Restriction>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001134 -->
<rdf:Description rdf:about="&obo;FOODON_00001134">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000051"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03414374"/>
</owl:Restriction>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001140 -->
<rdf:Description rdf:about="&obo;FOODON_00001140">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001057"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0000086"/>
<owl:someValuesFrom rdf:resource="&obo;PATO_0001693"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03420229"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001143 -->
<rdf:Description rdf:about="&obo;FOODON_00001143">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00002403"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411261"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001145 -->
<rdf:Description rdf:about="&obo;FOODON_00001145">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00002403"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03412846"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001158 -->
<rdf:Description rdf:about="&obo;FOODON_00001158">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;PO_0030110"/>
</owl:Restriction>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001184 -->
<rdf:Description rdf:about="&obo;FOODON_00001184">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00002403"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0001000"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03411301"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001194 -->
<rdf:Description rdf:about="&obo;FOODON_00001194">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001194"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03411338"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001195 -->
<rdf:Description rdf:about="&obo;FOODON_00001195">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001195"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03411268"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001196 -->
<rdf:Description rdf:about="&obo;FOODON_00001196">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001196"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03412010"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001197 -->
<rdf:Description rdf:about="&obo;FOODON_00001197">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03413418"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001198 -->
<rdf:Description rdf:about="&obo;FOODON_00001198">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;FOODON_00001198"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03411367"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001199 -->
<rdf:Description rdf:about="&obo;FOODON_00001199">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002354"/>
<owl:someValuesFrom rdf:resource="&obo;FOODON_03470116"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0009001"/>
<owl:allValuesFrom rdf:resource="&obo;FOODON_03411172"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/FOODON_00001200 -->
<rdf:Description rdf:about="&obo;FOODON_00001200">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>