forked from obi-ontology/obi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
obsolete.owl
1087 lines (779 loc) · 79.3 KB
/
obsolete.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/obi/dev/modules/obsolete.owl#"
xml:base="http://purl.obolibrary.org/obo/obi/dev/modules/obsolete.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/obi/dev/modules/obsolete.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- http://purl.obolibrary.org/obo/OBI_9991118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/OBI_9991118"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/OBI_0000050 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000050">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A platform is an object_aggregate that is the set of instruments and software needed to perform a process. definition_source: OBI.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_platform</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000100">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rat 1A; first enrolled patient to receive treatment</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">First subject treated role is a study subject role borne by the subject realized in the application of the process specified in intervention study design with no previous study subject realizing the role prior in the study</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Role Branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_role of being first subject treated</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000109">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1983 Sci. Amer. Jan. 58/2 Plasmids are routinely used as vectors for introducing foreign DNA into bacteria.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Some epidemiological aspects and vector role of tick infestation on layers in the Faisalabad district (Pakistan). http://journals.cambridge.org/action/displayAbstract;jsessionid=0373164489D00868AEEF2C556EB4FD29.tomcat1?fromPage=online&aid=624280</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">a biological vector role is a material to be added role that is realized by the process of transmitting material to the organism that is the target of the transmission.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: Role Branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI and Wikipedia</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological vector role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000140 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000140">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Label role is a role which inheres in a material entity and which is realized in a detection of label assay</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Role Branch</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">label</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0002743"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_label role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000205 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000205">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Escaped rat; human who moved to another city. Rat which escapes part way through a study; a human study participant who moved to another city before the study was completed (and stopped participating in the study)</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">Dropout is a study subject role borne by an entity realized by a process of leaving the study earlier than the protocol specified and where the bearer of the dropout role had been borne study subject role prior to bearing dropout role.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Role Branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_dropout role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000207 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000207">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a worker role of providing medical care either within or outside the study timeline</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Jennifer Fostel</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">health care provider</obo:IAO_0000118>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OMRSE_00000012"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete health care provider role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000223 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000223">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115 patients received ipilimumab and blinded medication</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Inert pill shaped like aspirin tablet</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">Is a role which inheres in a material entity which is manufactured to be similar in appearance to a test material entity in e.g. a clinical trial to prevent participants from detecting which is the active and inactive substance</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jennifer Fostel</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Helen Parkinson</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_blinded medication role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000233 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000233">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000121"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Place holder class, Utility class to gather the defined classes</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Susanna Sansone</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Biomaterial derived</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000226"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_defined_material</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000264 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000264">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Patterns of benzylpiperazine/trifluoromethylphenylpiperazine party pill use and adverse effects in a population sample in New Zealand. Drug Alcohol Rev. 2008 Mar 31:1-7. PMID: 18608458</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">A sample population is an object aggregate that is selected from the population, e.g. the fish in the net that were sampled from the lake, the people that responded to the call for volunteers.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Jennifer Fostel</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">recruited population</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial Branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_sample population</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000296 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000296">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enrollment of patients in a study. Short-term outcome of neuropsychiatric events in systemic lupus erythematosus upon enrollment into an international inception cohort study. Arthritis Rheum. 2008 May 15;59(5):721-9. PMID: 18438902</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enrollment is a process of identifying a set of objects for further use in an investigation based on a set of criteria or rules</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_enrollment</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000323 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000323">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000002"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">is the serous membrane that forms the lining of the abdominal cavity</obo:IAO_0000115>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_peritoneum</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000340 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000340">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wikipedia http://en.wikipedia.org/wiki/Documenting</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000572"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_documenting</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000420 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000420">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A trypsinized suspension of cells</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000002"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material entity that has undergone a process of digestion with trypsin</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_trypsinized material</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000442 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000442">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alan Ruttenberg's heart</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000002"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The heart is a muscular organ found in all vertebrates that is responsible for pumping blood throughout the blood vessels by repeated, rhythmic contractions</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Heart</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000230"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_heart</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000446 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000446">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DNA cleavage assay for the identification of topoisomerase I inhibitors. Nat Protoc. 2008;3(11):1736-50. PMID: 18927559</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000124"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a process by which the identity (what a thing is) of a material entity is established within a certain confidence interval</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_identification</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000449 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000449">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">example of subclass: normalized data set - A normalized data set is a data set that is produced as the output of a normalization data transformation.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000121"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is only a placeholder for defined classes, as are its siblings _defined_material and _defined protocol application. Its children should be defined classes constructed as output of a process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: James Malone</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melanie Courtot</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000226"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_defined_output</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000577 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000577">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the phosphate concentration should be 0.1M</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A concentration is a relational quality that inheres in a material entity towards molecular scattered aggregate that is part of it by virtue of some ratio of masses of the two or the counts of the grains of the two or volume occupied by the larger material entity.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Discussion in Karslruhe, Oct 2008, with, among others, Alan Rector, Stefan Schulz, Marijke Keet, Melanie Courtot, and Alan Ruttenberg.</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_molecular concentration</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000665 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000665">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Permeabilizing T cells and staining them with fluorescent labeled anti-IFN-gamma antibodies</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">The measurement of cytokines within the cytoplasm of a cell by permeabilizing the cell membrane to allow entry of specific antibodies, and counting the stained cells using a flow cytometer.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ICCS</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ICS</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0000916"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intracellular cytokine staining (ICS)</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete intracellular cytokine staining assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000667 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000667">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Measuring T cells that are specific for the SYFPEITHI peptide when presented by the murine MHC molecule H-2 Kd by staining them with a tetramer of peptide loaded MHC complexes.</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">An MHC multimer assay is an assay that detects T cells capable of binding the MHC:ligand complexes present in the multimer. The multimer is fluorescently labelled. The T cells bound to multimers are counted in a flow cytometer</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MHC tetramer assay</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_1110179"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MHC tetramer/multimer staining</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete MHC multimer staining assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000682 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000682">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Study result is an information content entity that is a specified data output of a study.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000230"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_study result</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000698 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000698">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A DNA ligase is an enzyme that covalently joins two compatible pieces of DNA through the cleavage of an ATP molecule</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kevin Clancy, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ligase</obo:IAO_0000118>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_DNA ligase</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000797 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000797">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SIINFEKL' is the primary structure of a peptide </obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The primary structure of a protein that is completely defined by the set of its amino acid residue parts and the linear order induced by the peptide bonds that hold them together</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_primary structure of protein</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000830 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000830">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality inhering in a molecule that is completely defined by the linear sequence of a set of residues which are connected by directional, linear bonds</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_primary structure of sequence macromolecule</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000851 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000851">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_diethyl pyrocarbonate</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000856 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000856">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An assay in which the presence of a material inside a cell is measured by permeabilizing the cell membrane to allow entry of specific antibodies, and counting the stained cells using a flow cytometer.</obo:IAO_0000115>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0000916"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intracellular staining</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete intracellular material detection by flow cytometry assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000926 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000926">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_ambidexterious handedness</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000929 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000929">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EBI provides training on databases and tools and has a training service provider role</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a service provider role which is realized by a servicer provider organization performing some training</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Helen Parkinson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_training service provider role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000936 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000936">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person or organization who provides access to a DNA sequencer.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a service provider role which is realized by a servicer provider organization performing access to some material</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Helen Parkinson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_material access provider role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000937 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000937">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_left handedness</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000956 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000956">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/PATO_0002201"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_handedness</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000972 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000972">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a processed material created to have a function and which requires electrical power to execute</obo:IAO_0000115>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_electrically powered device</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000974 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000974">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_right handedness</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000980 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000980">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DNA sequencing of a sample by a core lab which returns data to the consumer</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">a service provider role which is realized by a servicer provider organization performing a protocol execution</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Helen Parkinson</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_protocol service provider role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000986 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000986">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A training process with the objective to provide a trainee with the skill to run DNA sequencing experiments</obo:IAO_0000115>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_DNA sequencing training service</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000987 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000987">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000124"/>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_general scalar measurement datum</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001009">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A binding assay where the specified output determines if two or more material entities do or do not have the disposition to form a complex above a threshold level of significance. The threshold can be defined through detection limits of the instrument, the use of experimental controls that establish what is considered significant binding, or a predefined cutoff based on what binding is considered significant in a certain context. </obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters, Randi Vita, Jason Greenbaum</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_qualitative binding detection assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001037">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A specimen fixation function is a function that holds or fastens an entity in a fixed position.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EAGLE-I</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_specimen fixation function</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001250 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001250">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An intracellular material detection by flow cytometry assay that measures epitope specific cytotoxic T cell degranulation</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0000916"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T cell degranulation by intracellular staining</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete intracellular material detection by flow cytometry assay of epitope specific cytotoxic T cell degranulation</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001540 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001540">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Using proliferation of a T cell line specific for SIINFEKL in response to material eluted from a cell as evidence that SIINFEKL was presented by MHC on that cell. </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">An assay that identifies an MHC ligand using a T cell response assay as a readout</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Randi Vita, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0001469"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">T cell recognition</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete T cell recognition of eluted MHC ligand assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001560 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001560">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An assay that measures the affinity of a ligand to a MHC in a cell lysate preparation and that quantifies the affinity with a binding constant.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete cell lysate MHC binding constant determination assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001572 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001572">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An assay that measures the affinity of a ligand to MHC moleculs bound to the cell surface and that quantifies the affinity with a binding constant.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete cell bound MHC binding constant determination assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001574 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001574">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">competitive inhibition of binding assay measuring MHC ligand binding by radioactivity detection using MHC derived from a cell lysate</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0001544"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cell lysate MHC competitive binding using radioactivity</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete cell lysate MHC competitive binding assay using radioactivity detection</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001576 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001576">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An assay that measures the affinity of a ligand to a purified MHC complex preparation and that quantifies the affinity with a binding constant.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete purified MHC binding constant determination assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001582 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001582">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">direct binding assay measuring MHC ligand binding using MHC derived from a cell</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cell bound MHC direct binding </obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete cell bound MHC direct binding assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001611 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001611">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">direct binding assay measuring MHC ligand binding using MHC derived from a purified MHC molecule preparation</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">purified MHC direct binding </obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete purified MHC direct binding assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001712 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001712">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A direct binding assay using a assay</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">direct binding assay</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete B cell epitope direct binding assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001715 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001715">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A competitive inhibition of binding assay using a assay</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">competitive binding assay</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete B cell epitope competitive binding assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001737 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001737">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A X-ray crystallography assay measuring epitope specfic antibody binding event in angstroms</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Randi Vita, Jason Greenbaum, Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IEDB (QTT)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/OBI_0001738"/>
<obo:OBI_9991118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">X-ray crystallography [Ã…]</obo:OBI_9991118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete B cell epitope specific X-ray crystallography assay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100015">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tissue, organ, system, sperm, blood or body location (arm).</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000121"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An anatomical entity is a material entity that is part of a multicellular organism, and which is large enough so that it forms an identifiable structure in the organism. Specifically, it excludes granular parts of the organism, such as atoms, molecules, cells, which can be removed from the organism without affecting it. It is defined as the union of 'multi-tissue structure', 'body substance' and 'portion of tissue'</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tina Boussard</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MO</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_anatomical entity</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100035">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a single Hela cell</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">a cell derived from a multicellular organism that has the potential to replicate indefinitely</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial Branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_immortal cell</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100039">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the peptide with sequence SIINFEKL, which is eluted from a cell expressing hen egg lysozyme</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material entity which is derived from a protein</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: IEDB</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_fragment derived from protein</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100055 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100055">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material entity that represents generations of a primary culture.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Susanna Sansone</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial Branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_cell line cell</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100056 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100056">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A cell line that is expected to be capable of indefinite propagation in an vitro culture.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Matthew Brush</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">immortal cell line sample</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">permanent cell line</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Matthew Brush</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CLO_0009828"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_immortal cell line culture</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100062 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100062">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A split of HeLa cells in active culture, or stored in frozen aliquots. Populations of HEK 293 cells used in experiments such as those documented in Changes in ultrastructure and endogenous ionic channels activity during culture of HEK 293 cell line. Eur J Pharmacol. 2007 Jul 12;567(1-2):10-8. PMID: 17482592.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">He, Tong-Chuan, et al. "Identification of c-MYC as a target of the APC pathway." Science 281.5382 (1998): 1509-1512. - "To evaluate the transcriptional effects of APC, we studied a human colorectal cancer cell line (HT29-APC) containing a zinc-inducible APC gene and a control cell line (HT29–β-Gal) containing an analogous inducible lacZ gene". Note that common usage in the literature is often of the form "a human colorectal cancer cell line", as seen above. But such references to studies in "a line" refer to the fact that discrete populations of cells that are input into culturing or experiments, not an entire lineage of cells. It is these discrete populations that we refer to as 'cell lines'."</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">A secondary cultured cell population that represents a genetically stable and homogenous population of cultured cells that shares a common propagation history (ie has been successively passaged together in culture). </obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Matthew Brush</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cell line sample</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI-CLO Alignment Working Group (Spring 2013)</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CLO_0000031"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_cell line</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100069 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100069">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A macromolecule is a molecule of high relative molecular mass, the structure of which essentially comprises the multiple repetition of units derived, actually or conceptually, from molecules of low relative molecular mass.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">James Malone</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TERM: CHEBI:33839</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_polymer</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0302714 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0302714">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PMID: 18037794. Magn Reson Med Sci. 2007;6(3):139-46. Imaging of a large collection of human embryo using a super-parallel MR microscope.[the Orsay Museum has a nice collection of Impressionnist paintings]</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">a collection is a bfo:aggregate object, that is a set of material object of the same kind</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Susanna Sansone</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ensemble</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">group</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">set</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Philippe Rocca-Serra</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_collection (of entities of organismal origin)</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0302743 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0302743">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PMID: 2104732. Caudate lobe of the liver: anatomy, embryology, and pathology. AJR Am J Roentgenol. 1990 Jan;154(1):87-93.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liver is an anatomical entity which constituent are mainly hepatocytes, which has a function of detoxification, hematopoietic center, glucose and fat metabolism management. liver is only found in animals , all Vertebrates and some families of invertebrates</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial Branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_liver</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0302745 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0302745">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PMID: 18435934.Fatty acid composition of adipose tissue and blood in humans and its use as a biomarker of dietary intake.Prog Lipid Res. 2008 Apr 4.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adipose tissue is a tissue which main constituents are adipocytes. adipose tissue can be classified base on its location (site) but also based on adipocyte subtypes (brown or white) which reflect functional differences and is only found in animals, Vertebrates or invertebrates.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial derived</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000228"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_adipose tissue</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0302901 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0302901">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PMID: 18566411.Activation of the JAK/STAT-1 Signaling Pathway by IFN-{gamma} Can Down-Regulate Functional Expression of the MHC Class I-Related Neonatal Fc Receptor for IgG.J Immunol. 2008 Jul 1;181(1):449-63.</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000124"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a process by which a material entity status is modified and conferred a capability of reacting (this sounds like a circular definition , hugh!)</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI-Branch</obo:IAO_0000119>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obsolete_activation</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>