-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathppod.owl
2371 lines (1609 loc) · 152 KB
/
ppod.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://asi.ice.ucdavis.edu/sustsource/ppod.owl#"
xml:base="http://asi.ice.ucdavis.edu/sustsource/ppod.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://asi.ice.ucdavis.edu/sustsource/schemas/ppod.owl#">
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/bfo/2.0/bfo.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000111">
<rdfs:label xml:lang="en">editor preferred label</rdfs:label>
<rdfs:label>editor preferred term</rdfs:label>
<rdfs:label xml:lang="en">editor preferred term</rdfs:label>
<rdfs:label>editor preferred term~editor preferred label</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000112">
<rdfs:label>example of usage</rdfs:label>
<rdfs:label xml:lang="en">example of usage</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114">
<rdfs:label>has curation status</rdfs:label>
<rdfs:label xml:lang="en">has curation status</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
<rdfs:label xml:lang="en">definition</rdfs:label>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">textual definition</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000116">
<rdfs:label>editor note</rdfs:label>
<rdfs:label xml:lang="en">editor note</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000117">
<rdfs:label>term editor</rdfs:label>
<rdfs:label xml:lang="en">term editor</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000118">
<rdfs:label>alternative term</rdfs:label>
<rdfs:label xml:lang="en">alternative term</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<rdfs:label>definition source</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000232 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000232">
<rdfs:label xml:lang="en">curator note</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000412">
<rdfs:label xml:lang="en">imported from</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/RO_0001900 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001900"/>
<!-- 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/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source">
<rdfs:label>Source</rdfs:label>
<rdfs:label xml:lang="en-us">Source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/hasVersion -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasVersion">
<rdfs:label xml:lang="en">Has Version</rdfs:label>
</owl:AnnotationProperty>
<!-- 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://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
<rdfs:label>is defined by</rdfs:label>
</rdf:Description>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdfs:label>label</rdfs:label>
</rdf:Description>
<!-- 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#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition">
<rdfs:label xml:lang="en">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example">
<rdfs:label xml:lang="en">example</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote">
<rdfs:label xml:lang="en">scope note</rdfs:label>
</owl:AnnotationProperty>
<!-- http://xmlns.com/foaf/0.1/page -->
<owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/page"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://dev.poderopedia.com/vocab/hasMainSector -->
<owl:ObjectProperty rdf:about="http://dev.poderopedia.com/vocab/hasMainSector">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://dev.poderopedia.com/vocab/schema</obo:IAO_0000412>
<rdfs:label xml:lang="en">Has main sector</rdfs:label>
<rdfs:label xml:lang="es">Sector principal</rdfs:label>
</owl:ObjectProperty>
<!-- http://dev.poderopedia.com/vocab/hasOtherSector -->
<owl:ObjectProperty rdf:about="http://dev.poderopedia.com/vocab/hasOtherSector">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://dev.poderopedia.com/vocab/schema</obo:IAO_0000412>
<rdfs:label xml:lang="en">Secondary sector</rdfs:label>
<rdfs:label xml:lang="es">Sector secundario</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000066 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000066">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">occurs in</obo:IAO_0000111>
<obo:IAO_0000115 xml:lang="en">b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">occurs_in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds_in</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/geo.owl</obo:IAO_0000412>
<rdfs:comment>Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">occurs in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/ERO_0000029 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0000029">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<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_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<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_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_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">change the domain tye to access service</rdfs:comment>
<rdfs:label xml:lang="en">provides access to</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">participates in</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this blood clot participates in this blood coagulation</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this input material (or this output material) participates in this process</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigator participates in this investigation</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a continuant and a process, in which the continuant is somehow involved in the process</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">participates_in</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">participates in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">has participant</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this blood coagulation has participant this blood clot</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigation has participant this investigator</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this process has participant this input material (or this output material)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a process and a continuant, in which the continuant is somehow involved in the process</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_participant</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<dc:source>http://www.obofoundry.org/ro/#OBO_REL:has_participant</dc:source>
<rdfs:label xml:lang="en">has participant</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000081 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000081">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 xml:lang="en">this investigator role is a role of this person</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">is role of</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">role_of</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">role of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 xml:lang="en">this person has role this investigator role (more colloquially: this person has this role of investigator)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_role</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">has role</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0001000 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001000">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 xml:lang="en">this cell derives from this parent cell (cell division)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this nucleus derives from this parent nucleus (nuclear division)</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">derives_from</obo:IAO_0000118>
<obo:IAO_0000232>This relation is taken from the RO2005 version of RO. It may be obsoleted and replaced by relations with different definitions. See also the 'develops from' family of relations.</obo:IAO_0000232>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label xml:lang="en">derives from</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0001001 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001001">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 xml:lang="en">this parent cell derives into this cell (cell division)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this parent nucleus derives into this nucleus (nuclear division)</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">derives_into</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label xml:lang="en">derives into</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0001015 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001015">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">is location of</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my head is the location of my brain</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this cage is the location of this rat</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between two independent continuants, the location and the target, in which the target is entirely within the location</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">location_of</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/geo.owl</obo:IAO_0000412>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<rdfs:label xml:lang="en">location of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0001025 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001025">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">located in</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my brain is located in my head</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this rat is located in this cage</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between two independent continuants, the target and the location, in which the target is entirely within the location</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">located_in</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/geo.owl</obo:IAO_0000412>
<obo:RO_0001900 rdf:resource="http://purl.obolibrary.org/obo/RO_0001901"/>
<dc:source>http://www.obofoundry.org/ro/#OBO_REL:located_in</dc:source>
<rdfs:label xml:lang="en">located in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002234 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002234">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115>p has output c iff c is a participant in p, c is present at the end of p, and c is not present at the beginning of p.</obo:IAO_0000115>
<obo:IAO_0000117>Chris Mungall</obo:IAO_0000117>
<obo:IAO_0000118>produces</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label xml:lang="en">has output</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002353 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002353">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000115>inverse of has output</obo:IAO_0000115>
<obo:IAO_0000117>Chris Mungall</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/RO_0002259"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label xml:lang="en">output of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002434 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002434">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000115>A relationship that holds between two entities in which the processes executed by the two entities are causally connected.</obo:IAO_0000115>
<obo:IAO_0000116 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">Considering relabeling as 'pairwise interacts with'</obo:IAO_0000116>
<obo:IAO_0000116>This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.</obo:IAO_0000116>
<obo:IAO_0000117>Chris Mungall</obo:IAO_0000117>
<obo:IAO_0000232>Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules.</obo:IAO_0000232>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:hasExactSynonym>in pairwise interaction with</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label>interacts with</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.obolibrary.org/obo/MI_0914</rdfs:seeAlso>
<foaf:page rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/oborel/obo-relations/wiki/InteractionRelations</foaf:page>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002461 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002461">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000117>Chris Mungall</obo:IAO_0000117>
<obo:IAO_0000232>Experimental: relation used for defining interaction relations. An interaction relation holds when there is an interaction event with two partners. In a directional interaction, one partner is deemed the subject, the other the target</obo:IAO_0000232>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<rdfs:label>partner in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0003000 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0003000">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.</obo:IAO_0000115>
<obo:IAO_0000117>Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Note that this definition doesn't quite distinguish the output of a transformation process from a production process, which is related to the identity/granularity issue.</rdfs:comment>
<rdfs:label xml:lang="en">produces</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0003001 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0003001">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115>a produced_by b iff some process that occurs_in b has_output a.</obo:IAO_0000115>
<obo:IAO_0000117>Melissa Haendel</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/ro/releases/2018-10-19/ro.owl</obo:IAO_0000412>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/ro/subsets#ro-eco"/>
<rdfs:label xml:lang="en">produced by</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/contributor -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/contributor">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">contributor</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/coverage -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/coverage">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/aeo.owl</obo:IAO_0000412>
<terms:description xml:lang="en">Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#coverageT-001"/>
<rdfs:comment xml:lang="en">The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/license -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/license">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/aeo.owl</obo:IAO_0000412>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#license-002"/>
<rdfs:comment xml:lang="en">A legal document giving official permission to do something with the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">License</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/spatial -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/spatial">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/aeo.owl</obo:IAO_0000412>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#spatial-003"/>
<rdfs:comment xml:lang="en">Spatial characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Spatial Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/temporal -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/temporal">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/aeo.owl</obo:IAO_0000412>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#temporal-003"/>
<rdfs:comment xml:lang="en">Temporal characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Temporal Coverage</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#affiliatedOrganization -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#affiliatedOrganization">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">has affiliated organization</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#distributesFundingFrom -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#distributesFundingFrom">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. </vitro:descriptionAnnot>
<rdfs:label xml:lang="en">distributes funding from</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#fundingVehicleFor -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#fundingVehicleFor">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">provides funding for</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#governingAuthorityFor -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#governingAuthorityFor">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">governing authority for</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasCollaborator -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasCollaborator">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">has collaborator</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasFundingVehicle -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasFundingVehicle">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">funding provided via</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasGoverningAuthority -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasGoverningAuthority">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">governing authority</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasPredecessorOrganization -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasPredecessorOrganization">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">predecessor organization</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasSubjectArea -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">has subject area</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#hasSuccessorOrganization -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasSuccessorOrganization">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">successor organization</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#providesFundingThrough -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#providesFundingThrough">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. </obo:IAO_0000112>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">provides funding through</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#roleContributesTo -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#roleContributesTo">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">contributes to</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#supportedBy -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#supportedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general relationship of support</vitro:descriptionAnnot>
<rdfs:label xml:lang="en">supported by</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/core#supports -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#supports">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general relationship of support</vitro:descriptionAnnot>
<rdfs:label xml:lang="en">supports</rdfs:label>
</owl:ObjectProperty>
<!-- http://vivoweb.org/ontology/scientific-research#accessProvidedBy -->
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/scientific-research#accessProvidedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://vivoweb.org/ontology/core</obo:IAO_0000412>
<rdfs:label xml:lang="en">access provided by</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000154 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000154">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-03-21T00:06:47Z</dc:date>
<rdfs:comment>Upper-level property to link especially persons and organizations with subject domains, activities, and issues. Gets subdivided using the Harry Collins Periodic Table of Expertises.</rdfs:comment>
<rdfs:label>has expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000209 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000209">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000154"/>
<obo:IAO_0000115>A personal quality that is a capacity to turn latent interactional expertise into expressed interactional expertise.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T21:16:45Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has disposition towards</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000210 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000210">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000209"/>
<obo:IAO_0000115>A personal quality of having the skills needed to interact with others.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T21:17:00Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has interactive ability at</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000211 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000211">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000209"/>
<obo:IAO_0000115>A personal quality of being able to reflect deeply about a domain.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T21:17:21Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has reflective ability at</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000212 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000212">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000154"/>
<obo:IAO_0000115>Specialist expertise is expertise that only some members of a society possess.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has specialist expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000213 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000213">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000212"/>
<obo:IAO_0000115>Ubiquitous tacit knowledge is knowledge built upon understanding that is common across a society but cannot be expressed in words.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has ubiquitous tacit knowledge of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000214 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000214">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000213"/>
<obo:IAO_0000115>Knowledge of a fact that does not allow one to do much more with it than restate it. "Beer-mat knowledge" refers to the sort of trivia that might be printed on a beer mat.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has beer-mat knowledge of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000215 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000215">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000213"/>
<obo:IAO_0000115>Knowledge of a scientific or academic domain that is gathered from mass media or popular books.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has popular understanding of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000216 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000216">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000213"/>
<obo:IAO_0000115>Knowledge that comes from reading primary or quasi-primary source literature.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has primary source knowledge of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000217 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000217">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000212"/>
<obo:IAO_0000115>Specialist tacit knowledge is knowledge of a specialized domain that cannot be expressed in words.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has specialist tacit knowledge of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000218 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000218">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000217"/>
<obo:IAO_0000115>Interactional expertise is expertise in the language of a specialism in the absence of expertise in its practice.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has interactional expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000219 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000219">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000217"/>
<obo:IAO_0000115>Contributory expertise is that which enables one to contribute to the domain to which the expertise pertains: contributory experts have the ability to do things within the domain of expertise.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has contributory expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000220 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000220">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000154"/>
<obo:IAO_0000115>Meta-expertises are expertises used to judge other expertises.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has meta-expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000221 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000221">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000220"/>
<obo:IAO_0000115>External meta-expertise does not depend on an acquaintance of the substance of the expertise under judgment.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has external meta-expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000222 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000222">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000221"/>
<obo:IAO_0000115>Ubiquitous discrimination is a type of judgment of expertise which is acquired as part-and-parcel of living in a society. It often involves social understanding of the social and cognitive networks from which a claim of expertise originates.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has ubiquitous discrimination in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000223 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000223">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000221"/>
<obo:IAO_0000115>Local discrimination is judgment of expertise based upon localized understanding of the social and geographical context of a domain of interest.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has local discrimination in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000224 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000224">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000220"/>
<obo:IAO_0000115>Internal meta-expertise is a capacity to judge expertise that depends upon acquaintance with the substance of the expertise being judged.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has internal meta-expertise in</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000225 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000225">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000224"/>
<obo:IAO_0000115>Technical connoisseurship is a type of judgment of expertise that depends upon having knowledge of the expertise under judgment, but not at the level of a practitioner. For instance, an art critic or a wine buff may not themselves be an artist or a winemaker. It is the ability to recognize skillful practice</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.ic-foods.org/ontologies/expertise.owl</obo:IAO_0000412>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2647-8235"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-07-20T22:29:47Z</dc:date>
<dc:source>Collins, Harry, and Robert Evans. 2007. Rethinking Expertise. Chicago: University of Chicago Press. http://ebookcentral.proquest.com/lib/ucdavis/detail.action?docID=408441.</dc:source>
<rdfs:label>has technical connoisseurship of</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000226 -->
<owl:ObjectProperty rdf:about="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000226">
<rdfs:subPropertyOf rdf:resource="http://www.ic-foods.org/ontologies/expertise.owl#EEXP_000224"/>