-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgecko.owl
2441 lines (1735 loc) · 156 KB
/
gecko.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/gecko.owl#"
xml:base="http://purl.obolibrary.org/obo/gecko.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/gecko.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/gecko/releases/2021-01-18/gecko.owl"/>
<dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ontology to represent genomics cohort attributes.</dc:description>
<dc:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Genomics Cohorts Knowledge Ontology</dc:title>
<terms:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The GECKO is maintained by the CINECA project, https://www.cineca-project.eu, and standardises attributes commonly used for genomics cohort description as well as individual-level data items. A series of tools is being developed to enable automated generation of harmonised data files based on a JSON schema mapping file. For more information please contact [email protected]</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GECKO_9000000 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GECKO_9000000">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IHCC category</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GECKO_9000001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GECKO_9000001">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IHCC browser label</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">example of usage</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alternative term</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">comment</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">label</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">see also</rdfs:label>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">is about</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inheres in</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015">
<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>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<obo:IAO_0000112 xml:lang="en">an atom of element X has the disposition to decay to an atom of element Y</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">certain people have a predisposition to colon cancer</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">children are innately disposed to categorize objects in certain ways.</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the cell wall is disposed to filter chemicals in endocytosis and exocytosis</obo:IAO_0000112>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disposition</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017">
<obo:IAO_0000112 xml:lang="en">the disposition of this piece of metal to conduct electricity.</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the disposition of your blood to coagulate</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the function of your reproductive organs</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of being a doctor</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the role of this boundary to delineate where Utah and Colorado meet</obo:IAO_0000112>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">realizable entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000019">
<obo:IAO_0000112 xml:lang="en">the ambient temperature of this portion of air</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the color of a tomato</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the length of the circumference of your waist</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the mass of this piece of gold.</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the shape of your nose</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the shape of your nostril</obo:IAO_0000112>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">quality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000141"/>
<obo:IAO_0000112 xml:lang="en">Manhattan Canyon)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a hole in the interior of a portion of cheese</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a rabbit hole</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">an air traffic control region defined in the airspace above an airport</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the Grand Canyon</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the Piazza San Marco</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the cockpit of an aircraft</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the hold of a ship</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the interior of a kangaroo pouch</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the interior of the trunk of your car</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the interior of your bedroom</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the interior of your office</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the interior of your refrigerator</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the lumen of your gut</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">your left nostril (a fiat part – the opening – of your left nasal cavity)</obo:IAO_0000112>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">site</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040">
<obo:IAO_0000112 xml:lang="en">a flame</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a forest fire</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a human being</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a hurricane</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a photon</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a puff of smoke</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a sea wave</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">a tornado</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">an aggregate of human beings.</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">an energy wave</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">an epidemic</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the undetached arm of a human being</obo:IAO_0000112>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">material entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000141">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">immaterial entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000000">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physiological measurements</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clinical measurement data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000000"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physiological measurements</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">circulation and respiration</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cardiovascular measurement data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000001"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">circulation and respiration</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood pressure</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood pressure measurement data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000012">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000021"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anthropometry</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weight</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body weight data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000021">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000000"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physiological measurements</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anthropometry</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body morphological measurement data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000021"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anthropometry</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">height</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body height data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CMO_0000294 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CMO_0000294">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CMO_0000001"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">circulation and respiration</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heart rate (HR)</obo:GECKO_9000001>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pulse data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000147 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000147">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cause of death</obo:GECKO_9000001>
<obo:IAO_0000115>An information content entity indicating the cause of death for a participant in the study.</obo:IAO_0000115>
<obo:IAO_0000119>Penn Group</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cause of participant death</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000305 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000305">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">healthcare information</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">routine clincial visits</obo:GECKO_9000001>
<obo:IAO_0000115 xml:lang="en">a data item that is about an investigation and is the specified output of a data transformation that has only clinical visit data as input</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">EuPathDB</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aggregated clinical visit information</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000308 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000308">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">healthcare information</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hospitalizations</obo:GECKO_9000001>
<obo:IAO_0000115 xml:lang="en">an information content entity that is about a part of a health care encounter that occurs in a hospital facility</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">EuPathDB</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hospitalization information</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000359 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000359">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">occupation</obo:GECKO_9000001>
<obo:IAO_0000115 xml:lang="en">An information content entity that is about an activity that realizes a social role and is often performed for payment.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">occupation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000374 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000374">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marital status</obo:GECKO_9000001>
<obo:IAO_0000115 xml:lang="en">a categorical value specification that is about a human being and specifies whether that human being is joined to another human being in marriage</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">EuPathDB, BFO's 'relational quality' examples</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marital status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0000451 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0000451">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">healthcare information</obo:GECKO_9000001>
<obo:IAO_0000115>An information content entity about healthcare that is private or public.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">healthcare information</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EUPATH_0010032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EUPATH_0010032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physical environment</obo:GECKO_9000001>
<obo:IAO_0000115>environmental system associated with the dwelling used by humans.</obo:IAO_0000115>
<obo:IAO_0000119>Penn Group</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">environment associated with human dwelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basic cohort attributes</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timeline</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A directive information entity that specifies the sequence in which a series of events occurred or will occur.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timeline</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000005">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PCO_0000000"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basic cohort attributes</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population data</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A data item that is about a population of organisms.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000005"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">location</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A population data item that is about the geographical location of a population of organisms.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population location</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000106"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PCO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">num. participants</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A sample size that is about the count of individual organisms in a population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population size</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000009">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000052"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PCO_0000000"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000019"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basic cohort attributes</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">demographic data</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality which inheres in a population of organisms.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population quality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000009"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">demographic data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sex(es) studied in cohort</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A population quality concerning the sex or sexes of the population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population sex or sexes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000009"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">demographic data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gender(s) studied in cohort</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A population quality concerning the gender or genders of the population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population gender or genders</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000012">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000009"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">demographic data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">age range</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A population quality concerning the age range of a population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population age range</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basic cohort attributes</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data collection events</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A planned process that is a part of an investigation in which raw data is collected.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data collection</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000178"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fasting or non-fasting</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Blood that is collected from an organism which has been fasting for a given amount of time.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood collected from fasting subject</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0302893"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">storage method</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A storage process for a biosample collected from an organism.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample storage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">laboratory measures</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">genomics</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An assay that investigates the genome or genomes of an individual organism or population of organisms.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Merged GECKO 'data type' into 'genomics'.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">genomic assay</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000032"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">genomics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Microbiome markers (rRNA, etc)</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A genomic assay that profiles the microorganisms present in a sample.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Potential new OBI request</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microbiome sequencing assay</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000042 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000042">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000032"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">genomics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eQTL (Cis eQTLs and/or Trans eQTLs)</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A genomic assay that identifies genetic loci and candidate genes correlated with phenotypes.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PMID:27964730</obo:IAO_0000119>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Potential new OBI request</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eQTL analysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000044 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000044">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/STATO_0000047"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sample size</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A count of the number of biosamples collected for an investigation.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample size</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000094"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">processing method</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material processing which prepares a biosample for investigation.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample processing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000055 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000055">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0020000"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">survey administration</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">unique identifiers</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An identifier that is guaranteed to be unique among all identifiers in a particular domain.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Unique_identifier</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">unique identifier</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000060 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000060">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gender</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organismal quality inhering in a bearer by virtue of the bearer's preference towards a range of characteristics pertaining to, and differentiating between, masculinity and femininity.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Gender|PATO:0000047</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gender</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000061 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000061">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ethnicity/race</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organismal quality inhering in a bearer by virtue of the bearer's identification with a group of other individuals on the basis of presumed similarities such as language or common ancestry.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Ethnic_group</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ethnicity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000063 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000063">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">birthplace</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A geographical location in which an individual was born.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">birthplace location</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000064 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000064">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">residence</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A geographical location in which an individual currently resides.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">residence location</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000065 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000065">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">education</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organismal quality inhering in a bearer by virute of the bearer's highest level of formal education completed.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">education level</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000066 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000066">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">socio-demographic and economic characteristics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">family and household structure</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Information that is about the structure of an individual's family and/or household.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">family and household structure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000067 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000067">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history that is about the lifestyle and behaviors of an individual which may impact health outcomes.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000068 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000068">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco use history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the tobacco use or exposure of an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000069 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000069">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol use history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the alcohol consumption of an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000071 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000071">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sleep history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the sleep quality and duration of an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sleep history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000072 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000072">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dietary history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the diet and nutrition of an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nutritional history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000073 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000073">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000300"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">healthcare information</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physician/practitioner info</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A textual entity that contains contact details for an individual's physician, which may include: name, phone number, address, etc.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physician contact textual entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000091 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000091">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000115"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">non-pharmacological interventions</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A treatment history that is about any non-pharamacological treatments such as surgery or physical therapy.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">non-pharmacological treatment history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000092 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000092">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000091"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">non-pharmacological interventions</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">surgical interventions</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history that is about surgical operations performed on an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">surgical history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000093 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000093">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000115"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">medication</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history that is about the prescription drugs taken by an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prescription drug history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000094 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000094">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000093"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">medication</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">associated disease(s)</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Information that is about the disease treated by a drug prescribed to an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disease treated by prescription drug</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000096 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000096">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">medication</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">drug response(s)</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A biological process that results from a drug stimulus.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">response to medication</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000102">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/STATO_0000039"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">statistics</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">summary statistics for additional data from federated sources</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A statistic that summarizes a set of federated data.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">summary statistic for federated data</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000103 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000103">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">recreational drug history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the use of unprescribed and/or non-prescription drugs.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">recreational drug history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000104">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GECKO_0000067"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lifestyle and behaviours</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physical activity history</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lifestyle history that is about the typical physical activity of an individual.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physical activity history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/STATO_0000047"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A count which represents the subset of a collection chosen for an investigation, survey, or assay.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sample size</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000113 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000113">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000612"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000463"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">availability</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An availability textual entity that is about a substance from an organism (a biosample).</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosample availability textual entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000114 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000114">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:GECKO_9000000 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other questionnaire/survey data</obo:GECKO_9000000>
<obo:GECKO_9000001 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproduction</obo:GECKO_9000001>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history that is about pregnancy, maternity, fertility, menses, and any other reproductive aspect.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproductive history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000115 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000115">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history that is about any treatment (surgical, prescription, etc.) for disease, disorder, or symptom.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">treatment history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GECKO_0000118 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GECKO_0000118">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>