-
Notifications
You must be signed in to change notification settings - Fork 2
/
vivo_owl.ttl
7098 lines (6236 loc) · 323 KB
/
vivo_owl.ttl
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
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix geopolitical: <http://aims.fao.org/aos/geopolitical.owl#> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix ns2: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix skos2: <http://www.w3.org/2008/05/skos#> .
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix statistics: <http://purl.org/net/OCRe/statistics.owl#> .
@prefix study_protocol: <http://purl.org/net/OCRe/study_protocol.owl#> .
<http://vivoweb.org/ontology/core>
a owl:Ontology ;
rdfs:label "VIVO Core Ontology"@en-US .
<http://aims.fao.org/aos/geopolitical.owl#sourceCreator> a owl:AnnotationProperty .
<http://aims.fao.org/aos/geopolitical.owl#sourceIdentifier> a owl:AnnotationProperty .
<http://aims.fao.org/aos/geopolitical.owl#sourceModified> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/ARG_0000033> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/BFO_0000179> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/BFO_0000180> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000111> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000112> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000114> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000115> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000116> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000117> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000118> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000119> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000231> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000232> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000412> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000600> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000601> a owl:AnnotationProperty .
<http://purl.obolibrary.org/obo/IAO_0000602> a owl:AnnotationProperty .
dc:description a owl:AnnotationProperty .
dc:source a owl:AnnotationProperty .
<http://purl.org/net/OCRe/statistics.owl#curator> a owl:AnnotationProperty .
<http://purl.org/net/OCRe/study_protocol.owl#develop_comment> a owl:AnnotationProperty .
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot> a owl:AnnotationProperty .
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot> a owl:AnnotationProperty .
<http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot> a owl:AnnotationProperty .
rdfs:comment a owl:AnnotationProperty .
rdfs:isDefinedBy a owl:AnnotationProperty .
rdfs:label a owl:AnnotationProperty .
owl:minCardinality a owl:AnnotationProperty .
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> a owl:AnnotationProperty .
skos:scopeNote a owl:AnnotationProperty .
<http://www.w3.org/2008/05/skos#editorialNote> a owl:AnnotationProperty .
<http://www.w3.org/2008/05/skos#scopeNote> a owl:AnnotationProperty .
rdf:PlainLiteral a rdfs:Datatype .
rdfs:Literal a rdfs:Datatype .
xsd:anyURI a rdfs:Datatype .
xsd:boolean a rdfs:Datatype .
xsd:date a rdfs:Datatype .
xsd:int a rdfs:Datatype .
xsd:string a rdfs:Datatype .
<http://aims.fao.org/aos/geopolitical.owl#hasBorderWith>
a owl:ObjectProperty ;
rdfs:label "has border with"@en ;
geopolitical:sourceModified "2010-05-01"^^xsd:string ;
geopolitical:sourceCreator "United Nations cartographic maps"^^xsd:string ;
dc:source "United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf"^^xsd:string ;
geopolitical:sourceIdentifier "http://www.un.org/Depts/Cartographic/map/profile/world00.pdf"^^xsd:string .
geopolitical:hasMember
a owl:ObjectProperty ;
rdfs:label "has member country or territory"@en ;
rdfs:domain geopolitical:group ;
owl:inverseOf geopolitical:isInGroup ;
rdfs:range geopolitical:territory .
geopolitical:isAdministeredBy
a owl:ObjectProperty ;
rdfs:label "is administered by"@en ;
geopolitical:sourceModified "2010-05-01"^^xsd:string ;
geopolitical:sourceCreator "United Nations cartographic maps"^^xsd:string ;
dc:source "United Nations cartographic maps http://www.un.org/Depts/Cartographic/map/profile/world00.pdf"^^xsd:string ;
geopolitical:sourceIdentifier "http://www.un.org/Depts/Cartographic/map/profile/world00.pdf"@en .
geopolitical:isInGroup
a owl:ObjectProperty ;
rdfs:label "in geographic grouping"@en-us ;
rdfs:range geopolitical:group ;
rdfs:domain geopolitical:territory .
geopolitical:isPredecessorOf
a owl:ObjectProperty ;
rdfs:label "is predecessor of"@en ;
geopolitical:sourceModified "2010-04-15"^^xsd:string ;
geopolitical:sourceCreator "United Nations Statistics Division"^^xsd:string ;
dc:source "United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm"^^xsd:string ;
geopolitical:sourceIdentifier "http://unstats.un.org/unsd/methods/m49/m49chang.htm"@en, "http://unstats.un.org/unsd/methods/m49/m49chgef.htm"@fr ;
rdfs:range geopolitical:area ;
rdfs:domain geopolitical:area ;
owl:inverseOf geopolitical:isSuccessorOf .
geopolitical:isSuccessorOf
a owl:ObjectProperty ;
rdfs:label "is successor of"@en ;
geopolitical:sourceModified "2010-04-15"^^xsd:string ;
geopolitical:sourceCreator "United Nations Statistics Division"^^xsd:string ;
dc:source "United Nations Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm"^^xsd:string ;
geopolitical:sourceIdentifier "http://unstats.un.org/unsd/methods/m49/m49chang.htm"@en, "http://unstats.un.org/unsd/methods/m49/m49chgef.htm"@fr ;
rdfs:range geopolitical:area ;
rdfs:domain geopolitical:area .
<http://isf/deprecated_op> a owl:ObjectProperty .
<http://purl.obolibrary.org/obo/ARG_2000028>
a owl:ObjectProperty ;
rdfs:label "has contact info"@en ;
owl:inverseOf <http://purl.obolibrary.org/obo/ARG_2000029> ;
rdfs:range <http://purl.obolibrary.org/obo/ARG_2000379> .
<http://purl.obolibrary.org/obo/ARG_2000029>
a owl:ObjectProperty ;
rdfs:label "contact info for"@en ;
rdfs:domain <http://purl.obolibrary.org/obo/ARG_2000379> .
<http://purl.obolibrary.org/obo/ARG_2000390>
a owl:ObjectProperty ;
rdfs:label "context for"@en ;
owl:inverseOf <http://purl.obolibrary.org/obo/ARG_2000391> .
<http://purl.obolibrary.org/obo/ARG_2000391>
a owl:ObjectProperty ;
rdfs:label "has context"@en .
<http://purl.obolibrary.org/obo/ARG_2000399>
a owl:ObjectProperty ;
rdfs:label "has contact agent"@en .
<http://purl.obolibrary.org/obo/BFO_0000050>
a owl:ObjectProperty, owl:TransitiveProperty ;
rdfs:label "part of"@en ;
owl:inverseOf <http://purl.obolibrary.org/obo/BFO_0000051> .
<http://purl.obolibrary.org/obo/BFO_0000051>
a owl:ObjectProperty, owl:TransitiveProperty ;
rdfs:label "has part"@en .
<http://purl.obolibrary.org/obo/BFO_0000054>
a owl:ObjectProperty ;
rdfs:label "realized in"@en ;
obo:BFO_0000180 "realizedIn" ;
obo:BFO_0000179 "realized-in" ;
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_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_0000601 "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])"@en ;
rdfs:range obo:BFO_0000015 ;
rdfs:domain obo:BFO_0000017 ;
owl:inverseOf obo:BFO_0000055 ;
rdfs:isDefinedBy obo:bfo.owl .
obo:BFO_0000055
a owl:ObjectProperty ;
rdfs:label "realizes"@en ;
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:BFO_0000180 "realizes" ;
obo:BFO_0000179 "realizes" ;
obo:IAO_0000600 "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])"@en ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000017 ;
rdfs:isDefinedBy obo:bfo.owl .
obo:ERO_0000029
a owl:ObjectProperty ;
rdfs:label "provides access to"@en ;
obo:IAO_0000112 "An access service that provides access to a flow cytometer."^^xsd:string ;
obo:IAO_0000115 "Instruments, reagents, organisms, or software for which the service provides access."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
rdfs:comment "change the domain tye to access service"^^xsd:string ;
rdfs:domain obo:ERO_0000005 ;
obo:IAO_0000114 obo:IAO_0000120 ;
owl:inverseOf <http://vivoweb.org/ontology/scientific-research#accessProvidedBy> ;
rdfs:range [
a owl:Class ;
owl:unionOf (
obo:ERO_0000004
obo:ERO_0000006
obo:ERO_0000071
obo:ERO_0001716
)
] .
obo:ERO_0000031
a owl:ObjectProperty ;
rdfs:label "uses"@en ;
rdfs:comment "Here there are things to be fixed (for instance a service can use a technique...)"^^xsd:string ;
obo:IAO_0000112 "Microsoft powerpoint is commonly used in research laboratories to prepare presentations."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Software or protocol used by the laboratory."^^xsd:string ;
obo:IAO_0000111 "uses"^^xsd:string ;
owl:inverseOf obo:ERO_0000070 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain foaf:Organization ;
rdfs:range [
a owl:Class ;
owl:unionOf (
obo:ERO_0000071
obo:ERO_0001716
obo:OBI_0000272
)
] .
obo:ERO_0000033
a owl:ObjectProperty ;
rdfs:label "has expertise in technique"@en ;
obo:IAO_0000112 "Brian Druker has expertise in cancer research."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Technique in which the person is proficient. "^^xsd:string ;
obo:IAO_0000111 "has expertise"^^xsd:string ;
rdfs:range obo:ERO_0000007 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain foaf:Person .
obo:ERO_0000034
a owl:ObjectProperty ;
rdfs:label "manufacturer"@en ;
obo:IAO_0000115 "Organization or person that created the resource."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000112 "Santa Cruz Biotechnology is the manufacturer of many antibodies."^^xsd:string ;
obo:IAO_0000111 "has manufacturer"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range obo:OBI_0000835 ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
obo:ERO_0000004
obo:ERO_0000006
obo:ERO_0000071
obo:ERO_0001716
)
] .
obo:ERO_0000037
a owl:ObjectProperty ;
rdfs:label "contact or provider for service"@en ;
obo:IAO_0000112 "A core lab providing cell sorting to individual labs."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Service offered by the organization."^^xsd:string ;
obo:IAO_0000111 "provides services"^^xsd:string ;
rdfs:range obo:ERO_0000005 ;
owl:inverseOf obo:ERO_0000390 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
foaf:Organization
foaf:Person
)
] .
obo:ERO_0000038
a owl:ObjectProperty ;
rdfs:label "specifies the use of"@en ;
obo:IAO_0000112 "A protocol can specify the use of a flow cytometer."^^xsd:string ;
obo:IAO_0000115 "Instruments, techniques, reagents, organisms, or software that are referenced in a protocol."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "specifies the use of"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain obo:OBI_0000272 ;
rdfs:range [
a owl:Class ;
owl:unionOf (
obo:ERO_0000004
obo:ERO_0000006
obo:ERO_0000007
obo:ERO_0000071
)
] .
obo:ERO_0000070
a owl:ObjectProperty ;
rdfs:label "used by"@en ;
obo:IAO_0000112 "A laboratory uses Microsoft Word."^^xsd:string ;
obo:IAO_0000115 "Laboratory that uses the protocol or software."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "used by"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range foaf:Organization ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
obo:ERO_0000071
obo:ERO_0001716
obo:OBI_0000272
)
] .
obo:ERO_0000390
a owl:ObjectProperty ;
rdfs:label "service provided by"@en ;
obo:IAO_0000112 "A core laboratory provides a service."^^xsd:string ;
obo:IAO_0000115 "Organization or laboratory performing the service."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "service provided by"^^xsd:string ;
rdfs:domain obo:ERO_0000005 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range [
a owl:Class ;
owl:unionOf (
foaf:Organization
foaf:Person
)
] .
obo:ERO_0000397
a owl:ObjectProperty ;
rdfs:label "performs technique"@en ;
obo:IAO_0000112 "A cancer researcher performs apoptosis assays."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Technique carried out by the person or laboratory."^^xsd:string ;
rdfs:range obo:ERO_0000007 ;
owl:inverseOf obo:ERO_0000398 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
<http://vivoweb.org/ontology/core#Laboratory>
foaf:Person
)
] .
obo:ERO_0000398
a owl:ObjectProperty ;
rdfs:label "is performed by"@en ;
obo:IAO_0000112 "Confocal microscopy is performed by a confocal core laboratory."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Person or laboratory that performs the service or technique."^^xsd:string ;
obo:IAO_0000111 "is performed by"^^xsd:string ;
rdfs:domain obo:ERO_0000007 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range [
a owl:Class ;
owl:unionOf (
<http://vivoweb.org/ontology/core#Laboratory>
foaf:Person
)
] .
obo:ERO_0000460
a owl:ObjectProperty ;
rdfs:label "has documentation"@en ;
obo:IAO_0000112 "An antibody has documentation describing attributes of the antibody."^^xsd:string ;
obo:IAO_0000115 "Document that contains relevant resource information."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "has documentation"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range bibo:Document ;
owl:inverseOf <http://vivoweb.org/ontology/scientific-research#documentationFor> ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
obo:ERO_0000004
obo:ERO_0000005
obo:ERO_0000006
obo:ERO_0000014
obo:ERO_0000020
obo:ERO_0000071
obo:ERO_0001716
obo:OBI_0000272
)
] .
obo:ERO_0000481
a owl:ObjectProperty ;
rdfs:label "realizes protocol"@en ;
obo:IAO_0000112 "A sequencing protocol used for next generation sequencing."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Protocol used to perform the service."^^xsd:string ;
rdfs:comment "placeholder: need to be modeled for the proper kind of service (production services)"^^xsd:string ;
obo:IAO_0000111 "realizes protocol"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range obo:OBI_0000272 ;
owl:inverseOf <http://vivoweb.org/ontology/scientific-research#protocolRealizedBy> ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
obo:ERO_0000005
obo:ERO_0000014
)
] .
obo:ERO_0000482
a owl:ObjectProperty ;
rdfs:label "uses software"@en ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
rdfs:comment "Placeholder needs to be redesign"^^xsd:string ;
obo:IAO_0000112 "Sequence analysis software."^^xsd:string ;
obo:IAO_0000115 "Software used to perform the service."^^xsd:string ;
owl:deprecated true ;
obo:IAO_0000111 "uses software"^^xsd:string ;
rdfs:domain obo:ERO_0000005 ;
rdfs:range obo:ERO_0000071 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:subPropertyOf owl:DeprecatedProperty .
obo:ERO_0000543
a owl:ObjectProperty ;
rdfs:label "related technique"@en ;
obo:IAO_0000112 "Flow cytometry is a related technique for a flow cytometer instrument."^^xsd:string ;
obo:IAO_0000115 "Method in which the resource can be used."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "related technique"^^xsd:string ;
rdfs:range obo:ERO_0000007 ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:ERO_0000572
a owl:ObjectProperty ;
rdfs:label "used to study"@en ;
obo:IAO_0000112 "A study of hibernation in bears."^^xsd:string ;
obo:IAO_0000115 "Biological process studied in the organism."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "used to study"^^xsd:string ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:ERO_0000775
a owl:ObjectProperty ;
rdfs:label "has residency requirement"@en ;
obo:IAO_0000112 "A research opportunity requires applicants to be US citizens."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "US residency status of applicants that may apply for the student research opportunity."^^xsd:string ;
obo:IAO_0000111 "has residency requirement"^^xsd:string ;
rdfs:domain obo:ERO_0000595 ;
rdfs:range obo:ERO_0000776 ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:ERO_0000918
a owl:ObjectProperty ;
rdfs:label "related research project"@en ;
obo:IAO_0000112 "A research project studying breast cancer."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "Research project during which the biological specimen was collected."^^xsd:string ;
obo:IAO_0000111 "related research project"^^xsd:string ;
rdfs:range obo:ERO_0000014 ;
rdfs:domain obo:ERO_0000020 ;
owl:inverseOf obo:ERO_0000919 ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:ERO_0000919
a owl:ObjectProperty ;
rdfs:label "related biological specimen"@en ;
obo:IAO_0000112 "A breast cancer specimen."^^xsd:string ;
obo:IAO_0000115 "Biological specimen collected as part of the research project."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "related biological specimen"^^xsd:string ;
rdfs:domain obo:ERO_0000014 ;
rdfs:range obo:ERO_0000020 ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:ERO_0001518
a owl:ObjectProperty ;
rdfs:label "has phase"@en ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000112 "Phase 1 clinical trial."^^xsd:string ;
obo:IAO_0000115 "Phase of a clinical trial to evaluate risk and to clinically evaluate the efficacy of drugs or biologicals."^^xsd:string ;
obo:IAO_0000111 "has phase"^^xsd:string ;
rdfs:domain obo:ERO_0000016 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:range <http://purl.org/net/OCRe/study_design.owl#OCRE100038> .
obo:ERO_0001520
a owl:ObjectProperty ;
rdfs:label "performs human study"@en ;
obo:IAO_0000115 "Human study performed by the organization."^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000112 "The Jackson Heart Institute performs human studies on heart disease."^^xsd:string ;
obo:IAO_0000111 "performs human study"^^xsd:string ;
rdfs:range obo:ERO_0000015 ;
owl:inverseOf obo:ERO_0001521 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain foaf:Organization .
obo:ERO_0001521
a owl:ObjectProperty ;
rdfs:label "performed by organization"@en ;
obo:IAO_0000112 "Jackson State University performs human studies on heart disease."^^xsd:string ;
obo:IAO_0000115 "Organization that performs the human study."^^xsd:string ;
obo:IAO_0000119 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000117 "PERSON: Melissa Haendel"^^xsd:string ;
obo:IAO_0000111 "human study performed by"^^xsd:string ;
rdfs:domain obo:ERO_0000015 ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:subPropertyOf <http://www.obofoundry.org/ro/ro.owl#has_agent> ;
rdfs:range foaf:Organization .
obo:IAO_0000039
a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "has measurement unit label"@en ;
rdfs:subPropertyOf obo:BFO_0000051 ;
rdfs:range obo:IAO_0000003 .
obo:IAO_0000136
a owl:ObjectProperty ;
rdfs:label "is about"@en ;
obo:IAO_0000116 """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."""@en ;
obo:IAO_0000119 "Smith, Ceusters, Ruttenberg, 2000 years of philosophy"@en ;
obo:IAO_0000112 "This document is about information artifacts and their representations"@en ;
obo:IAO_0000115 "is_about is a (currently) primitive relation that relates an information artifact to an entity."@en ;
obo:IAO_0000117 "person:Alan Ruttenberg"@en ;
rdfs:domain obo:IAO_0000030 ;
obo:IAO_0000114 obo:IAO_0000125 .
obo:IAO_0000142
a owl:ObjectProperty ;
rdfs:label "mentions"@en ;
rdfs:subPropertyOf obo:IAO_0000136 .
obo:IAO_0000221
a owl:ObjectProperty ;
rdfs:label "is quality measurement of"@en ;
obo:IAO_0000116 "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"@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."""@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."""@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."""@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."""@en ;
obo:IAO_0000117 "Alan Ruttenberg"@en ;
obo:IAO_0000115 """m is a quality measurement of q at t when
q is a quality
there is a measurement process p that has specified output m, a measurement datum, that is about q"""@en ;
rdfs:range obo:BFO_0000019 ;
rdfs:domain obo:IAO_0000109 ;
rdfs:subPropertyOf obo:IAO_0000136 ;
owl:inverseOf obo:IAO_0000417 .
obo:IAO_0000417
a owl:ObjectProperty ;
rdfs:label "is quality measured as"@en ;
obo:IAO_0000116 "2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship"@en ;
obo:IAO_0000117 "Person:Alan Ruttenberg"@en ;
obo:IAO_0000115 "inverse of the relation of is quality measurement of"@en ;
obo:IAO_0000114 obo:IAO_0000120 .
obo:OBI_0000293
a owl:ObjectProperty ;
rdfs:label "has specified input"@en ;
obo:IAO_0000116 "8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works."^^xsd:string ;
obo:IAO_0000117 "PERSON: Bjoern Peters"^^xsd:string, "PERSON: Larry Hunter"^^xsd:string, "PERSON: Melanie Coutot"^^xsd:string, "PERSON: Alan Ruttenberg"@en ;
obo:IAO_0000111 "has_specified_input"^^xsd:string ;
obo:IAO_0000115 "A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of."@en ;
obo:IAO_0000112 "see is_input_of example_of_usage"@en ;
rdfs:domain obo:OBI_0000011 ;
rdfs:subPropertyOf obo:RO_0002233 .
obo:OBI_0000299
a owl:ObjectProperty ;
rdfs:label "has specified output"@en ;
obo:IAO_0000117 "PERSON: Bjoern Peters"^^xsd:string, "PERSON: Larry Hunter"^^xsd:string, "PERSON: Melanie Courtot"^^xsd:string, "PERSON: Alan Ruttenberg"@en ;
obo:IAO_0000111 "has_specified_output"^^xsd:string ;
obo:IAO_0000115 "A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."@en ;
rdfs:domain obo:OBI_0000011 ;
owl:inverseOf obo:OBI_0000312 ;
rdfs:subPropertyOf obo:RO_0002234 .
obo:OBI_0000304
a owl:ObjectProperty ;
rdfs:label "manufactured by"@en ;
obo:IAO_0000117 "Alan Ruttenberg"@en, "Liju Fan"@en ;
obo:IAO_0000115 "c is_manufactured_by o means that there was a process p in which c was built in which a person, or set of people or machines did the work(bore the \"Manufacturer Role\", and those people/and or machines were members or of directed by the organization to do this."@en ;
obo:IAO_0000118 "has_make"@en, "has_manufacturer"@en ;
obo:IAO_0000112 "http://www.affymetrix.com/products/arrays/specific/hgu133.affx is_manufactered_by http://www.affymetrix.com/ (if we decide to use these URIs for the actual entities)"@en ;
obo:IAO_0000111 "is_manufactured_by"@en ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range foaf:Organization .
obo:OBI_0000312
a owl:ObjectProperty ;
rdfs:label "is specified output of"@en ;
obo:IAO_0000117 "PERSON:Bjoern Peters"^^xsd:string, "Alan Ruttenberg"@en ;
obo:IAO_0000111 "is_specified_output_of"^^xsd:string ;
obo:IAO_0000115 "A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."@en ;
rdfs:range obo:OBI_0000011 ;
rdfs:subPropertyOf obo:RO_0002353 .
obo:OBI_0000417
a owl:ObjectProperty ;
rdfs:label "achieves planned objective"@en ;
obo:IAO_0000112 "A cell sorting process achieves the objective specification 'material separation objective'"^^xsd:string ;
obo:IAO_0000117 "BP, AR, PPPB branch"^^xsd:string ;
obo:IAO_0000119 "PPPB branch derived"^^xsd:string ;
obo:IAO_0000115 "This relation obtains between a planned process and a objective specification when the criteria specified in the objective specification are met at the end of the planned process."^^xsd:string ;
obo:IAO_0000232 "modified according to email thread from 1/23/09 in accordince with DT and PPPB branch"^^xsd:string ;
rdfs:range obo:IAO_0000005 ;
rdfs:domain obo:OBI_0000011 ;
owl:inverseOf obo:OBI_0000833 .
obo:OBI_0000643
a owl:ObjectProperty ;
rdfs:label "has grain"@en ;
obo:IAO_0000119 "PAPER: Granularity, scale and collectivity: When size does and does not matter, Alan Rector, Jeremy Rogers, Thomas Bittner, Journal of Biomedical Informatics 39 (2006) 333-349"^^xsd:string ;
obo:IAO_0000111 "has grain"^^xsd:string ;
obo:IAO_0000115 "the relation of the cells in the finger of the skin to the finger, in which an indeterminate number of grains are parts of the whole by virtue of being grains in a collective that is part of the whole, and in which removing one granular part does not nec- essarily damage or diminish the whole. Ontological Whether there is a fixed, or nearly fixed number of parts - e.g. fingers of the hand, chambers of the heart, or wheels of a car - such that there can be a notion of a single one being missing, or whether, by contrast, the number of parts is indeterminate - e.g., cells in the skin of the hand, red cells in blood, or rubber molecules in the tread of the tire of the wheel of the car."^^xsd:string ;
obo:IAO_0000116 "Discussion in Karslruhe with, among others, Alan Rector, Stefan Schulz, Marijke Keet, Melanie Courtot, and Alan Ruttenberg. Definition take from the definition of granular parthood in the cited paper. Needs work to put into standard form"@en ;
obo:IAO_0000117 "PERSON: Alan Ruttenberg"@en ;
rdfs:subPropertyOf obo:BFO_0000051 ;
obo:IAO_0000412 obo:obi_webservice.owl .
obo:OBI_0000833
a owl:ObjectProperty ;
rdfs:label "objective achieved by"@en ;
obo:IAO_0000115 "This relation obtains between a a objective specification and a planned process when the criteria specified in the objective specification are met at the end of the planned process."^^xsd:string ;
obo:IAO_0000116 "definition needs clean up to indicate directionality"^^xsd:string ;
rdfs:domain obo:IAO_0000005 ;
rdfs:range obo:OBI_0000011 .
obo:RO_0000052
a owl:ObjectProperty, owl:FunctionalProperty ;
rdfs:label "inheres in"@en ;
obo:IAO_0000116 "This clarifies that only specifically dependent continuants inhere in (specifically) one independent continuant over all time. For GDCs, there in implicitly inherence to all the independent continuants in which the concretizations inhere. Should add a 'cardinality 1' restriction to the definition of specifically dependent continuant."^^xsd:string, "This relation belongs in BFO/RO, and will be in BFO 2"^^xsd:string ;
rdfs:range obo:BFO_0000004 ;
rdfs:domain obo:BFO_0000020 ;
owl:inverseOf obo:RO_0000053 .
obo:RO_0000053
a owl:ObjectProperty ;
rdfs:label "bearer of"@en ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000020 .
obo:RO_0000056
a owl:ObjectProperty ;
rdfs:label "participates in"@en ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000003 ;
owl:inverseOf obo:RO_0000057 .
obo:RO_0000057
a owl:ObjectProperty ;
rdfs:label "has participant"@en ;
rdfs:range obo:BFO_0000002 ;
rdfs:domain obo:BFO_0000003 .
obo:RO_0001000
a owl:ObjectProperty ;
rdfs:label "derives from"@en .
obo:RO_0001015
a owl:ObjectProperty ;
rdfs:label "location of"@en ;
owl:inverseOf obo:RO_0001025 .
obo:RO_0001018
a owl:ObjectProperty ;
rdfs:label "contained in"@en ;
owl:inverseOf obo:RO_0001019 .
obo:RO_0001019
a owl:ObjectProperty ;
rdfs:label "contains"@en .
obo:RO_0001025
a owl:ObjectProperty ;
rdfs:label "located in"@en .
obo:RO_0002220
a owl:ObjectProperty ;
rdfs:label "adjacent to"@en .
obo:RO_0002233
a owl:ObjectProperty ;
rdfs:label "has input"@en ;
rdfs:subPropertyOf obo:RO_0000057 .
obo:RO_0002234
a owl:ObjectProperty ;
rdfs:label "has output"@en ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf obo:RO_0002353 .
obo:RO_0002350
a owl:ObjectProperty ;
rdfs:label "member of"@en ;
owl:inverseOf obo:RO_0002351 .
obo:RO_0002351
a owl:ObjectProperty ;
rdfs:label "has member"@en .
obo:RO_0002353
a owl:ObjectProperty ;
rdfs:label "output of"@en ;
rdfs:subPropertyOf obo:RO_0000056 .
obo:RO_0003000
a owl:ObjectProperty ;
rdfs:label "produces"@en ;
obo:IAO_0000117 "Melissa Haendel"^^xsd:string ;
obo:IAO_0000115 "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."^^xsd:string ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000040 ;
owl:inverseOf obo:RO_0003001 ;
obo:IAO_0000412 obo:ro.owl .
obo:RO_0003001
a owl:ObjectProperty ;
rdfs:label "produced by"@en ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000040 .
dc:contributor
a owl:ObjectProperty ;
rdfs:label "contributor"@en .
bibo:affirmedBy
a owl:ObjectProperty ;
rdfs:label "affirmed by"@en ;
obo:IAO_0000112 "The public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html"^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "A legal decision that affirms a ruling."@en .
bibo:annotates
a owl:ObjectProperty ;
rdfs:label "annotates"@en ;
obo:IAO_0000112 "The public description source is: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "Critical or explanatory note for a Document."@en ;
ns2:term_status "stable" .
bibo:citedBy
a owl:ObjectProperty ;
rdfs:label "cited by"@en ;
rdfs:domain bibo:Document ;
rdfs:range bibo:Document ;
owl:inverseOf bibo:cites .
bibo:cites
a owl:ObjectProperty ;
rdfs:label "cites"@en ;
rdfs:domain bibo:Document ;
rdfs:range bibo:Document .
bibo:court
a owl:ObjectProperty ;
rdfs:label "Court"@en ;
obo:IAO_0000112 "Public description take from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this property \"unstable\"."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "A court associated with a legal document; for example, that which issues a decision."@en ;
ns2:term_status "unstable" .
bibo:degree
a owl:ObjectProperty ;
rdfs:label "related degree"@en ;
obo:IAO_0000112 "The source of the public description and this info is found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this term \"unstable\". The bibo editorial note is: \"We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen.\""^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
ns2:term_status "unstable" ;
rdfs:comment "The thesis degree."@en ;
skos2:editorialNote "We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen."@en ;
rdfs:range bibo:ThesisDegree .
bibo:director
a owl:ObjectProperty ;
rdfs:label "director"@en ;
obo:IAO_0000112 "Definition take from this site: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html ."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "A Film director."@en ;
ns2:term_status "stable" .
bibo:distributor
a owl:ObjectProperty ;
rdfs:label "distributor"@en ;
vitro:descriptionAnnot "Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html ."^^xsd:string ;
owl:inverseOf <http://vivoweb.org/ontology/core#distributes> .
bibo:interviewee
a owl:ObjectProperty ;
rdfs:label "interviewee"@en ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
ns2:term_status "stable" ;
rdfs:comment "An agent that is interviewed by another agent."@en .
bibo:interviewer
a owl:ObjectProperty ;
rdfs:label "interviewer"@en ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "An agent that interview another agent."@en ;
ns2:term_status "stable" .
bibo:issuer
a owl:ObjectProperty ;
rdfs:label "issuer"@en ;
vitro:descriptionAnnot "An entity responsible for issuing often informally published documents such as press releases, reports, etc. This term is classified as unstable by bibo."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "An entity responsible for issuing often informally published documents such as press releases, reports, etc." ;
ns2:term_status "unstable" ;
rdfs:range foaf:Agent .
bibo:performer
a owl:ObjectProperty ;
rdfs:label "performer"@en ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
ns2:term_status "stable" ;
rdfs:subPropertyOf dc:contributor .
bibo:presentedAt
a owl:ObjectProperty ;
rdfs:label "presented at event"@en ;
vitro:descriptionAnnot "Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
ns2:term_status "unstable" ;
rdfs:comment "Relates a document to an event; for example, a paper to a conference."@en ;
rdfs:range <http://purl.org/NET/c4dm/event.owl#Event> ;
rdfs:domain bibo:Document ;
owl:inverseOf bibo:presents .
bibo:presents
a owl:ObjectProperty ;
rdfs:label "related documents"@en ;
obo:IAO_0000112 "Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "Relates an event to associated documents; for example, conference to a paper."@en ;
ns2:term_status "unstable" .
bibo:recipient
a owl:ObjectProperty ;
rdfs:label "recipient"@en ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "An agent that receives a communication document."@en ;
ns2:term_status "stable" .
bibo:reproducedIn
a owl:ObjectProperty ;
rdfs:label "reproduced in"@en ;
rdfs:subPropertyOf obo:BFO_0000050 ;
rdfs:range bibo:Document ;
rdfs:domain bibo:Document ;
owl:inverseOf <http://vivoweb.org/ontology/core#reproduces> .
bibo:reversedBy
a owl:ObjectProperty ;
rdfs:label "reversed by"@en ;
obo:IAO_0000112 "The first sentence of the public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html"^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "A legal decision that reverses a ruling."@en .
bibo:reviewOf
a owl:ObjectProperty ;
rdfs:label "review of"@en ;
obo:IAO_0000112 "The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used."^^xsd:string ;
owl:inverseOf <http://vivoweb.org/ontology/core#reviewedIn> .
bibo:status
a owl:ObjectProperty ;
rdfs:label "status"@en ;
obo:IAO_0000112 "paraphrased editorial note from the bibo ontology: We are not defining, using an enumeration, the range of the bibo:status to be a defined list of bibo:DocumentStatus. This is because we want people to be able to define new statuses if needed; and creating such an enumeration would prevent this."^^xsd:string ;
rdfs:domain bibo:Document ;
rdfs:range bibo:DocumentStatus .
bibo:subsequentLegalDecision
a owl:ObjectProperty ;
rdfs:label "subsequent legal decision"@en ;
obo:IAO_0000112 "Public description is from comments of this object property in bibo ontology located here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html"^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.)."@en .
bibo:transcriptOf
a owl:ObjectProperty ;
rdfs:label "transcript of"@en ;
obo:IAO_0000112 "The bibo:transcriptOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers this term unstable."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
rdfs:comment "Relates a document to some transcribed original."@en ;
ns2:term_status "unstable" .
bibo:translationOf
a owl:ObjectProperty ;
rdfs:label "translation of"@en ;
obo:IAO_0000112 "Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html ."^^xsd:string ;
rdfs:isDefinedBy "http://purl.org/ontology/bibo/"^^xsd:anyURI ;
ns2:term_status "stable" ;
rdfs:comment "Relates a translated document to the original document."@en ;
rdfs:range bibo:Document ;
rdfs:domain bibo:Document ;
owl:inverseOf <http://vivoweb.org/ontology/core#hasTranslation> .
bibo:translator
a owl:ObjectProperty ;
rdfs:label "translator"@en ;
rdfs:subPropertyOf dc:contributor ;
owl:inverseOf <http://vivoweb.org/ontology/core#translatorOf> ;
rdfs:range foaf:Agent ;
rdfs:domain [
a owl:Class ;
owl:unionOf (
bibo:Collection
bibo:Document
)
] .
<http://purl.org/spar/c4o/hasGlobalCitationFrequency>
a owl:ObjectProperty ;
rdfs:label "has global citation frequency"@en ;
obo:IAO_0000115 "A property linking a publication entity to an instance of c40:GlobalCitationCount that specifies how many times a work has been cited by others, according to a particular information source on a particular date."^^xsd:string ;
vitro:descriptionAnnot "A property linking a publication entity to the property c40:GlobalCitationCount that specify how many times a work has been cited by others, according to a particular information source on a particular date."^^xsd:string ;
rdfs:range <http://purl.org/spar/c4o/GlobalCitationCount> .
<http://purl.org/spar/c4o/hasGlobalCountSource>
a owl:ObjectProperty ;
rdfs:label "has global count source"@en ;
obo:IAO_0000115 "A property linking an instance of c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date."^^xsd:string ;
vitro:descriptionAnnot "A property linking the property c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date."^^xsd:string ;
rdfs:range <http://purl.org/spar/c4o/BibliographicInformationSource> ;
rdfs:domain <http://purl.org/spar/c4o/GlobalCitationCount> .
<http://purl.org/spar/cito/citesAsDataSource>
a owl:ObjectProperty ;
rdfs:label "cites as data source"@en ;
rdfs:comment "The citing entity cites the cited entity as source of data."@en ;
owl:inverseOf <http://purl.org/spar/cito/isCitedAsDataSourceBy> .
<http://purl.org/spar/cito/isCitedAsDataSourceBy>
a owl:ObjectProperty ;
rdfs:label "is cited as data source by"@en ;
rdfs:comment "The cited entity is cited as a data source by the citing entity."@en .
<http://vivoweb.org/ontology/core#affiliatedOrganization>
a owl:ObjectProperty ;
rdfs:label "has affiliated organization"@en ;
rdfs:range foaf:Organization ;
rdfs:domain foaf:Organization .
<http://vivoweb.org/ontology/core#assignedBy>
a owl:ObjectProperty ;
rdfs:label "assigned by"@en ;
obo:IAO_0000115 "Relates a Relationship (as a predicate or n-ary relation over one or more Thing) to an Agent that defined or instantiated the predicate instance. "@en ;
owl:inverseOf <http://vivoweb.org/ontology/core#assigns> .
<http://vivoweb.org/ontology/core#assignee>
a owl:ObjectProperty ;
rdfs:label "assignee"@en ;
rdfs:domain bibo:Patent ;
owl:inverseOf <http://vivoweb.org/ontology/core#assigneeFor> ;
rdfs:range foaf:Agent .
<http://vivoweb.org/ontology/core#assigneeFor>
a owl:ObjectProperty ;
rdfs:label "assignee for patent"@en ;
rdfs:range bibo:Patent ;
rdfs:domain foaf:Agent .
<http://vivoweb.org/ontology/core#assigns>
a owl:ObjectProperty ;
rdfs:label "assigns"@en .