forked from GenEpiO/genepio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenepio.owl
14086 lines (9968 loc) · 669 KB
/
genepio.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/genepio.owl#"
xml:base="http://purl.obolibrary.org/obo/genepio.owl"
xmlns:IFM1="http://purl.obolibrary.org/obo/GENEPIO/IFM#"
xmlns:nation_GEO_instances="http://purl.obolibrary.org/obo/GENEPIO/imports/nation_GEO_instances.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:apollo_sv="http://purl.obolibrary.org/obo/apollo_sv.owl/"
xmlns:resource="http://semanticscience.org/resource/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ifmapp="http://purl.obolibrary.org/obo/IRIDA/imports/IFMApp#"
xmlns:efo="http://www.ebi.ac.uk/efo/"
xmlns:IFM="http://purl.obolibrary.org/obo/GENEPIO/IFM.owl#"
xmlns:ifm="http://purl.obolibrary.org/obo/IRIDA/IFM#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:ro="http://www.obofoundry.org/ro/ro.owl#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/genepio.owl">
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/ERO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/ontology-metadata.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/HP_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/EO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/TYPON_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/OAE_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/FIX_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/SIO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/STATO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/IDO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/SYMP_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/OBI_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/PATO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/UBERON_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/NCBITaxon_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/APOLLO_SV_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/EFO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/NDF-RT_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/CHEBI_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/GEO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/UO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/hardcoded.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/RO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/EVS_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/CHMO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/SO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/DOID_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/IRIDA_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/MODEL_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/ENVO_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/GENEPIO/imports/GAZETTEER_import.owl"/>
<dc:contributor xml:lang="en">Damion Dooley</dc:contributor>
<dc:contributor xml:lang="en">Emma Griffiths</dc:contributor>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000001">
<rdfs:label xml:lang="en">metadata section</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000003 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000003">
<rdfs:label xml:lang="en">term use</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000004 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000004">
<rdfs:label xml:lang="en">term as in existing standard</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000005 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000005">
<rdfs:label xml:lang="en">term source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000006 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000006">
<obo:IAO_0000115 xml:lang="en">The user interface label is the label that should be placed on a datum when presented on a form or report</obo:IAO_0000115>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">user interface label</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000007 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000007">
<rdfs:label xml:lang="en">source of values</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0000008 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0000008">
<rdfs:label xml:lang="en">in subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001745 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001745">
<obo:IAO_0000115 xml:lang="en">A user interface help annotation is a textual phrase to display with a datum (on a form or report).</obo:IAO_0000115>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">user interface help</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001746 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001746">
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">user interface hidden</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001763 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001763">
<obo:IAO_0000115 xml:lang="en">A user interface feature is a pre-set list of features and their acceptable values that a user interface rendering system should use to display a datum on a form or report</obo:IAO_0000115>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">user interface feature</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001772 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001772">
<obo:IAO_0000115 xml:lang="en">The user interface order is the order in which the annotated element should be placed with respect to other elements on a form or report. Its value is either an xsd:string which string literal As a value it may either have a st</obo:IAO_0000115>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">user interface order</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001920 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001920">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">re normalize</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/GENEPIO_1919 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GENEPIO_1919">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">re validation</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/GENEPIO_1921 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GENEPIO_1921">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<rdfs:label xml:lang="en">re display format</rdfs:label>
</rdf:Description>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!-- http://www.w3.org/2001/XMLSchema#float -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#float"/>
<!-- http://www.w3.org/2001/XMLSchema#integer -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#integer"/>
<!-- http://www.w3.org/2001/XMLSchema#nonNegativeInteger -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<!-- http://www.w3.org/2001/XMLSchema#string -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001739 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001739">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002083"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:GENEPIO_0000006 xml:lang="en">after</obo:GENEPIO_0000006>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">t1 after t2 iff:= t2 before_or_simulataneous_with t1 and not (t1 simultaeous_with t2)</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Damion Dooley</obo:IAO_0000117>
<rdfs:comment xml:lang="en">Damion Dooley's note: Intention is to have it be the inverse of "before". This allows axioms like "B after A" to be placed in class B, rather than having to phrase them as "A before B" in class A.
I believe time dependency relations (conditions) don't imply existence by themselves. If B after A, and B exists, this doesn't necessarily mean that A exists, only that if A does exist, it must be before B. To add that extra existence implication probably requires the "causally downstream of" and "immediately causally downstream of" RO relations, in a closed system where B cannot exist any other way.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000039 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000039">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/uo#is_unit_of"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/OBI_0001938 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001938">
<rdfs:comment xml:lang="en">Damion comments: In GenEpiO, If an entity has more than one value specification (in a conjunction), then it means the entitiy is a complex entity that can have a value for each specification. Minimum data requirements can be spelled out using some, min 1, max 10 etc. restrictions.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002083 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002083">
<obo:IAO_0000115 xml:lang="en">t1 before t2 iff:= t1 before_or_simulataneous_with t2 and not (t1 simultaeous_with t2)</obo:IAO_0000115>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/RO_0002350 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002350"/>
<!-- http://purl.obolibrary.org/obo/uo#is_unit_of -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/uo#is_unit_of"/>
<!-- http://www.obofoundry.org/ro/ro.owl#has_part -->
<owl:ObjectProperty rdf:about="http://www.obofoundry.org/ro/ro.owl#has_part">
<owl:inverseOf rdf:resource="http://www.obofoundry.org/ro/ro.owl#part_of"/>
<obo:IAO_0000412 xml:lang="en">GEO ontology</obo:IAO_0000412>
</owl:ObjectProperty>
<!-- http://www.obofoundry.org/ro/ro.owl#part_of -->
<owl:ObjectProperty rdf:about="http://www.obofoundry.org/ro/ro.owl#part_of"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GENEPIO_0001605 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GENEPIO_0001605">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">This relation indicates the type of datum an entity can have for a value</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Damion Dooley</obo:IAO_0000117>
<rdfs:comment xml:lang="en">This could be replaced by an OntoDt term?</rdfs:comment>
<rdfs:label xml:lang="en">has primitive value specification</rdfs:label>
</rdf:Description>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://edamontology.org/data_1093 -->
<owl:Class rdf:about="http://edamontology.org/data_1093">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001800"/>
<obo:IAO_0000115 xml:lang="en">A persistent, unique identifier of a molecular sequence database entry.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Damion Dooley</obo:IAO_0000117>
<obo:IAO_0000412>EDAM</obo:IAO_0000412>
<rdfs:label xml:lang="en">sequence accession</rdfs:label>
</owl:Class>
<!-- http://edamontology.org/data_2292 -->
<owl:Class rdf:about="http://edamontology.org/data_2292">
<owl:equivalentClass rdf:resource="http://purl.obolibrary.org/obo/OBI_0001614"/>
<rdfs:subClassOf rdf:resource="http://edamontology.org/data_1093"/>
<obo:GENEPIO_0000006 xml:lang="en">accession id</obo:GENEPIO_0000006>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<obo:IAO_0000412 xml:lang="en">EDAM</obo:IAO_0000412>
<oboInOwl:hasExactSynonym xml:lang="en">GenBank accession number; GenBank identifier; GenBank ID</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">EMBL/GenBank/DDBJ ID</rdfs:label>
<rdfs:seeAlso>http://www.ncbi.nlm.nih.gov/Sequin/acc.html</rdfs:seeAlso>
<rdfs:seeAlso>https://www.ncbi.nlm.nih.gov/books/NBK21091/table/ch18.T.refseq_accession_numbers_and_mole/</rdfs:seeAlso>
</owl:Class>
<!-- http://epidemiology_ontology.owl#EO:0000016 -->
<owl:Class rdf:about="http://epidemiology_ontology.owl#EO:0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/TRANS_0000002"/>
<obo:IAO_0000115 xml:lang="en">Transmission of a disease agent (infectious pathogen, toxic chemical, etc.) from a source that is common to those who acquire the disease. Common vehicles include air, water, food, injected substances. Legionellosis is an example of common vehicle spread in air that has passed through air conditioning equipment contaminated by the causal organism. HIV disease and hepatitis B and C can be spread among illicit drug users by the common vehicle of contaminated needles and syringes. Cholera and many other waterborne diseases are spread by the common vehicle of contaminated water.</obo:IAO_0000115>
<rdfs:label xml:lang="en">common vehicle transmission</rdfs:label>
</owl:Class>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000000302 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000000302">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001843"/>
<obo:GENEPIO_0000006 xml:lang="en">acute disease</obo:GENEPIO_0000006>
<obo:IAO_0000116 xml:lang="en">Need to obtain definition, and discuss adding other [Disease/Finding] states from National Drug File Reference Terminology</obo:IAO_0000116>
</rdf:Description>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000000787 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000000787">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001212"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001843"/>
<obo:GENEPIO_0000006 xml:lang="en">chronic disease</obo:GENEPIO_0000006>
<rdfs:comment xml:lang="en">Damion Dooley note: could make equivalent to http://purl.obolibrary.org/obo/OGMS_0000064 chronic disease course.</rdfs:comment>
</rdf:Description>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000002583 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000002583">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001843"/>
<obo:GENEPIO_0000006 xml:lang="en">recurring disease</obo:GENEPIO_0000006>
</rdf:Description>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000003449 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000003449">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000038"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000117>Damion Dooley</obo:IAO_0000117>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001837"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001845"/>
</rdf:Description>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000003449"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001837"/>
<rdfs:label xml:lang="en">critical</rdfs:label>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000003449"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001845"/>
<rdfs:label xml:lang="en">critical</rdfs:label>
</owl:Axiom>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000171390 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000171390">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001420"/>
</rdf:Description>
<!-- http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000181035 -->
<rdf:Description rdf:about="http://evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#N0000181035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001843"/>
<obo:GENEPIO_0000006 xml:lang="en">spontaneous remission</obo:GENEPIO_0000006>
</rdf:Description>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C105370 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C105370">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001423"/>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C1225 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C1225">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001420"/>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C25251 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C25251">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001543"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001645"/>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C25667 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C25667">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001543"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001645"/>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C68615 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C68615">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001126"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001224"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001739"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001225"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C70810 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C70810">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001126"/>
</owl:Class>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C71164 -->
<rdf:Description rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C71164">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</rdf:Description>
<!-- http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C74723 -->
<owl:Class rdf:about="http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C74723">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001628"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000039"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UO_0000318"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001605"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://purl.bioontology.org/ontology/MESH/D000830 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/MESH/D000830">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001175"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</owl:Class>
<!-- http://purl.bioontology.org/ontology/MESH/D000835 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/MESH/D000835">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001175"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</owl:Class>
<!-- http://purl.bioontology.org/ontology/MESH/D001482 -->
<rdf:Description rdf:about="http://purl.bioontology.org/ontology/MESH/D001482">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001568"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001605"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
</rdf:Description>
<!-- http://purl.bioontology.org/ontology/MESH/D057805 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/MESH/D057805">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001175"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</owl:Class>
<!-- http://purl.bioontology.org/ontology/MESH/D058751 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/MESH/D058751">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001175"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000006 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001884"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BTO_0000155 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BTO_0000155">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001636"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BTO_0000818 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BTO_0000818">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0000025"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BTO_0001481 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BTO_0001481">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0000028"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BTO_0001762 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BTO_0001762">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001206"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BTO_0004070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BTO_0004070">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BTO_0001481"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_16991 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16991">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33696"/>
<rdfs:label xml:lang="en">deoxyribonucleic acid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_23367 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_23367">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_24431 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_24431">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_33256 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33256">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001432"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_33281 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33281">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001186"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000090"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_33290 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33290">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001637"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHEBI_50906 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_50906">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CHMO_0002743 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHMO_0002743">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001635"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
<obo:GENEPIO_0000006 xml:lang="en">collection matrix</obo:GENEPIO_0000006>
<rdfs:comment xml:lang="en">"This observable is important where process of capturing sample can affect dna extraction."</rdfs:comment>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CVDO_0000597 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CVDO_0000597">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001843"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/DOID_3044 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_3044">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001205"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/DOID_4 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_4">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000938"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/DOID_9471 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_9471">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001682"/>
<oboInOwl:hasDbXref rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000015 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001151"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000020 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001151"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000023 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001151"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000027 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001151"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000078 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000078">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001269"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00000428 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000428">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001626"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000856 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00000856">
<owl:equivalentClass rdf:resource="http://semanticscience.org/resource/SIO_000665"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000415"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00002173 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00002173">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001297"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00002222 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00002222">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001297"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00002297 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00002297">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001626"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00003031 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00003031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00003096 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00003096">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001154"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ENVO_00010483 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00010483">
<owl:equivalentClass rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0000030"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001626"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
<oboInOwl:hasDbXref xml:lang="en">NCBI BioSample:*isolation_source</oboInOwl:hasDbXref>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01000254 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01000254">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001626"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EO_0007027 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/EO_0007027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001626"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ERO_0001642 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001642">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0000071"/>
<oboInOwl:hasDbXref>NCBI SRA: ION_TORRENT</oboInOwl:hasDbXref>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/ERO_0001965 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001965">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001537"/>
<obo:IAO_0000115>A role that inheres in a material that is input as the subject of interest in a scientific technique - either as an entity about which data is generated in an assay or study, or an entity that is transformed or modified in a material processing technique (e.g. the source from which a biological sample is taken)</obo:IAO_0000115>
<rdfs:label>experimental subject role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ExO_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ExO_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001222"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001655"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/IDO_0000531"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<oboInOwl:hasDbXref>AHA HIPPA: Condition</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>NCBI BioSample: host_health_state</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref xml:lang="en">NIH Terms: Condition</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym xml:lang="en">condition</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym xml:lang="en">medical condition</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym xml:lang="en">medical state</oboInOwl:hasExactSynonym>
<rdfs:comment xml:lang="en">Damion Dooley note: GenEpiO includes various health status descriptors here; many are annotated as included in the American AHA HIPPA or United Kingdom NHS terminologies.</rdfs:comment>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ExO_0000057 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ExO_0000057">
<rdfs:subClassOf rdf:resource="http://epidemiology_ontology.owl#EO:0000016"/>
<obo:IAO_0000115 xml:lang="en">The process of drawing in by breathing.</obo:IAO_0000115>
<obo:IAO_0000412 xml:lang="en">http://purl.obolibrary.org/obo/ExO_0000057</obo:IAO_0000412>
<rdfs:label xml:lang="en">inhalation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FIX_0000278 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FIX_0000278">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001628"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000039"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/UO_0000247"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/GENEPIO_0001605"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">redox potential, measured relative to a hydrogen cell, indicating oxidation or reduction potential</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">MIxS</obo:IAO_0000119>
</owl:Class>