-
Notifications
You must be signed in to change notification settings - Fork 7
/
vivo.owl
12612 lines (9054 loc) · 715 KB
/
vivo.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://vivoweb.org/ontology/core#"
xml:base="http://vivoweb.org/ontology/core"
xmlns:study_protocol="http://purl.org/net/OCRe/study_protocol.owl#"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:geopolitical="http://aims.fao.org/aos/geopolitical.owl#"
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
xmlns:skos2="http://www.w3.org/2008/05/skos#"
xmlns:core="http://vivoweb.org/ontology/core#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:statistics="http://purl.org/net/OCRe/statistics.owl#">
<owl:Ontology rdf:about="http://vivoweb.org/ontology/core">
<rdfs:label xml:lang="en-US">VIVO Core Ontology</rdfs:label>
<terms:license rdf:resource="https://spdx.org/licenses/Unlicense.html"/>
<terms:creator rdf:resource="VIVO Ontology Interest Group"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://aims.fao.org/aos/geopolitical.owl#sourceCreator -->
<owl:AnnotationProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#sourceCreator"/>
<!-- http://aims.fao.org/aos/geopolitical.owl#sourceIdentifier -->
<owl:AnnotationProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#sourceIdentifier"/>
<!-- http://aims.fao.org/aos/geopolitical.owl#sourceModified -->
<owl:AnnotationProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#sourceModified"/>
<!-- http://purl.obolibrary.org/obo/ARG_0000033 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ARG_0000033"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000179 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000179"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000180 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000180"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000232 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000600 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000600"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000601 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000601"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000602 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000602"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source"/>
<!-- http://purl.org/net/OCRe/statistics.owl#curator -->
<owl:AnnotationProperty rdf:about="http://purl.org/net/OCRe/statistics.owl#curator"/>
<!-- http://purl.org/net/OCRe/study_protocol.owl#develop_comment -->
<owl:AnnotationProperty rdf:about="http://purl.org/net/OCRe/study_protocol.owl#develop_comment"/>
<!-- http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot -->
<owl:AnnotationProperty rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot"/>
<!-- http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot -->
<owl:AnnotationProperty rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot"/>
<!-- http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot -->
<owl:AnnotationProperty rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot"/>
<!-- 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#isDefinedBy -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
<!-- 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/2002/07/owl#minCardinality -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#minCardinality"/>
<!-- http://www.w3.org/2003/06/sw-vocab-status/ns#term_status -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!-- http://www.w3.org/2008/05/skos#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2008/05/skos#editorialNote"/>
<!-- http://www.w3.org/2008/05/skos#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2008/05/skos#scopeNote"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral -->
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<!-- http://www.w3.org/2000/01/rdf-schema#Literal -->
<rdfs:Datatype rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<!-- http://www.w3.org/2001/XMLSchema#anyURI -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#anyURI"/>
<!-- http://www.w3.org/2001/XMLSchema#boolean -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#boolean"/>
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!-- http://www.w3.org/2001/XMLSchema#int -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#int"/>
<!-- http://www.w3.org/2001/XMLSchema#string -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://aims.fao.org/aos/geopolitical.owl#hasBorderWith -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasBorderWith">
<rdfs:label xml:lang="en">has border with</rdfs:label>
<geopolitical:sourceModified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-05-01</geopolitical:sourceModified>
<geopolitical:sourceCreator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations cartographic maps</geopolitical:sourceCreator>
<terms:source rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf</terms:source>
<geopolitical:sourceIdentifier rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.un.org/Depts/Cartographic/map/profile/world00.pdf</geopolitical:sourceIdentifier>
</owl:ObjectProperty>
<!-- http://aims.fao.org/aos/geopolitical.owl#hasMember -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMember">
<rdfs:label xml:lang="en">has member country or territory</rdfs:label>
<rdfs:domain rdf:resource="http://aims.fao.org/aos/geopolitical.owl#group"/>
<owl:inverseOf rdf:resource="http://aims.fao.org/aos/geopolitical.owl#isInGroup"/>
<rdfs:range rdf:resource="http://aims.fao.org/aos/geopolitical.owl#territory"/>
</owl:ObjectProperty>
<!-- http://aims.fao.org/aos/geopolitical.owl#isAdministeredBy -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#isAdministeredBy">
<rdfs:label xml:lang="en">is administered by</rdfs:label>
<geopolitical:sourceModified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-05-01</geopolitical:sourceModified>
<geopolitical:sourceCreator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations cartographic maps</geopolitical:sourceCreator>
<terms:source rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf</terms:source>
<geopolitical:sourceIdentifier xml:lang="en">http://www.un.org/Depts/Cartographic/map/profile/world00.pdf</geopolitical:sourceIdentifier>
</owl:ObjectProperty>
<!-- http://aims.fao.org/aos/geopolitical.owl#isInGroup -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#isInGroup">
<rdfs:label xml:lang="en">in geographic grouping</rdfs:label>
<rdfs:range rdf:resource="http://aims.fao.org/aos/geopolitical.owl#group"/>
<rdfs:domain rdf:resource="http://aims.fao.org/aos/geopolitical.owl#territory"/>
</owl:ObjectProperty>
<!-- http://aims.fao.org/aos/geopolitical.owl#isPredecessorOf -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#isPredecessorOf">
<rdfs:label xml:lang="en">is predecessor of</rdfs:label>
<geopolitical:sourceModified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-04-15</geopolitical:sourceModified>
<geopolitical:sourceCreator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations Statistics Division</geopolitical:sourceCreator>
<terms:source rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm</terms:source>
<geopolitical:sourceIdentifier xml:lang="en">http://unstats.un.org/unsd/methods/m49/m49chang.htm</geopolitical:sourceIdentifier>
<geopolitical:sourceIdentifier xml:lang="fr">http://unstats.un.org/unsd/methods/m49/m49chgef.htm</geopolitical:sourceIdentifier>
<rdfs:range rdf:resource="http://aims.fao.org/aos/geopolitical.owl#area"/>
<rdfs:domain rdf:resource="http://aims.fao.org/aos/geopolitical.owl#area"/>
<owl:inverseOf rdf:resource="http://aims.fao.org/aos/geopolitical.owl#isSuccessorOf"/>
</owl:ObjectProperty>
<!-- http://aims.fao.org/aos/geopolitical.owl#isSuccessorOf -->
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#isSuccessorOf">
<rdfs:label xml:lang="en">is successor of</rdfs:label>
<geopolitical:sourceModified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-04-15</geopolitical:sourceModified>
<geopolitical:sourceCreator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations Statistics Division</geopolitical:sourceCreator>
<terms:source rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm</terms:source>
<geopolitical:sourceIdentifier xml:lang="en">http://unstats.un.org/unsd/methods/m49/m49chang.htm</geopolitical:sourceIdentifier>
<geopolitical:sourceIdentifier xml:lang="fr">http://unstats.un.org/unsd/methods/m49/m49chgef.htm</geopolitical:sourceIdentifier>
<rdfs:range rdf:resource="http://aims.fao.org/aos/geopolitical.owl#area"/>
<rdfs:domain rdf:resource="http://aims.fao.org/aos/geopolitical.owl#area"/>
</owl:ObjectProperty>
<!-- http://isf/deprecated_op -->
<owl:ObjectProperty rdf:about="http://isf/deprecated_op"/>
<!-- http://purl.obolibrary.org/obo/ARG_2000028 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ARG_2000028">
<rdfs:label xml:lang="en">has contact info</rdfs:label>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ARG_2000029"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ARG_2000379"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ARG_2000029 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ARG_2000029">
<rdfs:label xml:lang="en">contact info for</rdfs:label>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ARG_2000379"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ARG_2000390 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ARG_2000390">
<rdfs:label xml:lang="en">context for</rdfs:label>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ARG_2000391"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ARG_2000391 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ARG_2000391">
<rdfs:label xml:lang="en">has context</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ARG_2000399 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ARG_2000399">
<rdfs:label xml:lang="en">has contact agent</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">part of</rdfs:label>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054">
<rdfs:label xml:lang="en">realized in</rdfs:label>
<obo:BFO_0000180>realizedIn</obo:BFO_0000180>
<obo:BFO_0000179>realized-in</obo:BFO_0000179>
<obo:IAO_0000600>[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
<obo:IAO_0000602>(forall (x y z t) (if (and (RealizableEntity x) (Process y) (realizesAt y x t) (bearerOfAt z x t)) (hasParticipantAt y z t))) // axiom label in BFO2 CLIF: [106-002] </obo:IAO_0000602>
<obo:IAO_0000601 xml:lang="en">if a realizable entity b is realized in a process p, then p stands in the has_participant relation to the bearer of b. (axiom label in BFO2 Reference: [106-002])</obo:IAO_0000601>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000055"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055">
<rdfs:label xml:lang="en">realizes</rdfs:label>
<obo:IAO_0000602>(forall (x y t) (if (realizesAt x y t) (and (Process x) (or (Disposition y) (Role y)) (exists (z) (and (MaterialEntity z) (hasParticipantAt x z t) (bearerOfAt z y t)))))) // axiom label in BFO2 CLIF: [059-003] </obo:IAO_0000602>
<obo:BFO_0000180>realizes</obo:BFO_0000180>
<obo:BFO_0000179>realizes</obo:BFO_0000179>
<obo:IAO_0000600 xml:lang="en">to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000029 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000029">
<rdfs:label xml:lang="en">provides access to</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An access service that provides access to a flow cytometer.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Instruments, reagents, organisms, or software for which the service provides access.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">change the domain type to access service</rdfs:comment>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/scientific-research#accessProvidedBy"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000006"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001716"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000031 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000031">
<rdfs:label xml:lang="en">uses</rdfs:label>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Here there are things to be fixed (for instance a service can use a technique...)</rdfs:comment>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Microsoft powerpoint is commonly used in research laboratories to prepare presentations.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Software or protocol used by the laboratory.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uses</obo:IAO_0000111>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000070"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001716"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000272"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000033 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000033">
<rdfs:label xml:lang="en">has expertise in technique</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brian Druker has expertise in cancer research.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technique in which the person is proficient. </obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has expertise</obo:IAO_0000111>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000007"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000034 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000034">
<rdfs:label xml:lang="en">manufacturer</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Organization or person that created the resource.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Santa Cruz Biotechnology is the manufacturer of many antibodies.</obo:IAO_0000112>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has manufacturer</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/OBI_0000835"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000006"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001716"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000037 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000037">
<rdfs:label xml:lang="en">contact or provider for service</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A core lab providing cell sorting to individual labs.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Service offered by the organization.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">provides services</obo:IAO_0000111>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000390"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization"/>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000038 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000038">
<rdfs:label xml:lang="en">specifies the use of</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A protocol can specify the use of a flow cytometer.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Instruments, techniques, reagents, organisms, or software that are referenced in a protocol.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">specifies the use of</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000272"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000006"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000007"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000070 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000070">
<rdfs:label xml:lang="en">used by</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A laboratory uses Microsoft Word.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Laboratory that uses the protocol or software.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">used by</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001716"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000272"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000390 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000390">
<rdfs:label xml:lang="en">service provided by</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A core laboratory provides a service.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Organization or laboratory performing the service.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">service provided by</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization"/>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000397 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000397">
<rdfs:label xml:lang="en">performs technique</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A cancer researcher performs apoptosis assays.</obo:IAO_0000112>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technique carried out by the person or laboratory.</obo:IAO_0000115>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000007"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000398"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Laboratory"/>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000398 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000398">
<rdfs:label xml:lang="en">is performed by</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Confocal microscopy is performed by a confocal core laboratory.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person or laboratory that performs the service or technique.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">is performed by</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000007"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Laboratory"/>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000460 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000460">
<rdfs:label xml:lang="en">has documentation</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An antibody has documentation describing attributes of the antibody.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Document that contains relevant resource information.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has documentation</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Document"/>
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/scientific-research#documentationFor"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000005"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000006"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000014"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000020"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000071"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0001716"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000272"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000481 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000481">
<rdfs:label xml:lang="en">realizes protocol</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A sequencing protocol used for next generation sequencing.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Protocol used to perform the service.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">placeholder: need to be modeled for the proper kind of service (production services)</rdfs:comment>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">realizes protocol</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/OBI_0000272"/>
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/scientific-research#protocolRealizedBy"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000005"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000014"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000482 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000482">
<rdfs:label xml:lang="en">uses software</rdfs:label>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Placeholder needs to be redesign</rdfs:comment>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sequence analysis software.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Software used to perform the service.</obo:IAO_0000115>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uses software</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000071"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#DeprecatedProperty"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000543 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000543">
<rdfs:label xml:lang="en">related technique</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Flow cytometry is a related technique for a flow cytometer instrument.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Method in which the resource can be used.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related technique</obo:IAO_0000111>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000007"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000572 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000572">
<rdfs:label xml:lang="en">used to study</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A study of hibernation in bears.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological process studied in the organism.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">used to study</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000775 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000775">
<rdfs:label xml:lang="en">has residency requirement</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research opportunity requires applicants to be US citizens.</obo:IAO_0000112>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">US residency status of applicants that may apply for the student research opportunity.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has residency requirement</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000595"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000776"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000918 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000918">
<rdfs:label xml:lang="en">related research project</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research project studying breast cancer.</obo:IAO_0000112>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Research project during which the biological specimen was collected.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related research project</obo:IAO_0000111>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000014"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000020"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000919"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000919 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000919">
<rdfs:label xml:lang="en">related biological specimen</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A breast cancer specimen.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological specimen collected as part of the research project.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related biological specimen</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000014"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000020"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0001518 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0001518">
<rdfs:label xml:lang="en">has phase</rdfs:label>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 1 clinical trial.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase of a clinical trial to evaluate risk and to clinically evaluate the efficacy of drugs or biologicals.</obo:IAO_0000115>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has phase</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:range rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0001520 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0001520">
<rdfs:label xml:lang="en">performs human study</rdfs:label>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Human study performed by the organization.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The Jackson Heart Institute performs human studies on heart disease.</obo:IAO_0000112>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">performs human study</obo:IAO_0000111>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ERO_0000015"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0001521"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0001521 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0001521">
<rdfs:label xml:lang="en">performed by organization</rdfs:label>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jackson State University performs human studies on heart disease.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Organization that performs the human study.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">human study performed by</obo:IAO_0000111>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/ERO_0000015"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<rdfs:subPropertyOf rdf:resource="http://www.obofoundry.org/ro/ro.owl#has_agent"/>
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000039 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000039">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:label xml:lang="en">has measurement unit label</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000003"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136">
<rdfs:label xml:lang="en">is about</rdfs:label>
<obo:IAO_0000116 xml:lang="en">7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of "mentions" relation. Weaken the is_about relationship to be primitive.
We will try to build it back up by elaborating the various subproperties that are more precisely defined.
Some currently missing phenomena that should be considered "about" are predications - "The only person who knows the answer is sitting beside me" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.</obo:IAO_0000116>
<obo:IAO_0000119 xml:lang="en">Smith, Ceusters, Ruttenberg, 2000 years of philosophy</obo:IAO_0000119>
<obo:IAO_0000112 xml:lang="en">This document is about information artifacts and their representations</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">is_about is a (currently) primitive relation that relates an information artifact to an entity.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">person:Alan Ruttenberg</obo:IAO_0000117>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000142 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000142">
<rdfs:label xml:lang="en">mentions</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000221 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000221">
<rdfs:label xml:lang="en">is quality measurement of</rdfs:label>
<obo:IAO_0000116 xml:lang="en">8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later</obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000116 xml:lang="en">From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]
This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it "measuring" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
Werner suggests a solution based on "Magnitudes" a proposal for which we are awaiting details.
--
From the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]
unit of measure is a quality, e.g. the length of a ruler.
[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]
[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]
a represents b means either a denotes b or a describes
describe:
a describes b means a is about b and a allows an inference of at least one quality of b
We have had a long discussion about denotes versus describes.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.
a is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">From the second meeting on IAO:
An attempt at defining assay using Barry's "reliability" wording
assay:
process and has_input some material entity
and has_output some information content entity
and which is such that instances of this process type reliably generate
outputs that describes the input.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it "measuring" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.
Werner suggests a solution based on "Magnitudes" a proposal for which we are awaiting details.</obo:IAO_0000116>