Skip to content

Commit 4d3cefd

Browse files
committed
add example_data and latest foodon alignment
1 parent 9bc7589 commit 4d3cefd

6 files changed

Lines changed: 776 additions & 8 deletions

File tree

-285 KB
Binary file not shown.
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
2+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
3+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4+
@prefix ssn: <http://www.w3.org/ns/ssn/> .
5+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
6+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
7+
@prefix coso: <http://w3id.org/coso/v1/contaminoso#> .
8+
@prefix qudt: <http://qudt.org/schema/qudt/> .
9+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
10+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
11+
@prefix sosa: <http://www.w3.org/ns/sosa/> .
12+
@prefix terms: <http://purl.org/dc/terms/> .
13+
@prefix me_egad: <http://w3id.org/sawgraph/v1/me-egad#> .
14+
@prefix me_egad_data: <http://w3id.org/sawgraph/v1/me-egad-data#> .
15+
@prefix obo: <http://purl.obolibrary.org/obo/> .
16+
@prefix comptox: <http://w3id.org/comptox/>.
17+
18+
<http://w3id.org/sawgraph/v1/me-egad#controlledVocab> rdf:type owl:Ontology ;
19+
terms:contributor <http://orcid.org/0000-0002-5331-5052> ,
20+
<http://orcid.org/0000-0003-3547-8058> ,
21+
<https://orcid.org/0000-0003-3271-6700>;
22+
terms:created "2024-07-26" ;
23+
terms:creator <http://orcid.org/0000-0002-5331-5052> ,
24+
<http://orcid.org/0000-0003-3547-8058> ,
25+
<https://orcid.org/0000-0003-3271-6700> ;
26+
terms:description "This ontology supports SAWGraph"@en ;
27+
terms:title "Ontology for Maine Environmental and Geographic Analysis Database (EGAD) PFAS Dataset Sample Type mapping"@en ;
28+
owl:versionInfo "1.0"@en .
29+
30+
me_egad_data:DefEGADSurfaceWaterSample owl:intersectionOf (coso:MaterialSample [rdf:type owl:Restriction;
31+
owl:onProperty coso:sampleOfMaterialType;
32+
owl:hasValue me_egad_data:sampleMaterialType.SW
33+
]);
34+
rdfs:subClassOf coso:WaterSample. #need to add sample location
35+
36+
me_egad_data:DefEGADGroundWaterSample owl:intersectionOf (coso:MaterialSample [rdf:type owl:Restriction;
37+
owl:onProperty coso:sampleOfMaterialType;
38+
owl:hasValue me_egad_data:sampleMaterialType.GW
39+
]);
40+
rdfs:subClassOf coso:WaterSample. #need to add sample location
41+
42+
me_egad_data:DefEGADDrinkingWaterSample owl:intersectionOf (coso:MaterialSample [rdf:type owl:Restriction;
43+
owl:onProperty coso:sampleOfMaterialType;
44+
owl:hasValue me_egad_data:sampleMaterialType.DW
45+
]);
46+
rdfs:subClassOf coso:WaterSample. #need to add sample location
47+
48+
me_egad_data:DefEGADSoilSample owl:intersectionOf (coso:MaterialSample [rdf:type owl:Restriction;
49+
owl:onProperty coso:sampleOfMaterialType;
50+
owl:hasValue me_egad_data:sampleMaterialType.SL]);
51+
rdfs:subClassOf coso:SoilSample.
52+
53+
54+
# sample material type to FOODON organism material and/or food product
55+
56+
me_egad_data:sampleMaterialType.BD rdf:type obo:FOODON_02010015. #animal blood
57+
58+
me_egad_data:sampleMaterialType.FE rdf:type obo:FOODON_00004172. #feed
59+
60+
me_egad_data:sampleMaterialType.GR rdf:type obo:FOODON_00001093. #cereal grain
61+
62+
me_egad_data:sampleMaterialType.HT rdf:type obo:FOODON_02010042. #animal heart
63+
64+
me_egad_data:sampleMaterialType.LV rdf:type obo:FOODON_02010045. #animal liver
65+
66+
me_egad_data:sampleMaterialType.MEA rdf:type obo:FOODON_02010107. #piece of animal meat
67+
68+
me_egad_data:sampleMaterialType.MLK rdf:type obo:FOODON_02010012. #animal milk
69+
70+
me_egad_data:sampleMaterialType.MTB rdf:type obo:FOODON_02010032.
71+
72+
me_egad_data:sampleMaterialType.MU rdf:type obo:FOODON_02010032.
73+
74+
me_egad_data:sampleMaterialType.O rdf:type obo:FOODON_00004436, #animal organ
75+
obo:FOODON_00002165. #organ meat food product
76+
77+
me_egad_data:sampleMaterialType.SF rdf:type obo:FOODON_02021803. #animal fillet skinless, raw
78+
79+
80+
me_egad_data:sampleMaterialType.V rdf:type obo:FOODON_03420150, # plant whole or pieces
81+
obo:FOODON_03413358. #plant used as fodder (organism)
82+
83+
me_egad_data:sampleMaterialType.WH rdf:type obo:FOODON_03420116. # whole > organism material
84+
85+
86+
# Sample material type maps to FOODON organism and/or food material
87+
88+
me_egad_data:sampleMaterialTypeQualifier.BA rdf:type obo:FOODON_03413378. #fodder/forage
89+
90+
me_egad_data:sampleMaterialTypeQualifier.BE rdf:type obo:FOODON_02020892. #cow
91+
92+
me_egad_data:sampleMaterialTypeQualifier.BI rdf:type obo:FOODON_02020840. # bison
93+
94+
me_egad_data:sampleMaterialTypeQualifier.BKT rdf:type obo:NCBITaxon_8038. #brook trout
95+
96+
me_egad_data:sampleMaterialTypeQualifier.BKTH rdf:type obo:NCBITaxon_8038. #brook trout (hatchery part not currently included)
97+
98+
me_egad_data:sampleMaterialTypeQualifier.BLC rdf:type obo:NCBITaxon_8182. #black crappie
99+
100+
me_egad_data:sampleMaterialTypeQualifier.BVR rdf:type obo:FOODON_03411325. #beaver
101+
102+
me_egad_data:sampleMaterialTypeQualifier.CH rdf:type obo:FOODON_03411457. #chicken
103+
104+
me_egad_data:sampleMaterialTypeQualifier.CS rdf:type obo:NCBITaxon_381124, obo:FOODON_00003425. #corn
105+
106+
me_egad_data:sampleMaterialTypeQualifier.CSN rdf:type [owl:intersectionOf (obo:FOODON_00004460 obo:FOODON_03420181)] ;
107+
obo:RO_0002162 obo:NCBITaxon_381124.
108+
109+
me_egad_data:sampleMaterialTypeQualifier.DE rdf:type obo:FOODON_03411583. #deer
110+
111+
me_egad_data:sampleMaterialTypeQualifier.GO rdf:type obo:FOODON_03411328. #goat
112+
113+
me_egad_data:sampleMaterialTypeQualifier.GRF rdf:type obo:FOODON_03411324, #grain plant
114+
obo:FOODON_03413378. # 'straw, fodder or forage of cereal grains and grasses'
115+
116+
me_egad_data:sampleMaterialTypeQualifier.LA rdf:type obo:FOODON_03411669. #lamb
117+
118+
me_egad_data:sampleMaterialTypeQualifier.LMB rdf:type obo:NCBITaxon_27706. #largemouth bass
119+
120+
me_egad_data:sampleMaterialTypeQualifier.MU rdf:type obo:FOODON_03411183. #sheep
121+
122+
me_egad_data:sampleMaterialTypeQualifier.NPK rdf:type obo:NCBITaxon_8010. #northern pike
123+
124+
me_egad_data:sampleMaterialTypeQualifier.PO rdf:type obo:FOODON_02021651. #pig
125+
126+
me_egad_data:sampleMaterialTypeQualifier.SG rdf:type obo:FOODON_00002477. #game animal food product
127+
128+
me_egad_data:sampleMaterialTypeQualifier.SH rdf:type obo:FOODON_03411183. #sheep
129+
130+
me_egad_data:sampleMaterialTypeQualifier.SI rdf:type obo:FOODON_03413358. #plant used as fodder
131+
132+
me_egad_data:sampleMaterialTypeQualifier.SMB rdf:type obo:NCBITaxon_147949. #small mouth basshttps://www.startpage.com/do/search?q=graphdb+update+namespace&segment=startpage.vivaldi
133+
134+
me_egad_data:sampleMaterialTypeQualifier.TMR rdf:type obo:FOODON_00004172. #feedstuff
135+
136+
me_egad_data:sampleMaterialTypeQualifier.TU rdf:type obo:FOODON_03411236. #turkey
137+
138+
me_egad_data:sampleMaterialTypeQualifier.VE rdf:type obo:FOODON_00003083. #veal
139+
140+
me_egad_data:sampleMaterialTypeQualifier.WHP obo:RO_0002162 obo:NCBITaxon_46260. #white perch
141+

0 commit comments

Comments
 (0)