-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrobot_report.tsv
We can't make this file beautiful and searchable because it's too large.
12386 lines (12375 loc) · 707 KB
/
robot_report.tsv
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
Level Rule Name Subject Property Value
WARN annotation_whitespace BFO:0000002 IAO:0000602 (forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002]
WARN annotation_whitespace BFO:0000002 IAO:0000602 (forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001]
WARN annotation_whitespace BFO:0000002 IAO:0000602 (forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002]
WARN annotation_whitespace BFO:0000002 IAO:0000602 (forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002]
WARN annotation_whitespace BFO:0000003 IAO:0000602 (forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001]
WARN annotation_whitespace BFO:0000003 IAO:0000602 (forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001]
WARN annotation_whitespace BFO:0000004 IAO:0000602 (forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001]
WARN annotation_whitespace BFO:0000004 IAO:0000602 (forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002]
WARN annotation_whitespace BFO:0000004 IAO:0000602 (iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002]
WARN annotation_whitespace BFO:0000006 IAO:0000602 (forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001]
WARN annotation_whitespace BFO:0000006 IAO:0000602 (forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001]
WARN annotation_whitespace BFO:0000008 IAO:0000602 (forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002]
WARN annotation_whitespace BFO:0000008 IAO:0000602 (forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001]
WARN annotation_whitespace BFO:0000008 IAO:0000602 (forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001]
WARN annotation_whitespace BFO:0000009 IAO:0000602 (forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001]
WARN annotation_whitespace BFO:0000011 IAO:0000602 (forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002]
WARN annotation_whitespace BFO:0000011 IAO:0000602 (forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001]
WARN annotation_whitespace BFO:0000011 IAO:0000602 (forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001]
WARN annotation_whitespace BFO:0000011 IAO:0000602 (forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001]
WARN annotation_whitespace BFO:0000011 IAO:0000602 (forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001]
WARN annotation_whitespace BFO:0000015 IAO:0000602 (iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003]
WARN annotation_whitespace BFO:0000016 IAO:0000602 (forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002]
WARN annotation_whitespace BFO:0000016 IAO:0000602 (forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002]
WARN annotation_whitespace BFO:0000017 IAO:0000602 (forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002]
WARN annotation_whitespace BFO:0000017 IAO:0000602 (forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002]
WARN annotation_whitespace BFO:0000018 IAO:0000602 (forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001]
WARN annotation_whitespace BFO:0000019 IAO:0000602 (forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001]
WARN annotation_whitespace BFO:0000019 IAO:0000602 (forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001]
WARN annotation_whitespace BFO:0000020 IAO:0000602 (iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003]
WARN annotation_whitespace BFO:0000023 IAO:0000602 (forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001]
WARN annotation_whitespace BFO:0000024 IAO:0000602 (forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004]
WARN annotation_whitespace BFO:0000026 IAO:0000602 (forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001]
WARN annotation_whitespace BFO:0000027 IAO:0000116 An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects
WARN annotation_whitespace BFO:0000027 IAO:0000602 (forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004]
WARN annotation_whitespace BFO:0000028 IAO:0000602 (forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001]
WARN annotation_whitespace BFO:0000029 IAO:0000602 (forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002]
WARN annotation_whitespace BFO:0000031 IAO:0000602 (iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001]
WARN annotation_whitespace BFO:0000034 IAO:0000602 (forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001]
WARN annotation_whitespace BFO:0000035 IAO:0000602 (forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002]
WARN annotation_whitespace BFO:0000035 IAO:0000602 (iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001]
WARN annotation_whitespace BFO:0000038 IAO:0000602 (forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001]
WARN annotation_whitespace BFO:0000040 IAO:0000602 (forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002]
WARN annotation_whitespace BFO:0000040 IAO:0000602 (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002]
WARN annotation_whitespace BFO:0000040 IAO:0000602 (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002]
WARN annotation_whitespace BFO:0000140 IAO:0000602 (iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001]
WARN annotation_whitespace BFO:0000142 IAO:0000602 (iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001]
WARN annotation_whitespace BFO:0000144 IAO:0000602 (forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005]
WARN annotation_whitespace BFO:0000144 IAO:0000602 (iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002]
WARN annotation_whitespace BFO:0000145 IAO:0000602 (iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001]
WARN annotation_whitespace BFO:0000146 IAO:0000602 (iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001]
WARN annotation_whitespace BFO:0000147 IAO:0000602 (iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001]
WARN annotation_whitespace BFO:0000148 IAO:0000602 (forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001]
WARN annotation_whitespace IAO:0000009 IAO:0000232 "9/22/11 BP: changed the rdfs:label for this class from 'label' to 'datum label' to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum.
"
WARN annotation_whitespace IAO:0000115 IAO:0000116 "2012-04-05:
Barry Smith
The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
Can you fix to something like:
A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
Alan Ruttenberg
Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
On the specifics of the proposed definition:
We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. @en"
WARN annotation_whitespace IAO:0000424 IAO:0000112 "ObjectProperty: RO_0002104
Label: has plasma membrane part
Annotations: IAO_0000424 \""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""
@en"
WARN annotation_whitespace IAO:0000425 IAO:0000112 "ObjectProperty: RO???
Label: spatially disjoint from
Annotations: expand_assertion_to \""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""
@en"
WARN annotation_whitespace IAO:0000597 IAO:0000112 "Datatype: idrange:1
Annotations: 'has ID range allocated to': \""Chris Mungall\""
EquivalentTo: xsd:integer[> 2151 , <= 2300]
@en"
WARN annotation_whitespace IDO:0000409 IAO:0000115 A symbiont host role borne by an organism in virtue of the fact that its partner in symbiosis reaches developmental maturity or reproduces sexually in the host. @en
WARN annotation_whitespace OGG:0000000002 IAO:0000115 A gene is a material entity that represents the entire DNA sequence required for synthesis of a functional protein or RNA molecule.
WARN annotation_whitespace OGG:0000000006 IAO:0000115 A GeneID in the NCBI Gene database
WARN annotation_whitespace OGG:0000000007 IAO:0000115 the NCBI LocusTag name of a gene
WARN annotation_whitespace OGG:0000000030 IAO:0000115 An annotation property that represents a gene's association with PubMed publication(s).
WARN annotation_whitespace OMO:0001002 IAO:0000116 "This obsolesence reason should be used conservatively. For example: Obsoleting class that describes a breed of cow based on a record in an existing database, that was later retracted as faulty (breed does not exist). Do not use this term to obsolete a historic concept (that was once valid, but not anymore). @en"
WARN annotation_whitespace OPL:0000359 IAO:0000116 "Tachyzoites can be found in various organs and tissues during the acute phase of Toxoplasma gondii infection, including lymph nodes, spleen, liver, lungs, and the central nervous system. "
WARN annotation_whitespace RO:0002093 rdfs:comment X ends_during Y iff: ((start(Y) before_or_simultaneous_with end(X)) AND end(X) before_or_simultaneous_with end(Y). @en
WARN annotation_whitespace RO:0002161 IAO:0000425 Class: ?X DisjointWith: RO_0002162 some ?Y
WARN annotation_whitespace VO:0000018 IAO:0000115 A Brucella abortus vaccine that expresses Cu/Zn SOD with DNA plasmid pcDNA.
WARN annotation_whitespace VO:0000035 IAO:0000115 "a vaccinia virus vaccine that is a freeze-dried calf lymph smallpox vaccine, specifically, Dryvax is a live-virus preparation of vaccinia prepared from calf lymph. "
WARN annotation_whitespace VO:0000069 IAO:0000115 "A Measles-Mumps-Rubella vaccine that is live attenuated and manufactured by Merck & Co, Inc. "
WARN annotation_whitespace VO:0000070 IAO:0000115 A Measles-Mumps vaccine that is manufactured by Merck and used for human.
WARN annotation_whitespace VO:0000079 IAO:0000115 an influenza vaccine that is similar to Fluzone but has high dose.
WARN annotation_whitespace VO:0000091 IAO:0000115 "A Measles-Mumps-Rubella-Vericella vaccine that is live and manufactured by Merck & Co, Inc. "
WARN annotation_whitespace VO:0000137 IAO:0000115 A vaccine role that indicates the vaccine being a combination vaccine.
WARN annotation_whitespace VO:0000145 IAO:0000115 a vaccine component role that inheres in a recombinant vaccine vector as a vaccine component. The combination of a recombinant vaccine vector and a heterogenous protective antigen(s) inserted inside the vector for a recombinant vector vaccine.
WARN annotation_whitespace VO:0000147 IAO:0000115 an adjuvant role that inheres in a vaccine component which is added as part of a vaccine and induces enhanced adaptive immune response to the vaccine antigen.
WARN annotation_whitespace VO:0000154 IAO:0000115 A Brucella abortus gene that has the name sodC and comes from strain 2308.
WARN annotation_whitespace VO:0000166 IAO:0000115 a vaccine vector that uses a live bacterium as the vector
WARN annotation_whitespace VO:0000194 IAO:0000115 a USA licensed vaccine role that inheres ina vaccine approven to be by the US FDA to be used for humans in the USA.
WARN annotation_whitespace VO:0000207 IAO:0000115 A vaccine contraindication is a contraindication that increases the risks of a vaccination.
WARN annotation_whitespace VO:0000208 IAO:0000115 "A vaccine role that is not licensed or in clinical trial; instead, it has been experimently approved to induce protection or treatment effect in vivo in at least an experimental animal model. "
WARN annotation_whitespace VO:0000211 IAO:0000115 an organismal quality of a whole organism vaccine where the whole organism is inactivated/killed and lacks the capability of replication.
WARN annotation_whitespace VO:0000310 IAO:0000115 a vaccine additive that stabilizes the vaccine emulsification manufacturing process and makes emulsion of the vaccine easier.
WARN annotation_whitespace VO:0000335 IAO:0000115 A vaccination site that is used for injection of a vaccine.
WARN annotation_whitespace VO:0000369 IAO:0000115 A 'has vaccine component' relation that specifies the plasmid used for development of a particular DNA vaccine.
WARN annotation_whitespace VO:0000375 IAO:0000112 'Mycobacterium avium relA mutant vaccine' includes a gene mutation of relA from virulent Mycobacterium avium.
WARN annotation_whitespace VO:0000384 IAO:0000119 "PMID:18472194
"
WARN annotation_whitespace VO:0000400 IAO:0000115 A vaccine that contains one vaccine for priming and at least one other vaccine for boosting.
WARN annotation_whitespace VO:0000401 IAO:0000115 A prime-boost vaccine that contains one DNA vaccine for priming and at least one other vaccine for boosting.
WARN annotation_whitespace VO:0000435 IAO:0000115 a vaccine component that is composed of a plasmid and used in the generation of a DNA vaccine.
WARN annotation_whitespace VO:0000441 IAO:0000115 "Role of a material entity in an investigation, which has not been experimentally or clinically verified to induce a protection or treatment in vivo in a recipient organism. "
WARN annotation_whitespace VO:0000465 IAO:0000115 a S. aureus vaccine that uses bacterin as the protective antigen.
WARN annotation_whitespace VO:0000467 IAO:0000115 a S. aureus vaccine that uses the bacterial phage lysate as the protective antigen.
WARN annotation_whitespace VO:0000469 IAO:0000115 a bacterial vaccine that uses bacterin from a bacterial strain isolated from a herd with a purpose to generate hard-specific vaccine.
WARN annotation_whitespace VO:0000470 IAO:0000115 an autogenous bacterin vaccine that is prepared for poultry use.
WARN annotation_whitespace VO:0000476 IAO:0000115 "A 'has vaccine component' relation that specifies a gene inserted to DNA vaccine plasmid for development of a particular DNA vaccine, and this gene encodes for a protein antigen. "
WARN annotation_whitespace VO:0000483 IAO:0000115 A subunit vaccine that is made using a part of whole organism as subunit for vaccine development.
WARN annotation_whitespace VO:0000504 IAO:0000115 a vaccine role that indicates the vaccine being a whole organism vaccine.
WARN annotation_whitespace VO:0000512 IAO:0000115 a viral vaccine against a disease caused by a virus belong to Poxviridae.
WARN annotation_whitespace VO:0000524 IAO:0000116 "This relation only works for those vaccine antigen that is physically part of a vaccine preparation. It does not include those antigens that are not part of vaccine. For example, a protein antigen expressed in a DNA vaccine is not a part of vaccine pe ser. In this case, the vaccine expresses the protein, but the gene is part of the vaccine, not the protein. For the case, we can use the relation 'DNA vaccine expresses protein antigen' under the relation 'expresses'. "
WARN annotation_whitespace VO:0000532 IAO:0000115 A route of administration that is loacted in the hypodermis (subcutaneous tissue) region.
WARN annotation_whitespace VO:0000560 IAO:0000115 A toxin is a poisonous substance produced within living cells or organisms; man-made substances created by artificial processes are thus excluded.
WARN annotation_whitespace VO:0000560 rdfs:comment "The term was first used by organic chemist Ludwig Brieger (1849-1919).[3]
For a toxic substance not produced within living organisms, \""toxicant\"" and \""toxics\"" are also sometimes used.[citation needed].
Toxins can be small molecules, peptides, or proteins that are capable of causing disease on contact with or absorption by body tissues interacting with biological macromolecules such as enzymes or cellular receptors. Toxins vary greatly in their severity, ranging from usually minor and acute (as in a bee sting) to almost immediately deadly (as in botulinum toxin).-- from Wikipedia.
"
WARN annotation_whitespace VO:0000574 IAO:0000115 "A path that is located in gross anatomical part of an organism (e.g., human) and is used for administering a vaccine, a drug, fluid, poison, or other substance into the body. "
WARN annotation_whitespace VO:0000577 IAO:0000115 A subunit vaccine that uses small peptide(s) as immunoepitopes.
WARN annotation_whitespace VO:0000599 IAO:0000116 "a vaccine component that uses a microbe (e.g., bacterium, virus, and parasitic organism) as a vector that is inserted with the DNA(s) of a heterologous protective antigen(s) to generate a \""recombinant vector vaccine\"". The microorganism used as a vector generally has a stable non or low pathogenic phenotype for the species the vaccine is intended for. "
WARN annotation_whitespace VO:0000608 IAO:0000115 An 'expresses' relation that specifies a relation between a DNA vaccine and a protein antigen to be expressed by the DNA vaccine.
WARN annotation_whitespace VO:0000615 IAO:0000115 Role that inheres in a prepared material entity that is designed to induce protection or treatment for a disease or infection.
WARN annotation_whitespace VO:0000617 IAO:0000115 A role that inheres in a material entity that becomes an ingredient of a vaccine.
WARN annotation_whitespace VO:0000622 IAO:0000115 a vaccine antigen role that inheres in a vaccine antigen which is capable of inducing protective immunity.
WARN annotation_whitespace VO:0000623 IAO:0000115 A vaccine role that indicates the vaccine being a DNA vaccine.
WARN annotation_whitespace VO:0000624 IAO:0000115 A vaccine role that indicates the vaccine being a subunit vaccine.
WARN annotation_whitespace VO:0000625 IAO:0000115 A vaccine role that indicates the vaccine being a conjugate vaccine.
WARN annotation_whitespace VO:0000636 IAO:0000115 A vaccine role that indicates the vaccine being a recombinant vector vaccine.
WARN annotation_whitespace VO:0000642 rdfs:comment "There is no single 'influenza virus' in NCBI_Taxon. We usually use:
('unidentified influenza virus' or 'Influenzavirus A' or 'Influenzavirus B' or 'Influenzavirus C')
However, even this may not be comprehensive. "
WARN annotation_whitespace VO:0000671 IAO:0000115 "A Salmonella vaccine against typhoid fever (or called typoid), caused by Salmonella enterica enterica, serovar Typhi. "
WARN annotation_whitespace VO:0000675 IAO:0000115 "a Streptococcal vaccine that is used against S. pneumoniae infection, which causes pneumococcal diseases. "
WARN annotation_whitespace VO:0000685 IAO:0000115 a recombinant vector vaccine role that inheres in a bacterium that carries a vaccine antigen for development of a particular vaccine
WARN annotation_whitespace VO:0000692 IAO:0000115 A subunit vaccine role that indicates the vaccine being a peptide vaccine.
WARN annotation_whitespace VO:0000702 IAO:0000115 a recombinant vector vaccine role that inheres in a virus that carries a vaccine antigen for development of a particular vaccine
WARN annotation_whitespace VO:0000728 IAO:0000115 A vaccine role that indicates the vaccine being a RNA vaccine.
WARN annotation_whitespace VO:0000731 rdfs:comment MMR is usually live attenuated.
WARN annotation_whitespace VO:0000767 IAO:0000115 A bacterial vaccine that protects against diseases caused by various species of Rickettsia. Typhus is any of several similar diseases caused by Rickettsia bacteria. So Rickettsial vaccine is also called typhus vaccine.
WARN annotation_whitespace VO:0000794 IAO:0000115 A Brucella abortus gene that has the name wboA and comes from strain 2308.
WARN annotation_whitespace VO:0000799 IAO:0000115 "An object property that represents a mutational relation between a vaccine organism and another material (e.g., gene or protein). the mutated material initially exists in the original wildtype organism. "
WARN annotation_whitespace VO:0000807 IAO:0000115 A vaccine role that indicates the vaccine being a toxoid vaccine.
WARN annotation_whitespace VO:0000818 IAO:0000115 An object property that specifies a relation between a vaccine and a vaccine virmugen.
WARN annotation_whitespace VO:0000857 IAO:0000115 "Process profile that is measurable and the measured data indicates the degree of immunological protection in the vaccine recipient. More specifically, it is the process in some immune response component (such as gene, protein, etc.) which serves as an immune biomarker. "
WARN annotation_whitespace VO:0000922 IAO:0000115 a vaccine stablizer that is based on monosodium glutamate.
WARN annotation_whitespace VO:0000929 rdfs:comment "Potential Acute Health Effects: Slightly hazardous in case of skin contact (irritant), of eye contact (irritant), of ingestion, of inhalation. Reference: http://www.sciencelab.com/msds.php?msdsId=9926640 "
WARN annotation_whitespace VO:0000931 IAO:0000115 a cell culture residual in vaccine that is residual protein from cell culture.
WARN annotation_whitespace VO:0000957 IAO:0000115 a B. abortus vaccine that uses a recombinant vector.
WARN annotation_whitespace VO:0001014 IAO:0000115 a live attenuated quality of a bacterial vaccine strain.
WARN annotation_whitespace VO:0001015 IAO:0000115 a live attenuated quality of a virus vaccine strain.
WARN annotation_whitespace VO:0001019 IAO:0000115 an avian reovirus vaccine that using live attenauted reovirus.
WARN annotation_whitespace VO:0001021 IAO:0000115 a feline panleukopenia virus vaccine where the virus used is live attenuated.
WARN annotation_whitespace VO:0001028 IAO:0000115 a parasite vaccine vector using a live attenuated Leishmania tarentolae strain.
WARN annotation_whitespace VO:0001050 IAO:0000118 PrV vaccine vector
WARN annotation_whitespace VO:0001060 IAO:0000118 NDV vaccine vector
WARN annotation_whitespace VO:0001084 IAO:0000115 a viral vaccine vector that uses a baculovirus as the vector
WARN annotation_whitespace VO:0001107 IAO:0000115 a vaccinia virus vector that uses the Modified Vaccinia Ankara (MVA) virus.
WARN annotation_whitespace VO:0001109 IAO:0000115 a vaccinia virus vector that uses the MVTT vaccine strain as the vector. MVTT is an attenuated vaccine strain.
WARN annotation_whitespace VO:0001111 IAO:0000115 A poxvirus vaccine vector that uses an attenuated lumpy skin disease virus as the vector.
WARN annotation_whitespace VO:0001128 IAO:0000115 a canarypox vaccine vector that uses an attenuated canarypox virus strain ALVAC. The ALVAC vector is a canarypox virus clone obtained after four rounds of plaque purification of a strain from a vaccine for canaries.
WARN annotation_whitespace VO:0001186 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001188 IAO:0000115 A measurement datum that represents a vaccine strain. Different strains can be represented using distinct digital numbers.
WARN annotation_whitespace VO:0001188 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001189 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001190 IAO:0000115 A measurement datum that indicates the usage of a vaccine adjuvant. Different digital numbers can be used to represent different adjuvants.
WARN annotation_whitespace VO:0001190 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001191 IAO:0000115 A measurement datum that represents a specific protective antigen used in a vaccine. The antigen can be represented by a described digit.
WARN annotation_whitespace VO:0001191 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001192 IAO:0000115 A measurement datum that represents a specific mutated gene from a vaccine strain. The mutated can be represented by a described digit.
WARN annotation_whitespace VO:0001192 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001193 IAO:0000115 "A measurement datum that represents a specific mouse strain used for vaccination. Different strains can be represented using discretized digitals. For example, 0 = BALB/c; 1 = CD1; 2 = mixed/outbred; 3 = C57BL/6; 4 = OF1; 5 = 129/Sv; 6 = Swiss albino.
"
WARN annotation_whitespace VO:0001193 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001194 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001195 IAO:0000115 "A measurement datum that represents a specific route (e.g., i.p.) used for vaccination. Different routes can be represented using discretized digitals. 0 = IP; 1 = PO; 2 = SC; 3 = IM; 4 = IN; 6 = IG; 7 = IV; 8 = ID.
"
WARN annotation_whitespace VO:0001195 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001196 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001197 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001198 IAO:0000115 A measurement datum that represents a specific pathogen strain used for animal challenge study. Different pathogen strains can be represented using discretized digitals.
WARN annotation_whitespace VO:0001198 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001199 IAO:0000115 A measurement datum that represents a specific pathogen used for animal challenge study. Different pathogens can be represented using discretized digitals.
WARN annotation_whitespace VO:0001199 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001202 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001203 IAO:0000115 A measurement datum that represents a length of days as the interval between a vaccination and a challenge in a specific vaccine protection study.
WARN annotation_whitespace VO:0001203 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001204 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001205 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001206 IAO:0000119 "Todd TE, Tibi O, Lin Y, Sayers S, Bronner DN, Xiang Z, He Y. Meta-analysis of variables affecting mouse protection efficacy of whole organism Brucella vaccines and vaccine candidates. BMC Bioinformatics. 2013, 14(Suppl 6):S3. PMID: 23735014. PMCID: PMC3633026. "
WARN annotation_whitespace VO:0001214 IAO:0000115 a bacterial vaccine that uses inactivated bacterial organism.
WARN annotation_whitespace VO:0001215 IAO:0000115 "an anti-reproductive vaccine for cattle. The vaccine is based on the established principle that antibodies to the hypothalamic releasing hormone, gonadotrophin releasing hormone (GnRH) block the action of GnRH on pituitary secretion of luteinizing hormone and follicle stimulating hormone, leading to gonadal atrophy in mammals. The vaccine comprises an immunogenic GnRH:ovalbumin conjugate formulated in a novel double adjuvant system and is administered in a two-dose treatment regimen. "
WARN annotation_whitespace VO:0001220 rdfs:comment "This term has an equivalent class:
'viral vaccine' and ('has quality at some time' some 'vaccine organism live attenuated')
However, running the reasoner takes time. As a way to reducing the time, I have tentatively made tern two subclasses instead of equivalent class. If needed, the equivalent class can be used in SPARQL or converted back in VO. --Oliver
"
WARN annotation_whitespace VO:0001395 IAO:0000115 a vaccine that contains two or more individual vaccines.
WARN annotation_whitespace VO:0002115 IAO:0000115 A horse Encephalomyelitis-Influenza-West Nile Virus vaccine that is inactivated and manufactured by Wyeth Pharmaceuticals Inc.
WARN annotation_whitespace VO:0002483 IAO:0000115 "A horse vaccine that protects against EEE, VEE, WEE, influenza virius infection, and West Nile virus infection. "
WARN annotation_whitespace VO:0003016 IAO:0000115 "A route of administration that located in the stomach, so that the material is taken into body through stomach directly. "
WARN annotation_whitespace VO:0003023 IAO:0000115 A vaccine prepration process that mixes vaccine lyophilized powder and diluent liquid. The process forms a vaccine that can be used for administration. This term can also be considered as a child term of OBI term 'material combination'.
WARN annotation_whitespace VO:0003023 rdfs:comment "A vaccine may include vaccine powder and solvent. When the two mix, we get a vaccine solution, which can be used to inject. Examples:
http://www.medicines.org.uk/guides/acwy%20vax/Vaccinations%20%28all%29/
http://www.medicines.org.uk/guides/menitorix/Vaccinations%20%28all%29/
http://www.medicines.org.uk/guides/priorix/Vaccinations%20%28all%29/ "
WARN annotation_whitespace VO:0003024 IAO:0000115 a vaccine powder that is freeze-dried and lyophilized.
WARN annotation_whitespace VO:0003033 IAO:0000115 a protein vaccine stablizer that is specifically bovine serum albumin.
WARN annotation_whitespace VO:0003035 IAO:0000115 a vaccine stabilizer that is generated based on amino acids.
WARN annotation_whitespace VO:0003036 IAO:0000115 a vaccine stabilizer that is specifically made by a sucrose.
WARN annotation_whitespace VO:0003041 IAO:0000115 an antibiotics vaccine residual that has the antibiotics of neomycin.
WARN annotation_whitespace VO:0003042 IAO:0000115 the vaccine antiegn that induces protective immune response.
WARN annotation_whitespace VO:0003048 IAO:0000115 "when the vaccination of a significant portion of a population (or herd), in contagious diseases that are transmitted from individual to individual, chains of infection are likely to be disrupted, so the large numbers of a population are immue or less susceptible to the disease. "
WARN annotation_whitespace VO:0003050 IAO:0000115 A role inheres in a material eneitity that union itself chemically with a relative weak vaccine antigen to form a new whole that can create an effective miinuogen. The
WARN annotation_whitespace VO:0003057 IAO:0000115 an vaccine-induced host response that shows augmented protection and cellular immunity after a host protein is used as adjuvant.
WARN annotation_whitespace VO:0003247 IAO:0000115 The site that is the part of the host body and the entrance point where a vaccine is administered.
WARN annotation_whitespace VO:0003336 IAO:0000115 a vaccine-induced down-regulation gene expression that occurs in live attenuated vaccine and compared with the host system infected with live wild type virulent strain which is the parent strain of this live attenuated vaccine.
WARN annotation_whitespace VO:0003348 IAO:0000115 A vaccine-induced up-regulation gene expression that occurs in live attenuated vaccine and compared with the host system infected with live wild type virulent strain which is the parent strain of this live attenuated vaccine.
WARN annotation_whitespace VO:0004400 IAO:0000115 "An autologous dendritic cell vaccine with potential immunostimulatory activity. Dendritic cells harvested from a prostate cancer patient are transfected with the mRNA encoding for prostate specific antigen (PSA), a tumor marker secreted by prostatic epithelial and ductal cells. When reintroduced back to the patient, these PSA RNA pulsed autologous dendritic cells may elicit a cytotoxic T-cell (CTL) response against PSA-positive prostate cancer cells. "
WARN annotation_whitespace VO:0006094 IAO:0000116 "Chemical Nature: Nucleic acid
Mechanism of Action: TLR9 agonist
Immune profile induced: Mixed Th1/Th2
Route of immunization: IM, SQ
Point of Contact: Nikolai Petrovsky, Vaxine LTD
"
WARN annotation_whitespace VO:0006105 IAO:0000115 A vaccine adjuvant which is a small molecule adjuvant that is able to induce a mixed Th1/Th2 response and active innate immunity.
WARN annotation_whitespace VO:0007240 rdfs:comment Gene name: IFNG -Obselete
WARN annotation_whitespace VO:0007336 IAO:0000115 A cancer vaccine that consists of of irradiated autologous tumor cells admixed with GM-CSF-secreting bystander cells. The CD8+ T cells can react against CLL-associated antigens. Autologous tumor cell vaccination is an effective strategy to advance long-term leukemia control following allogeneic hematopoietic stem cell transplantation (allo-HSCT).
WARN annotation_whitespace VO:0007342 IAO:0000115 "A cancer vaccine that is composed of oxidized ovarian tumor cell lysate, with potential immunostimulatory and antineoplastic activities. The autologous oxidized ovarian tumor cell lysate vaccine exposes the immune system to an undefined amount of tumor-associated antigens (TAAs), which may result in the induction of both anti-tumor cytotoxic T-lymphocytes (CTLs) and antibody-dependent responses against TAA-expressing cells, leading to tumor cell lysis. Compared to non-oxidized tumor cell lysate vaccines, oxidized tumor cell lysate vaccines induce necrotic cell death, increase the immunogenicity of the TAAs and may enhance the anti-tumor immune response. Cyclophosphamide/Fludarabine Lymphodepletion and an immunomodulatory combination of Interferon-alpha Bevacizumab and Aspirin followed by adoptive transfer of vaccine-primed ex vivo CD3/CD28-costimulated peripheral blood autologous T cells and vaccination with whole tumor vaccine administered intradermally in combination with Bevacizumab in patients with recurrent ovarian cancer fallopian tube or primary peritoneal cancer may help treat their tumors. Patients will receive 5-10 million cells intradermally. "
WARN annotation_whitespace VO:0007348 IAO:0000115 "A cancer vaccine made up of Bcl-xl_42 and the adjuvant CAF09b for patients with hormone-sensitive Prostate Cancer (PC) and lymph node metastases. B-cell lymphoma extra large protein (Bcl-xl) protein plays a vital role in the cancer cell's ability to avoid programmed cell death (apoptosis) and is upregulated in a variety of cancerous diseases, Bcl-xl_42 is a peptide fragment of the full protein and can lead to the death of cancer cells. CAF09b improves the activation of the immune system. "
WARN annotation_whitespace VO:0007354 IAO:0000115 A vaccine comprised of autologous dendritic cells pulsed with mRNA-encoded Carcinoembryonic Antigen (CEA) targeting tumor cells expressing CEA.
WARN annotation_whitespace VO:0007364 IAO:0000115 "A cancer vaccine consisting of the bcr-abl b2a2 fusion oncoprotein, frequently expressed in chronic myelogenous leukemia (CML), with potential antineoplastic activity. Vaccination with the bcr-abl (b2a2)-derived peptide vaccine may stimulate the host immune system to mount a cytotoxic T lymphocyte (CTL) response against tumor cells that express the bcr-abl b2a2 fusion protein. The vaccine is made from made from the proteins that cause leukemia cells in CML to behave abnormally. Imatinib mesylate is the standard therapy for CML and blocks the function of this protein. In combination, these may decrease or eliminate all evidence of disease in patients who have CML that is in remission after treatment with imatinib mesylate, but who still have small amounts of detectable disease. "
WARN annotation_whitespace VO:0007380 OGG:0000000006 " 4582"
WARN annotation_whitespace VO:0007386 rdfs:comment Gene name: GAA
WARN annotation_whitespace VO:0007395 OGG:0000000006 " 4582"
WARN annotation_whitespace VO:0007410 IAO:0000115 "A cell-based cancer vaccine consisting of autologous dendritic cells (DCs) pulsed with mesothelioma tumor lysate with potential immunostimulating and antineoplastic activities. Upon administration, mesothelioma tumor lysate-pulsed autologous dendritic cell vaccine may stimulate the host immune system to mount a specific cytotoxic T lymphocyte (CTL) response against mesothelioma tumor cells, resulting in tumor cell lysis. "
WARN annotation_whitespace VO:0007475 OGG:0000000006 " 4582"
WARN annotation_whitespace VO:0007477 IAO:0000115 An autologous dendritic cell (DC) cancer vaccine with GITRL RNA-transfected that has potential immunostimulatory activity.
WARN annotation_whitespace VO:0007497 IAO:0000115 "A cancer vaccine containing dendritic cells (DCs) that are transfected with messenger RNA (mRNA) encoding human telomerase reverse transcriptase (hTERT) and survivin in addition to patient-specific melanoma-derived mRNA with potential immunostimulatory and antineoplastic activities. Upon administration, hTERT/survivin/melanoma tumor cell-derived mRNA-transfected dendritic cell vaccine may elicit a highly specific cytotoxic T-cell (CTL) response against melanoma cells expressing hTERT, survivin, and patient-specific melanoma-associated antigens. hTERT, the catalytic subunit of human telomerase, and survivin, a member of the inhibitor of apoptosis (IAP) family of proteins, may be upregulated in certain tumor cell types, playing key roles in tumor cell growth and survival. "
WARN annotation_whitespace VO:0007511 IAO:0000115 "A cancer vaccine prepared as tumor cells are isolated from the lesion site of patients with recurrent or metastatic bladder cancer, and dendritic cells or macrophages are isolated from peripheral blood. The vaccine activates an immune response and the microenvironment of bladder cancer lesions, and improves the anti-recurrence treatment effect of bladder cancer. "
WARN annotation_whitespace VO:0007513 IAO:0000115 "A cancer vaccine for patients with Locally Advanced, Triple-Negative Breast Cancer or ER-Positive, Her2-Negative Breast Cancer to receive ex vivo-generated tumor antigen-loaded dendritic cells (DCs), which can prime lymphocytes and regulate and maintain immune responses. The vaccine may boost T cell immunity targeted against breast cancer, enhance chemotherapy effectiveness and decrease tumor metastagenicity, and decrease the recurrence rates of LA TNBC and ER+/HER2- BC. "
WARN annotation_whitespace VO:0007526 IAO:0000115 "A cancer vaccine comprised of estrogen receptor alpha (ERa; estrogen receptor 1; ESR1) mutant peptides, combined with the immunoadjuvants granulocyte-macrophage colony-stimulating factor (GM-CSF) and montanide ISA, with potential immunomodulating and antineoplastic activities. ESR1 mutant peptides in the ESR1 peptides/GM-CSF/montanide ISA vaccine may activate the immune system to induce an immune response against tumor cells expressing these ESR1 mutations. Cancer peptides used in this vaccine are derived from the estrogen receptor and are combined with the adjuvant Montanide ISA and GM-CSF to enhance their immune response. The vaccine may improve outcomes of patients with endocrine resistant breast cancer. "
WARN annotation_whitespace VO:0007532 IAO:0000115 A cancer vaccine containing dendritic cells (DCs) that are transfected with messenger RNA (mRNA) encoding human telomerase reverse transcriptase (hTERT) and LAMP.
WARN annotation_whitespace VO:0007537 IAO:0000115 "A conjugate consisting of fluorescein isothiocyanate (FITC) conjugated with folate with potential antineoplastic activity. Folate-FITC binds to folate receptors, which are overexpressed on the surfaces of many cancer cells including kidney and ovarian cancer cells. Once bound to the cancer cell through the folate moiety of the conjugate, circulating anti-fluorescein antibodies may recognize and bind to the FITC moiety, resulting in antibody-dependent cellular cytotoxicity. "
WARN annotation_whitespace VO:0007557 OGG:0000000006 " 4582"
WARN annotation_whitespace VO:0007567 OGG:0000000006 " 253970502"
WARN annotation_whitespace VO:0007664 IAO:0000115 "A cancer vaccine comprised of K562 cells transfected with the granulocyte macrophage-colony stimulating factor (GM-CSF) gene with potential immunopotentiating properties. This vaccine may stimulate the host immune system to produce an antitumoral T-lymphocyte response, thereby inhibiting tumor growth. A cultured cell line is genetically changed to secrete GM-CSF mixed with irradiated leukemia cells obtained from a patient. Vaccines made from gene-modified cancer cells may help the body build an effective immune response to kill cancer cells. Imatinib mesylate may stop the growth of cancer cells by blocking some of the enzymes needed for cell growth. Giving vaccine therapy together with imatinib mesylate may be an effective treatment for chronic myelogenous leukemia. The vaccine can also be combined with stem cell transplantation. The vaccine may induce an immune response to common myeloid antigens (e.g., Wilms' tumor-1 [WT-1], survivin, or proteinase-3) in patients with Myelodysplastic Syndrome. "
WARN annotation_whitespace VO:0007665 IAO:0000119 NCT: https://clinicaltrials.gov/study/NCT00840931
WARN annotation_whitespace VO:0007667 IAO:0000115 "A cancer vaccine that uses irradiated, adenovirus transduced autologous myeloblasts to secrete granulocyte-macrophage colony-stimulating factor (GVAX) early after allogeneic hematopoietic stem cell transplantation (HSCT) to induce potent immune responses. The vaccine may prevent advanced myelodysplastic syndrome (MDS), Chronic Myelomonocytic Leukemia (CMML), or acute myeloid leukemia (AML) from relapsing after stem cell transplant. The patients own cancer cells are engineered to produce a protein called GM-CSF, which can be effective in stimulating a powerful immune response specific to that cancer. "
WARN annotation_whitespace VO:0007672 IAO:0000115 "A cancer vaccine made from a person's white blood cells mixed with tumor proteins (HLA-A1- and HLA-A2.1-restricted peptides derived from melanoma-associated tumor antigens) and CD40-ligand, and may make the body build an immune response to kill tumor cells. This is combined with denileukin diftitox, which "
WARN annotation_whitespace VO:0007678 IAO:0000115 "A cancer vaccine derived from the immunomodulatory enzyme indoleamine 2,3-dioxygenase (IDO) with potential immunomodulating and antineoplastic activities. It may activate the immune system to induce an immune response against IDO-expressing tumor cells, which may restore the proliferation and activation of various immune cells including cytotoxic T-lymphocytes (CTLs), natural killer cells (NKs), and dendritic cells (DCs), and may eradicate IDO-expressing tumor cells through a CTL-mediated response. This vaccine, using a small fragment of IDO, can be used in combination with either Ipilimumab or Vemurafenib to treat malignant melanoma that has metastasized. "
WARN annotation_whitespace VO:0007693 IAO:0000115 "A cancer vaccine containing a mixture of killed bacteria with potential immunostimulatory and antineoplastic activities. Mixed bacteria vaccine (MBV or Coley's toxins) consists of a pyrogenic bacterial lysate derived from Serratia marcescens and Streptococcus pyogenes; the active components in the lysate may be lipopolysaccharide (LPS), a component of the Gram-negative bacterial cell wall of Serratia, and streptokinase, an enzyme produced by Streptococcus pyogenes. LPS has been shown to stimulate the host humoral immune response and induce the release of various antitumor cytokines such as tumor necrosis factor (TNF) and interleukin-12 (IL-12). The mixed bacteria vaccine (MBV) is administered at a starting dose of 250 EU (1 µL) and escalated in each patient to a dose inducing the desired pyrogenic effect, defined as a body temperature of 38°C to 39.5°C. It is given to patients with malignant tumors that expressed the NY-ESO-1 antigen. It is designed to induce immunological effects and tumor response following vaccination. "
WARN annotation_whitespace VO:0007695 IAO:0000115 A cancer vaccine made with dendritic cells (DCs) pulsed with mRNA encoded tumor antigens. These personalized cell vaccines may lead to antitumor specific T cell responses.
WARN annotation_whitespace VO:0007702 IAO:0000115 "A cancer vaccine adjuvant and synthetic Toll-like receptor (TLR) type 1 and 2 ligand composed of a lipopeptide containing a water-soluble derivative of Pam3-Cys, the biologically active component of the mycobacterial 19 kDa lipoprotein of mycobacteria, that is covalently linked to a synthetic peptide (GDPKHPKSF), with potential immunostimulating activity. TLR1/2 agonist Pam3Cys-GDPKHPKSF targets, binds to and activates TLR1/2, which induces CD8- and T-helper 1 CD4-positive T-cell responses. This may enhance T-cell-mediated immune responses when administered together with peptide vaccine. A multi-peptide vaccine can be used in combination with the TLR1/2 ligand XS15 in CLL patients undergoing ibrutinib-based regimes. Applying several CLL-associated antigens simultaneously increases the likelihood that a multi-clonal, broad and at the same time highly specific T-cell response is mounted, thereby preventing potential tumor escape mechanisms. The novel TLR1/2 ligand (XS15, developed in Tübingen) that (i) is water-soluble and (ii) GMP-amenable, (iii) non-toxic and (iv) effective in inducing T cells specific for peptides in vivo. A personalized multi-peptide vaccination can also be used in combination with the TLR1/2 ligand XS15 for individual patients with advanced solid and hematological malignancies without any approved treatment options. "
WARN annotation_whitespace VO:0007711 IAO:0000115 "A cancer vaccine consisting of autologous DCs loaded with immunogenic peptides derived from autologous cancer cells, with potential immunomodulating and antineoplastic activities. Vaccination with the neoantigen-loaded autologous DC vaccine stimulates the host immune system to mount a cytotoxic T-lymphocyte (CTL) response against tumor cells expressing the neoantigens, which results in tumor cell lysis. Neoantigens arising from the mutations of the tumor genome expressed specifically on the tumor cell instead of normal cells, suggesting that vaccines targeting neoantigens should generate a highly tumor-specific response with minimal off-target effects. Neoantigens are identified from tumor tissues from a gastric cancer, hepatocellular carcinoma, lung cancer or colorectal cancer patient. Dendritic cells are then primed with synthesized peptides. The vaccine can be combined with microwave ablation ti treat patients with Hepatocellular Carcinoma (HCC). It can also be combined with Anti-PD1 (Nivolumab) as for patients with resected Hepatocellular Carcinoma (HCC) and Liver Metastases From Colorectal Cancer (CRLM). "
WARN annotation_whitespace VO:0007711 IAO:0000119 NCT: https://clinicaltrials.gov/study/NCT03871205
WARN annotation_whitespace VO:0007711 IAO:0000119 NCT: https://clinicaltrials.gov/study/NCT04147078
WARN annotation_whitespace VO:0007711 IAO:0000119 NCT: https://clinicaltrials.gov/study/NCT04912765]
WARN annotation_whitespace VO:0007713 IAO:0000115 "A cancer vaccine comprised of synthetic peptides derived from the cancer-testis antigen NY-ESO-1, preferentially expressed antigen in melanoma (PRAME), human melanoma antigen A3 (MAGE-A3) and the human Wilms tumor protein-1 (WT-1), with potential immunostimulating and antineoplastic activities. NY-ESO-1/PRAME/MAGE-A3/WT-1 peptide vaccine may stimulate the immune system to mount a cytotoxic T-lymphocyte (CTL) response against tumor cells expressing NY-ESO-1, PRAME, MAGE-A3 and WT-1, resulting in tumor cell lysis. As proteins are degraded in cells, peptides are presented on the surface of these cells as a complex with tissue type molecules (HLA molecules). T-cells may then recognize the peptide-HLA complexes, via its T-cell receptor, potentially resulting in tumor-cell killing, if sufficient priming takes place. Cancer testis antigens (CTA's) are known to be immunogenic and are only expressed at immunoprivileged sites, thus out of reach of immune responses, and on cancer cells, making them ideal targets for therapeutic cancer vaccination. The CTA's chosen were NY-ESO-1, MAGE-A3 and PRAME. WT-1 is additionally included as this protein has proven to be an important antigen in hematological malignancies. It is combined with azacitidine for treatment of patients with high-risk myelodysplastic syndrome or acute myeloid leukemia. "
WARN annotation_whitespace VO:0007715 IAO:0000115 "A cancer vaccine composed of autologous ovarian cancer antigens obtained from hydrolyzed, inactivated blood and tumor tissue of patients with ovarian cancer, with potential immunostimulatory and antineoplastic activities. The ovarian cancer antigens stimulate the immune system and activate a cytotoxic T-lymphocyte (CTL) immune response against ovarian cancer cells. Ovarian cancer patients can be given one pill a day for three months. "
WARN annotation_whitespace VO:0007718 IAO:0000115 "A cancer vaccine made up of CPC-P501 protein formulated with the adjuvant AS15. Patients with hormone-sensitive prostate cancer and rising PSA, after primary tumor treatment, can be treated with the P501-AS15 vaccine. "
WARN annotation_whitespace VO:0007725 IAO:0000115 "A cancer vaccine for melanoma. Melanomas have mutations (changes in genetic material) that are specific to an individual patient and tumor. These mutations can cause the tumor cells to produce proteins that appear very different from the body's own cells. These proteins used in a vaccine may induce strong immune responses, which may help the participant's body fight any tumor cells that could cause the melanoma to come back in the future. NeoVax is a long-peptide vaccine targeting up to 20 personal neoantigens per patient for patients with surgically resected stage IIIB/C or IVM1a/b melanoma. There was long-term persistence of neoantigen-specific T cell responses following vaccination, with ex vivo detection of neoantigen-specific T cells exhibiting a memory phenotype, as well as diversification of neoantigen-specific T cell clones over time, with emergence of multiple T cell receptor clonotypes exhibiting distinct functional avidities. There was also tumor infiltration by neoantigen-specific T cell clones after vaccination and epitope spreading, suggesting on-target vaccine-induced tumor cell killing. Personal neoantigen peptide vaccines thus induce T cell responses that persist over years and broaden the spectrum of tumor-specific cytotoxicity in patients with melanoma. "
WARN annotation_whitespace VO:0007726 IAO:0000115 "A cancer vaccine that contains 6 synthetic peptides mixed with the adjuvant Montanide™. The peptides were selected to induce T cell responses against 12 dominant epitopes from 7 cancer testis antigens (CTAs), which are the most frequently expressed CTAs in colorectal cancer. The 6 peptides were optimized to induce long lasting CRC specific T cell responses. Colorectal cancer peptide vaccine PolyPEPI1018 potentially elicits a cytotoxic T-lymphocyte response against colorectal tumors expressing the CTAs associated with the vaccine, which may result in a reduction in tumor cell proliferation. "
WARN annotation_whitespace VO:0007727 IAO:0000115 "A cancer vaccine consisting of whole irradiated heterologous melanoma cells which express multiple melanoma-related antigens. Polyvalent melanoma vaccine may stimulate an antitumoral cytotoxic T-cell immune response in the host, resulting in inhibition of tumor cell proliferation and tumor cell death. Vaccines may make the body build an immune response and kill tumor cells. Interleukin-2 may stimulate a person's white blood cells to kill tumor cells. Interferon alfa-2b may interfere with the growth of tumor cells. Treatment with this combination may help treat melanoma. "
WARN annotation_whitespace VO:0007730 IAO:0000115 "A cancer vaccine containing seven 17 amino acids long synthetic RAS oncogene-encoded peptides representing the most common codon 12 and 13 oncogenic mutations in Kirsten rat sarcoma viral oncogene homolog (KRAS), with potential immunomodulating and antineoplastic activities. The vaccine may stimulate a specific CD4-positive helper T-lymphocyte- and cytotoxic T-lymphocyte (CTL)-mediated immune response against RAS mutant-specific-expressing cancer cells, resulting in an inhibition of tumor cell proliferation and tumor cell death. The vaccine can be given in combination with Balstilimab and QS-21 for patients with pancreatic cancer to increase efficacy. "
WARN annotation_whitespace VO:0007733 IAO:0000115 "A cancer vaccine that consists of the oligosaccharide antigen sialyl Lewis (CA19-9) conjugated to the nonspecific immunomodulator keyhole limpet hemocyanin (KLH), with potential antineoplastic activity. The sialyl Lewis-keyhole limpet hemocyanin conjugate vaccine may induce production of IgG and IgM antibodies as well as trigger an antibody-dependent cell-mediated cytotoxicity (ADCC) against tumor cells expressing the sialyl Lewis antigen. The vaccine therapy together with QS21 may cause a stronger immune response and kill more tumor cells. "
WARN annotation_whitespace VO:0007735 IAO:0000115 "A cancer vaccine made with GMCSF transgene that directly stimulates increased expression of tumor antigen(s) and enhances dendritic cell migration to the vaccination site. TGFβ2 blockade following intracellular TGFβ2 antisense gene expression reduces production of immune inhibiting activity at the vaccine site. This vaccine integrates enhancement of an anticancer immune response concurrently with a reduction in cancer-induced immune suppression. Autologous cancer cells are harvested from patients with advanced refractory cancer, and a TGFβ2 antisense / GMCSF expression vector plasmid is constructed. The autologous cancer tissue is irradiated and electrocorporated with the vector. "
WARN annotation_whitespace VO:0007740 IAO:0000115 "A cancer vaccine that is composed of dendritic cells pulsed with tumor cells lysates that stimulate a potent and specific cell mediated anti-tumor immune response. It can be used in combination with high-dose chemotherapy and hematopoietic stem cell transplantation (HSCT). The combination may increase overall survival and progression-free survival for patients with high-risk pediatric and young adult tumors (localized solid tumors such as, sarcoma, neuroblastoma, and Wilms' tumor). "
WARN annotation_whitespace VO:0007748 IAO:0000115 USA licensed vaccine for veterinary uses approved by USDA.
WARN annotation_whitespace VO:0010252 IAO:0000115 A variable representing dose representing the vaccination
WARN annotation_whitespace VO:0010259 IAO:0000115 A variable representing the vaccine preservative
WARN annotation_whitespace VO:0010272 IAO:0000115 A measurment datum that records the method of sacrifice (i.e. killing).
WARN annotation_whitespace VO:0010735 IAO:0000115 A Measles-Mumps-Rubella-Vericella vaccine that is live attenuated and manufactured by GlaxoSmithKline Biologicals.
WARN annotation_whitespace VO:0021164 IAO:0000115 A varicella-zoster virus live vaccine designed to prevent shingles (herpes zoster).
WARN duplicate_exact_synonym VO:0010365 IAO:0000118
WARN duplicate_exact_synonym VO:0010366 IAO:0000118
WARN duplicate_exact_synonym VO:0010363 IAO:0000118
WARN duplicate_exact_synonym VO:0010364 IAO:0000118
WARN duplicate_exact_synonym VO:0010361 IAO:0000118
WARN duplicate_exact_synonym VO:0012190 IAO:0000118
WARN duplicate_exact_synonym VO:0010334 IAO:0000118
WARN duplicate_exact_synonym VO:0010335 IAO:0000118
WARN duplicate_exact_synonym VO:0010352 IAO:0000118
WARN duplicate_exact_synonym VO:0000436 IAO:0000118
WARN duplicate_exact_synonym VO:0001144 IAO:0000118
WARN duplicate_exact_synonym VO:0020358 IAO:0000118
WARN duplicate_exact_synonym VO:0020359 IAO:0000118
WARN duplicate_exact_synonym VO:0020360 IAO:0000118
WARN duplicate_exact_synonym VO:0020361 IAO:0000118
WARN duplicate_exact_synonym VO:0020362 IAO:0000118
WARN duplicate_exact_synonym VO:0020363 IAO:0000118
WARN duplicate_exact_synonym VO:0020364 IAO:0000118
WARN duplicate_exact_synonym VO:0020365 IAO:0000118
WARN duplicate_exact_synonym VO:0020366 IAO:0000118
WARN duplicate_exact_synonym VO:0020367 IAO:0000118
WARN duplicate_exact_synonym VO:0020368 IAO:0000118
WARN duplicate_exact_synonym VO:0020369 IAO:0000118
WARN duplicate_exact_synonym VO:0020370 IAO:0000118
WARN duplicate_exact_synonym VO:0020371 IAO:0000118
WARN duplicate_exact_synonym VO:0020372 IAO:0000118
WARN duplicate_exact_synonym VO:0020373 IAO:0000118
WARN duplicate_exact_synonym VO:0020374 IAO:0000118
WARN duplicate_exact_synonym VO:0020375 IAO:0000118
WARN duplicate_exact_synonym VO:0020376 IAO:0000118
WARN duplicate_exact_synonym VO:0020377 IAO:0000118
WARN duplicate_exact_synonym VO:0020378 IAO:0000118
WARN duplicate_exact_synonym VO:0020379 IAO:0000118
WARN duplicate_exact_synonym VO:0020380 IAO:0000118
WARN duplicate_exact_synonym VO:0020381 IAO:0000118
WARN duplicate_exact_synonym VO:0020382 IAO:0000118
WARN duplicate_exact_synonym VO:0020383 IAO:0000118
WARN duplicate_exact_synonym VO:0020384 IAO:0000118
WARN duplicate_exact_synonym VO:0020385 IAO:0000118
WARN duplicate_exact_synonym VO:0020386 IAO:0000118
WARN duplicate_exact_synonym VO:0020387 IAO:0000118
WARN duplicate_exact_synonym VO:0020388 IAO:0000118
WARN duplicate_exact_synonym VO:0020389 IAO:0000118
WARN duplicate_exact_synonym VO:0020390 IAO:0000118
WARN duplicate_exact_synonym VO:0020391 IAO:0000118
WARN duplicate_exact_synonym VO:0020392 IAO:0000118
WARN duplicate_exact_synonym VO:0020393 IAO:0000118
WARN duplicate_exact_synonym VO:0020394 IAO:0000118
WARN duplicate_exact_synonym VO:0020395 IAO:0000118
WARN duplicate_exact_synonym VO:0020396 IAO:0000118
WARN duplicate_exact_synonym VO:0020397 IAO:0000118
WARN duplicate_exact_synonym VO:0020398 IAO:0000118
WARN duplicate_exact_synonym VO:0020399 IAO:0000118
WARN duplicate_exact_synonym VO:0020400 IAO:0000118
WARN duplicate_exact_synonym VO:0020401 IAO:0000118
WARN duplicate_exact_synonym VO:0020402 IAO:0000118
WARN duplicate_exact_synonym VO:0020403 IAO:0000118
WARN duplicate_exact_synonym VO:0020404 IAO:0000118
WARN duplicate_exact_synonym VO:0020405 IAO:0000118
WARN duplicate_exact_synonym VO:0020406 IAO:0000118
WARN duplicate_exact_synonym VO:0020407 IAO:0000118
WARN duplicate_exact_synonym VO:0020408 IAO:0000118
WARN duplicate_exact_synonym VO:0020410 IAO:0000118
WARN duplicate_exact_synonym VO:0020411 IAO:0000118
WARN duplicate_exact_synonym VO:0020412 IAO:0000118
WARN duplicate_exact_synonym VO:0020413 IAO:0000118
WARN duplicate_exact_synonym VO:0020414 IAO:0000118
WARN duplicate_exact_synonym VO:0020415 IAO:0000118
WARN duplicate_exact_synonym VO:0020416 IAO:0000118
WARN duplicate_exact_synonym VO:0020417 IAO:0000118
WARN duplicate_exact_synonym VO:0020418 IAO:0000118
WARN duplicate_exact_synonym VO:0020419 IAO:0000118
WARN duplicate_exact_synonym VO:0020421 IAO:0000118
WARN duplicate_exact_synonym VO:0020423 IAO:0000118
WARN duplicate_exact_synonym VO:0020424 IAO:0000118
WARN duplicate_exact_synonym VO:0020425 IAO:0000118
WARN duplicate_exact_synonym VO:0020426 IAO:0000118
WARN duplicate_exact_synonym VO:0020427 IAO:0000118
WARN duplicate_exact_synonym VO:0020428 IAO:0000118
WARN duplicate_exact_synonym VO:0020429 IAO:0000118
WARN duplicate_exact_synonym VO:0020430 IAO:0000118
WARN duplicate_exact_synonym VO:0020431 IAO:0000118
WARN duplicate_exact_synonym VO:0020433 IAO:0000118
WARN duplicate_exact_synonym VO:0020435 IAO:0000118
WARN duplicate_exact_synonym VO:0020436 IAO:0000118
WARN duplicate_exact_synonym VO:0020437 IAO:0000118
WARN duplicate_exact_synonym VO:0020438 IAO:0000118
WARN duplicate_exact_synonym VO:0020439 IAO:0000118
WARN duplicate_exact_synonym VO:0020440 IAO:0000118
WARN duplicate_exact_synonym VO:0020441 IAO:0000118
WARN duplicate_exact_synonym VO:0020442 IAO:0000118
WARN duplicate_exact_synonym VO:0020443 IAO:0000118
WARN duplicate_exact_synonym VO:0020444 IAO:0000118
WARN duplicate_exact_synonym VO:0020447 IAO:0000118
WARN duplicate_exact_synonym VO:0020448 IAO:0000118
WARN duplicate_exact_synonym VO:0020449 IAO:0000118
WARN duplicate_exact_synonym VO:0020450 IAO:0000118
WARN duplicate_exact_synonym VO:0020451 IAO:0000118
WARN duplicate_exact_synonym VO:0020452 IAO:0000118
WARN duplicate_exact_synonym VO:0020453 IAO:0000118
WARN duplicate_exact_synonym VO:0020454 IAO:0000118
WARN duplicate_exact_synonym VO:0020455 IAO:0000118
WARN duplicate_exact_synonym VO:0020456 IAO:0000118
WARN duplicate_exact_synonym VO:0020457 IAO:0000118
WARN duplicate_exact_synonym VO:0020458 IAO:0000118
WARN duplicate_exact_synonym VO:0020460 IAO:0000118
WARN duplicate_exact_synonym VO:0020462 IAO:0000118
WARN duplicate_exact_synonym VO:0020464 IAO:0000118
WARN duplicate_exact_synonym VO:0020466 IAO:0000118
WARN duplicate_exact_synonym VO:0020467 IAO:0000118
WARN duplicate_exact_synonym VO:0020468 IAO:0000118
WARN duplicate_exact_synonym VO:0010347 IAO:0000118
WARN duplicate_exact_synonym VO:0010357 IAO:0000118
WARN duplicate_exact_synonym VO:0010358 IAO:0000118
WARN duplicate_exact_synonym VO:0010373 IAO:0000118
WARN duplicate_exact_synonym VO:0010374 IAO:0000118
WARN duplicate_exact_synonym VO:0001347 IAO:0000118
WARN duplicate_exact_synonym VO:0005419 IAO:0000118
WARN duplicate_exact_synonym VO:0001017 IAO:0000118
WARN duplicate_exact_synonym VO:0012162 IAO:0000118
WARN duplicate_exact_synonym NCBITaxon:38568 oboInOwl:hasExactSynonym
WARN duplicate_exact_synonym NCBITaxon:5658 oboInOwl:hasExactSynonym
WARN duplicate_exact_synonym VO:0019747 IAO:0000118
WARN duplicate_exact_synonym VO:0019757 IAO:0000118
WARN duplicate_exact_synonym VO:0010337 IAO:0000118
WARN duplicate_exact_synonym VO:0010346 IAO:0000118
WARN duplicate_exact_synonym VO:0010345 IAO:0000118
WARN duplicate_exact_synonym VO:0010368 IAO:0000118
WARN duplicate_exact_synonym VO:0010369 IAO:0000118
WARN duplicate_exact_synonym VO:0000642 IAO:0000118
WARN duplicate_exact_synonym VO:0010336 IAO:0000118
WARN duplicate_exact_synonym NCBITaxon:117565 oboInOwl:hasExactSynonym
WARN duplicate_exact_synonym NCBITaxon:7898 oboInOwl:hasExactSynonym
WARN duplicate_exact_synonym VO:0000942 IAO:0000118
WARN duplicate_exact_synonym VO:0003169 IAO:0000118
WARN duplicate_exact_synonym VO:0000738 IAO:0000118
WARN duplicate_exact_synonym VO:0003106 IAO:0000118
WARN duplicate_exact_synonym VO:0010362 IAO:0000118
WARN duplicate_exact_synonym VO:0010371 IAO:0000118
WARN duplicate_exact_synonym VO:0010372 IAO:0000118
WARN duplicate_label_synonym CHEBI:15882 oboInOwl:hasExactSynonym phenol
WARN duplicate_label_synonym CHEBI:16199 oboInOwl:hasExactSynonym urea
WARN duplicate_label_synonym CHEBI:16842 oboInOwl:hasExactSynonym formaldehyde
WARN duplicate_label_synonym CHEBI:17716 oboInOwl:hasExactSynonym lactose
WARN duplicate_label_synonym CHEBI:17992 oboInOwl:hasExactSynonym sucrose
WARN duplicate_label_synonym CHEBI:23367 oboInOwl:hasExactSynonym molecular entity
WARN duplicate_label_synonym CHEBI:24431 oboInOwl:hasExactSynonym chemical entity
WARN duplicate_label_synonym CHEBI:26710 oboInOwl:hasExactSynonym sodium chloride
WARN duplicate_label_synonym CHEBI:30911 IAO:0000118 glucitol
WARN duplicate_label_synonym CHEBI:30911 oboInOwl:hasExactSynonym glucitol
WARN duplicate_label_synonym CHEBI:37586 oboInOwl:hasExactSynonym sodium phosphate
WARN duplicate_label_synonym NCBITaxon:10788 IAO:0000118 Canine parvovirus
WARN duplicate_label_synonym NCBITaxon:12264 IAO:0000118 Cowpea mosaic virus
WARN duplicate_label_synonym NCBITaxon:1491 IAO:0000118 Clostridium botulinum
WARN duplicate_label_synonym NCBITaxon:210 IAO:0000118 Helicobacter pylori
WARN duplicate_label_synonym NCBITaxon:28450 IAO:0000118 Burkholderia pseudomallei
WARN duplicate_label_synonym NCBITaxon:5659 IAO:0000118 Leishmania amazonensis
WARN duplicate_label_synonym NCBITaxon:5671 IAO:0000118 Leishmania infantum
WARN duplicate_label_synonym NCBITaxon:5691 IAO:0000118 Trypanosoma brucei
WARN duplicate_label_synonym NCBITaxon:5759 IAO:0000118 Entamoeba histolytica
WARN duplicate_label_synonym NCBITaxon:5807 IAO:0000118 Cryptosporidium parvum
WARN duplicate_label_synonym NCBITaxon:83560 IAO:0000118 Chlamydia muridarum
WARN duplicate_label_synonym NCBITaxon:9900 oboInOwl:hasExactSynonym Bison
WARN duplicate_label_synonym UBERON:0000004 oboInOwl:hasExactSynonym nose
WARN duplicate_label_synonym UBERON:0003408 oboInOwl:hasExactSynonym gland of digestive tract
WARN duplicate_label_synonym VO:0000017 IAO:0000118 killed vaccine
WARN duplicate_label_synonym VO:0003800 IAO:0000118 0.5 ML Shingrix 0.1 MG/ML Injection
WARN duplicate_label_synonym VO:0004613 IAO:0000118 smallpox vaccine
WARN duplicate_label_synonym VO:0006001 IAO:0000118 botulinum antitoxin
WARN duplicate_label_synonym VO:0006003 IAO:0000118 cholera BivWC
WARN duplicate_label_synonym VO:0006004 IAO:0000118 cholera live attenuated
WARN duplicate_label_synonym VO:0006005 IAO:0000118 diphtheria antitoxin
WARN duplicate_label_synonym VO:0006022 IAO:0000118 influenza nasal unspecified formulation
WARN duplicate_label_synonym VO:0006044 IAO:0000118 Pneumococcal Conjugate unspecified formulation
WARN duplicate_label_synonym VO:0006067 IAO:0000118 SARS-COV-2 (COVID-19) vaccine UNSPECIFIED
WARN duplicate_label_synonym VO:0006076 IAO:0000118 tetanus toxoid not adsorbed
WARN duplicate_label_synonym VO:0006077 IAO:0000118 tetanus toxoid unspecified formulation
WARN duplicate_label_synonym VO:0006078 IAO:0000118 Tick-borne encephalitis vaccine (non-US)
WARN duplicate_label_synonym VO:0006091 IAO:0000118 Ebola unspecified
WARN duplicate_label_synonym VO:0011303 IAO:0000118 FliC
WARN duplicate_label_synonym VO:0015341 IAO:0000118 Vaqta
WARN duplicate_label_synonym VO:0015342 IAO:0000118 Epaxal
WARN duplicate_label_synonym VO:0015344 IAO:0000118 Havrix
WARN duplicate_label_synonym VO:0015345 IAO:0000118 Vivaxim
WARN duplicate_label_synonym VO:0015346 IAO:0000118 Hepatyrix
WARN duplicate_label_synonym VO:0015453 IAO:0000118 Pnu-Imune
WARN duplicate_label_synonym VO:0019089 IAO:0000118 Tenivac
WARN duplicate_label_synonym VO:0019398 IAO:0000118 "acellular pertussis vaccine, inactivated 0.116 MG/ML / diphtheria toxoid vaccine, inactivated 50 UNT/ML / hepatitis B surface antigen vaccine 0.02 MG/ML / poliovirus vaccine inactivated, type 1 (Mahoney) 80 UNT/ML / poliovirus vaccine inactivated, type 2 (MEF-1) 16 UNT/ML / poliovirus vaccine inactivated, type 3 (Saukett) 64 UNT/ML / tetanus toxoid vaccine, inactivated 20 UNT/ML Injectable Suspension [Pediarix]"
WARN duplicate_scoped_synonym NCBITaxon:2759 oboInOwl:hasExactSynonym eukaryotes
WARN duplicate_scoped_synonym NCBITaxon:2759 oboInOwl:hasRelatedSynonym eukaryotes
WARN duplicate_scoped_synonym NCBITaxon:33554 oboInOwl:hasExactSynonym carnivores
WARN duplicate_scoped_synonym NCBITaxon:33554 oboInOwl:hasRelatedSynonym carnivores
WARN duplicate_scoped_synonym NCBITaxon:40674 oboInOwl:hasExactSynonym mammals
WARN duplicate_scoped_synonym NCBITaxon:40674 oboInOwl:hasRelatedSynonym mammals
WARN duplicate_scoped_synonym NCBITaxon:5794 oboInOwl:hasExactSynonym apicomplexans
WARN duplicate_scoped_synonym NCBITaxon:5794 oboInOwl:hasRelatedSynonym apicomplexans
WARN duplicate_scoped_synonym NCBITaxon:7742 oboInOwl:hasExactSynonym vertebrates
WARN duplicate_scoped_synonym NCBITaxon:7742 oboInOwl:hasRelatedSynonym vertebrates
WARN duplicate_scoped_synonym NCBITaxon:8782 oboInOwl:hasExactSynonym birds
WARN duplicate_scoped_synonym NCBITaxon:8782 oboInOwl:hasRelatedSynonym birds
WARN duplicate_scoped_synonym NCBITaxon:91561 oboInOwl:hasExactSynonym even-toed ungulates & whales
WARN duplicate_scoped_synonym NCBITaxon:91561 oboInOwl:hasRelatedSynonym even-toed ungulates & whales
WARN duplicate_scoped_synonym UBERON:0000106 oboInOwl:hasExactSynonym fertilized egg stage
WARN duplicate_scoped_synonym UBERON:0000106 oboInOwl:hasRelatedSynonym fertilized egg stage
WARN equivalent_class_axiom_no_genus OBI:0000070 OBI:0000417 OBI:0000441
WARN equivalent_class_axiom_no_genus OBI:0000094 OBI:0000417 OBI:0000456
WARN equivalent_class_axiom_no_genus OBI:0000274 OBI:0000417 OBI:0000434
WARN equivalent_class_axiom_no_genus OBI:0000457 OBI:0000417 OBI:0000458
WARN equivalent_class_axiom_no_genus OBI:0000652 OBI:0000417 OBI:0000686
WARN equivalent_class_axiom_no_genus OBI:0000673 OBI:0000417 OBI:0000675
WARN equivalent_class_axiom_no_genus OBI:0000838 OBI:0000417 OBI:0000806
WARN equivalent_class_axiom_no_genus OBI:0200000 OBI:0000417 OBI:0200166
WARN equivalent_class_axiom_no_genus OBI:1110034 RO:0000087 OBI:0000237
WARN equivalent_class_axiom_no_genus OPMI:0000445 RO:0000087 OPMI:0000441
WARN missing_definition BFO:0000133 IAO:0000115
WARN missing_definition BFO:0000141 IAO:0000115
WARN missing_definition CHEBI:30911 IAO:0000115
WARN missing_definition CHEBI:33130 IAO:0000115
WARN missing_definition CHEBI:37586 IAO:0000115
WARN missing_definition DOID:1789 IAO:0000115
WARN missing_definition FMA:12278 IAO:0000115
WARN missing_definition IAO:0000114 IAO:0000115
WARN missing_definition IAO:0000426 IAO:0000115
WARN missing_definition IAO:8000000 IAO:0000115
WARN missing_definition IAO:8000016 IAO:0000115
WARN missing_definition IAO:8000017 IAO:0000115
WARN missing_definition IAO:8000019 IAO:0000115
WARN missing_definition IAO:8000020 IAO:0000115
WARN missing_definition NCBITaxon:10090 IAO:0000115
WARN missing_definition NCBITaxon:10114 IAO:0000115
WARN missing_definition NCBITaxon:10141 IAO:0000115
WARN missing_definition NCBITaxon:10150 IAO:0000115
WARN missing_definition NCBITaxon:10239 IAO:0000115
WARN missing_definition NCBITaxon:10240 IAO:0000115
WARN missing_definition NCBITaxon:10241 IAO:0000115
WARN missing_definition NCBITaxon:10242 IAO:0000115
WARN missing_definition NCBITaxon:10244 IAO:0000115
WARN missing_definition NCBITaxon:10245 IAO:0000115
WARN missing_definition NCBITaxon:10255 IAO:0000115
WARN missing_definition NCBITaxon:10258 IAO:0000115
WARN missing_definition NCBITaxon:10260 IAO:0000115
WARN missing_definition NCBITaxon:10261 IAO:0000115
WARN missing_definition NCBITaxon:10264 IAO:0000115
WARN missing_definition NCBITaxon:102793 IAO:0000115
WARN missing_definition NCBITaxon:10292 IAO:0000115
WARN missing_definition NCBITaxon:10293 IAO:0000115
WARN missing_definition NCBITaxon:10294 IAO:0000115
WARN missing_definition NCBITaxon:10298 IAO:0000115
WARN missing_definition NCBITaxon:10310 IAO:0000115
WARN missing_definition NCBITaxon:10319 IAO:0000115
WARN missing_definition NCBITaxon:10320 IAO:0000115
WARN missing_definition NCBITaxon:10326 IAO:0000115
WARN missing_definition NCBITaxon:10334 IAO:0000115
WARN missing_definition NCBITaxon:10335 IAO:0000115
WARN missing_definition NCBITaxon:10345 IAO:0000115
WARN missing_definition NCBITaxon:10357 IAO:0000115
WARN missing_definition NCBITaxon:10359 IAO:0000115
WARN missing_definition NCBITaxon:10366 IAO:0000115
WARN missing_definition NCBITaxon:10386 IAO:0000115
WARN missing_definition NCBITaxon:10390 IAO:0000115
WARN missing_definition NCBITaxon:10405 IAO:0000115
WARN missing_definition NCBITaxon:10407 IAO:0000115
WARN missing_definition NCBITaxon:104388 IAO:0000115
WARN missing_definition NCBITaxon:10469 IAO:0000115
WARN missing_definition NCBITaxon:10497 IAO:0000115
WARN missing_definition NCBITaxon:10508 IAO:0000115
WARN missing_definition NCBITaxon:10509 IAO:0000115
WARN missing_definition NCBITaxon:10512 IAO:0000115
WARN missing_definition NCBITaxon:10514 IAO:0000115
WARN missing_definition NCBITaxon:10535 IAO:0000115
WARN missing_definition NCBITaxon:10537 IAO:0000115
WARN missing_definition NCBITaxon:10566 IAO:0000115
WARN missing_definition NCBITaxon:10571 IAO:0000115
WARN missing_definition NCBITaxon:107819 IAO:0000115
WARN missing_definition NCBITaxon:10786 IAO:0000115
WARN missing_definition NCBITaxon:10787 IAO:0000115
WARN missing_definition NCBITaxon:10788 IAO:0000115
WARN missing_definition NCBITaxon:10792 IAO:0000115
WARN missing_definition NCBITaxon:10796 IAO:0000115
WARN missing_definition NCBITaxon:10892 IAO:0000115
WARN missing_definition NCBITaxon:10912 IAO:0000115
WARN missing_definition NCBITaxon:10913 IAO:0000115
WARN missing_definition NCBITaxon:10927 IAO:0000115
WARN missing_definition NCBITaxon:10937 IAO:0000115
WARN missing_definition NCBITaxon:10993 IAO:0000115
WARN missing_definition NCBITaxon:10995 IAO:0000115
WARN missing_definition NCBITaxon:11002 IAO:0000115
WARN missing_definition NCBITaxon:11019 IAO:0000115
WARN missing_definition NCBITaxon:11021 IAO:0000115
WARN missing_definition NCBITaxon:11034 IAO:0000115
WARN missing_definition NCBITaxon:11036 IAO:0000115
WARN missing_definition NCBITaxon:11039 IAO:0000115
WARN missing_definition NCBITaxon:11040 IAO:0000115
WARN missing_definition NCBITaxon:11041 IAO:0000115
WARN missing_definition NCBITaxon:11047 IAO:0000115
WARN missing_definition NCBITaxon:11050 IAO:0000115
WARN missing_definition NCBITaxon:11051 IAO:0000115
WARN missing_definition NCBITaxon:11072 IAO:0000115
WARN missing_definition NCBITaxon:11082 IAO:0000115
WARN missing_definition NCBITaxon:11084 IAO:0000115
WARN missing_definition NCBITaxon:11089 IAO:0000115
WARN missing_definition NCBITaxon:11095 IAO:0000115
WARN missing_definition NCBITaxon:11096 IAO:0000115
WARN missing_definition NCBITaxon:11099 IAO:0000115
WARN missing_definition NCBITaxon:111105 IAO:0000115
WARN missing_definition NCBITaxon:11118 IAO:0000115
WARN missing_definition NCBITaxon:11120 IAO:0000115
WARN missing_definition NCBITaxon:11128 IAO:0000115
WARN missing_definition NCBITaxon:11135 IAO:0000115
WARN missing_definition NCBITaxon:11149 IAO:0000115
WARN missing_definition NCBITaxon:11153 IAO:0000115
WARN missing_definition NCBITaxon:11157 IAO:0000115
WARN missing_definition NCBITaxon:11158 IAO:0000115
WARN missing_definition NCBITaxon:11229 IAO:0000115
WARN missing_definition NCBITaxon:11234 IAO:0000115
WARN missing_definition NCBITaxon:11241 IAO:0000115
WARN missing_definition NCBITaxon:11244 IAO:0000115
WARN missing_definition NCBITaxon:11246 IAO:0000115
WARN missing_definition NCBITaxon:11250 IAO:0000115
WARN missing_definition NCBITaxon:11266 IAO:0000115
WARN missing_definition NCBITaxon:11270 IAO:0000115
WARN missing_definition NCBITaxon:11286 IAO:0000115
WARN missing_definition NCBITaxon:11287 IAO:0000115
WARN missing_definition NCBITaxon:11290 IAO:0000115
WARN missing_definition NCBITaxon:11292 IAO:0000115
WARN missing_definition NCBITaxon:11308 IAO:0000115
WARN missing_definition NCBITaxon:11309 IAO:0000115
WARN missing_definition NCBITaxon:11318 IAO:0000115
WARN missing_definition NCBITaxon:11320 IAO:0000115
WARN missing_definition NCBITaxon:114727 IAO:0000115
WARN missing_definition NCBITaxon:11520 IAO:0000115
WARN missing_definition NCBITaxon:11588 IAO:0000115
WARN missing_definition NCBITaxon:11636 IAO:0000115
WARN missing_definition NCBITaxon:11646 IAO:0000115
WARN missing_definition NCBITaxon:11673 IAO:0000115
WARN missing_definition NCBITaxon:11723 IAO:0000115
WARN missing_definition NCBITaxon:117565 IAO:0000115
WARN missing_definition NCBITaxon:117571 IAO:0000115
WARN missing_definition NCBITaxon:11768 IAO:0000115
WARN missing_definition NCBITaxon:11901 IAO:0000115
WARN missing_definition NCBITaxon:119088 IAO:0000115
WARN missing_definition NCBITaxon:119210 IAO:0000115
WARN missing_definition NCBITaxon:11974 IAO:0000115
WARN missing_definition NCBITaxon:11976 IAO:0000115
WARN missing_definition NCBITaxon:11978 IAO:0000115
WARN missing_definition NCBITaxon:12058 IAO:0000115
WARN missing_definition NCBITaxon:12059 IAO:0000115
WARN missing_definition NCBITaxon:12066 IAO:0000115
WARN missing_definition NCBITaxon:1206794 IAO:0000115
WARN missing_definition NCBITaxon:12080 IAO:0000115
WARN missing_definition NCBITaxon:12083 IAO:0000115
WARN missing_definition NCBITaxon:12086 IAO:0000115
WARN missing_definition NCBITaxon:12091 IAO:0000115
WARN missing_definition NCBITaxon:12092 IAO:0000115
WARN missing_definition NCBITaxon:12110 IAO:0000115
WARN missing_definition NCBITaxon:1224 IAO:0000115
WARN missing_definition NCBITaxon:12264 IAO:0000115
WARN missing_definition NCBITaxon:1236 IAO:0000115
WARN missing_definition NCBITaxon:1238 IAO:0000115
WARN missing_definition NCBITaxon:1239 IAO:0000115
WARN missing_definition NCBITaxon:12455 IAO:0000115
WARN missing_definition NCBITaxon:12475 IAO:0000115
WARN missing_definition NCBITaxon:12618 IAO:0000115
WARN missing_definition NCBITaxon:12637 IAO:0000115
WARN missing_definition NCBITaxon:12721 IAO:0000115
WARN missing_definition NCBITaxon:1279 IAO:0000115
WARN missing_definition NCBITaxon:1280 IAO:0000115
WARN missing_definition NCBITaxon:12814 IAO:0000115
WARN missing_definition NCBITaxon:12845 IAO:0000115
WARN missing_definition NCBITaxon:1301 IAO:0000115
WARN missing_definition NCBITaxon:1307 IAO:0000115
WARN missing_definition NCBITaxon:1311 IAO:0000115
WARN missing_definition NCBITaxon:1313 IAO:0000115
WARN missing_definition NCBITaxon:1314 IAO:0000115
WARN missing_definition NCBITaxon:1335626 IAO:0000115
WARN missing_definition NCBITaxon:1336 IAO:0000115
WARN missing_definition NCBITaxon:13488 IAO:0000115
WARN missing_definition NCBITaxon:13489 IAO:0000115
WARN missing_definition NCBITaxon:136 IAO:0000115
WARN missing_definition NCBITaxon:1385 IAO:0000115
WARN missing_definition NCBITaxon:1386 IAO:0000115
WARN missing_definition NCBITaxon:138950 IAO:0000115
WARN missing_definition NCBITaxon:139 IAO:0000115
WARN missing_definition NCBITaxon:1392 IAO:0000115
WARN missing_definition NCBITaxon:1437010 IAO:0000115
WARN missing_definition NCBITaxon:1485 IAO:0000115
WARN missing_definition NCBITaxon:1489388 IAO:0000115
WARN missing_definition NCBITaxon:1491 IAO:0000115
WARN missing_definition NCBITaxon:149539 IAO:0000115
WARN missing_definition NCBITaxon:149595 IAO:0000115
WARN missing_definition NCBITaxon:150052 IAO:0000115
WARN missing_definition NCBITaxon:1502 IAO:0000115
WARN missing_definition NCBITaxon:1506574 IAO:0000115
WARN missing_definition NCBITaxon:1513 IAO:0000115
WARN missing_definition NCBITaxon:151340 IAO:0000115
WARN missing_definition NCBITaxon:151341 IAO:0000115
WARN missing_definition NCBITaxon:153135 IAO:0000115
WARN missing_definition NCBITaxon:1549675 IAO:0000115
WARN missing_definition NCBITaxon:160 IAO:0000115
WARN missing_definition NCBITaxon:162145 IAO:0000115
WARN missing_definition NCBITaxon:162387 IAO:0000115
WARN missing_definition NCBITaxon:1639 IAO:0000115
WARN missing_definition NCBITaxon:1648 IAO:0000115
WARN missing_definition NCBITaxon:1649845 IAO:0000115
WARN missing_definition NCBITaxon:1653394 IAO:0000115
WARN missing_definition NCBITaxon:1678143 IAO:0000115
WARN missing_definition NCBITaxon:171 IAO:0000115
WARN missing_definition NCBITaxon:1716 IAO:0000115
WARN missing_definition NCBITaxon:1717 IAO:0000115
WARN missing_definition NCBITaxon:1719 IAO:0000115
WARN missing_definition NCBITaxon:173 IAO:0000115
WARN missing_definition NCBITaxon:175121 IAO:0000115
WARN missing_definition NCBITaxon:176 IAO:0000115
WARN missing_definition NCBITaxon:1763 IAO:0000115
WARN missing_definition NCBITaxon:1764 IAO:0000115
WARN missing_definition NCBITaxon:1765 IAO:0000115
WARN missing_definition NCBITaxon:1769 IAO:0000115
WARN missing_definition NCBITaxon:1773 IAO:0000115
WARN missing_definition NCBITaxon:1781 IAO:0000115
WARN missing_definition NCBITaxon:1783272 IAO:0000115
WARN missing_definition NCBITaxon:180252 IAO:0000115
WARN missing_definition NCBITaxon:180255 IAO:0000115
WARN missing_definition NCBITaxon:186537 IAO:0000115
WARN missing_definition NCBITaxon:186625 IAO:0000115
WARN missing_definition NCBITaxon:186778 IAO:0000115
WARN missing_definition NCBITaxon:1868215 IAO:0000115
WARN missing_definition NCBITaxon:1891747 IAO:0000115
WARN missing_definition NCBITaxon:1903411 IAO:0000115
WARN missing_definition NCBITaxon:194 IAO:0000115
WARN missing_definition NCBITaxon:196 IAO:0000115
WARN missing_definition NCBITaxon:197 IAO:0000115
WARN missing_definition NCBITaxon:197911 IAO:0000115
WARN missing_definition NCBITaxon:197912 IAO:0000115
WARN missing_definition NCBITaxon:197913 IAO:0000115
WARN missing_definition NCBITaxon:1980410 IAO:0000115
WARN missing_definition NCBITaxon:1980442 IAO:0000115
WARN missing_definition NCBITaxon:1980915 IAO:0000115
WARN missing_definition NCBITaxon:2 IAO:0000115
WARN missing_definition NCBITaxon:200644 IAO:0000115
WARN missing_definition NCBITaxon:203692 IAO:0000115
WARN missing_definition NCBITaxon:204722 IAO:0000115
WARN missing_definition NCBITaxon:205488 IAO:0000115
WARN missing_definition NCBITaxon:206351 IAO:0000115
WARN missing_definition NCBITaxon:2093 IAO:0000115
WARN missing_definition NCBITaxon:2096 IAO:0000115
WARN missing_definition NCBITaxon:2099 IAO:0000115
WARN missing_definition NCBITaxon:210 IAO:0000115
WARN missing_definition NCBITaxon:2109 IAO:0000115
WARN missing_definition NCBITaxon:211880 IAO:0000115
WARN missing_definition NCBITaxon:213849 IAO:0000115
WARN missing_definition NCBITaxon:2157 IAO:0000115
WARN missing_definition NCBITaxon:2169991 IAO:0000115
WARN missing_definition NCBITaxon:224914 IAO:0000115
WARN missing_definition NCBITaxon:234 IAO:0000115
WARN missing_definition NCBITaxon:235 IAO:0000115
WARN missing_definition NCBITaxon:236 IAO:0000115
WARN missing_definition NCBITaxon:2497569 IAO:0000115
WARN missing_definition NCBITaxon:2497571 IAO:0000115
WARN missing_definition NCBITaxon:2501931 IAO:0000115
WARN missing_definition NCBITaxon:2559587 IAO:0000115
WARN missing_definition NCBITaxon:2560069 IAO:0000115
WARN missing_definition NCBITaxon:2560076 IAO:0000115
WARN missing_definition NCBITaxon:2560080 IAO:0000115
WARN missing_definition NCBITaxon:2560319 IAO:0000115
WARN missing_definition NCBITaxon:2560602 IAO:0000115
WARN missing_definition NCBITaxon:260963 IAO:0000115
WARN missing_definition NCBITaxon:260964 IAO:0000115
WARN missing_definition NCBITaxon:2611341 IAO:0000115
WARN missing_definition NCBITaxon:2611352 IAO:0000115
WARN missing_definition NCBITaxon:262698 IAO:0000115
WARN missing_definition NCBITaxon:263 IAO:0000115
WARN missing_definition NCBITaxon:2697049 IAO:0000115
WARN missing_definition NCBITaxon:2732005 IAO:0000115
WARN missing_definition NCBITaxon:2732092 IAO:0000115
WARN missing_definition NCBITaxon:2732396 IAO:0000115
WARN missing_definition NCBITaxon:2732406 IAO:0000115
WARN missing_definition NCBITaxon:2732415 IAO:0000115
WARN missing_definition NCBITaxon:2732421 IAO:0000115
WARN missing_definition NCBITaxon:2732461 IAO:0000115
WARN missing_definition NCBITaxon:2732506 IAO:0000115
WARN missing_definition NCBITaxon:2732514 IAO:0000115
WARN missing_definition NCBITaxon:2732525 IAO:0000115
WARN missing_definition NCBITaxon:2732541 IAO:0000115
WARN missing_definition NCBITaxon:2732543 IAO:0000115
WARN missing_definition NCBITaxon:2759 IAO:0000115
WARN missing_definition NCBITaxon:27592 IAO:0000115
WARN missing_definition NCBITaxon:2790996 IAO:0000115
WARN missing_definition NCBITaxon:28115 IAO:0000115
WARN missing_definition NCBITaxon:28174 IAO:0000115
WARN missing_definition NCBITaxon:28211 IAO:0000115
WARN missing_definition NCBITaxon:28216 IAO:0000115
WARN missing_definition NCBITaxon:28344 IAO:0000115
WARN missing_definition NCBITaxon:28450 IAO:0000115
WARN missing_definition NCBITaxon:286 IAO:0000115
WARN missing_definition NCBITaxon:287 IAO:0000115
WARN missing_definition NCBITaxon:2895623 IAO:0000115
WARN missing_definition NCBITaxon:2901879 IAO:0000115
WARN missing_definition NCBITaxon:29176 IAO:0000115
WARN missing_definition NCBITaxon:29459 IAO:0000115
WARN missing_definition NCBITaxon:29461 IAO:0000115
WARN missing_definition NCBITaxon:2946186 IAO:0000115
WARN missing_definition NCBITaxon:2946633 IAO:0000115
WARN missing_definition NCBITaxon:29486 IAO:0000115
WARN missing_definition NCBITaxon:29546 IAO:0000115
WARN missing_definition NCBITaxon:3044472 IAO:0000115
WARN missing_definition NCBITaxon:3044782 IAO:0000115
WARN missing_definition NCBITaxon:3052223 IAO:0000115
WARN missing_definition NCBITaxon:3052225 IAO:0000115
WARN missing_definition NCBITaxon:3052230 IAO:0000115
WARN missing_definition NCBITaxon:3052303 IAO:0000115
WARN missing_definition NCBITaxon:3052310 IAO:0000115
WARN missing_definition NCBITaxon:3052342 IAO:0000115
WARN missing_definition NCBITaxon:3052518 IAO:0000115
WARN missing_definition NCBITaxon:3052707 IAO:0000115
WARN missing_definition NCBITaxon:3052729 IAO:0000115
WARN missing_definition NCBITaxon:3072906 IAO:0000115
WARN missing_definition NCBITaxon:314145 IAO:0000115
WARN missing_definition NCBITaxon:314146 IAO:0000115
WARN missing_definition NCBITaxon:314147 IAO:0000115
WARN missing_definition NCBITaxon:314293 IAO:0000115
WARN missing_definition NCBITaxon:32524 IAO:0000115
WARN missing_definition NCBITaxon:32561 IAO:0000115
WARN missing_definition NCBITaxon:327045 IAO:0000115
WARN missing_definition NCBITaxon:329639 IAO:0000115
WARN missing_definition NCBITaxon:33154 IAO:0000115
WARN missing_definition NCBITaxon:33213 IAO:0000115
WARN missing_definition NCBITaxon:33317 IAO:0000115
WARN missing_definition NCBITaxon:33340 IAO:0000115
WARN missing_definition NCBITaxon:333774 IAO:0000115
WARN missing_definition NCBITaxon:33550 IAO:0000115
WARN missing_definition NCBITaxon:33554 IAO:0000115
WARN missing_definition NCBITaxon:33892 IAO:0000115
WARN missing_definition NCBITaxon:34085 IAO:0000115
WARN missing_definition NCBITaxon:353210 IAO:0000115
WARN missing_definition NCBITaxon:35324 IAO:0000115
WARN missing_definition NCBITaxon:35500 IAO:0000115
WARN missing_definition NCBITaxon:359391 IAO:0000115
WARN missing_definition NCBITaxon:36362 IAO:0000115
WARN missing_definition NCBITaxon:36420 IAO:0000115
WARN missing_definition NCBITaxon:36470 IAO:0000115
WARN missing_definition NCBITaxon:36855 IAO:0000115
WARN missing_definition NCBITaxon:37124 IAO:0000115
WARN missing_definition NCBITaxon:379584 IAO:0000115
WARN missing_definition NCBITaxon:38170 IAO:0000115
WARN missing_definition NCBITaxon:38345 IAO:0000115
WARN missing_definition NCBITaxon:38525 IAO:0000115
WARN missing_definition NCBITaxon:38568 IAO:0000115
WARN missing_definition NCBITaxon:38574 IAO:0000115
WARN missing_definition NCBITaxon:39107 IAO:0000115
WARN missing_definition NCBITaxon:391902 IAO:0000115
WARN missing_definition NCBITaxon:393305 IAO:0000115
WARN missing_definition NCBITaxon:39744 IAO:0000115
WARN missing_definition NCBITaxon:39944 IAO:0000115
WARN missing_definition NCBITaxon:40050 IAO:0000115
WARN missing_definition NCBITaxon:40051 IAO:0000115
WARN missing_definition NCBITaxon:400570 IAO:0000115
WARN missing_definition NCBITaxon:40119 IAO:0000115
WARN missing_definition NCBITaxon:40269 IAO:0000115
WARN missing_definition NCBITaxon:40674 IAO:0000115
WARN missing_definition NCBITaxon:41678 IAO:0000115
WARN missing_definition NCBITaxon:418101 IAO:0000115
WARN missing_definition NCBITaxon:418103 IAO:0000115
WARN missing_definition NCBITaxon:422676 IAO:0000115
WARN missing_definition NCBITaxon:423054 IAO:0000115
WARN missing_definition NCBITaxon:42890 IAO:0000115
WARN missing_definition NCBITaxon:430066 IAO:0000115
WARN missing_definition NCBITaxon:44088 IAO:0000115
WARN missing_definition NCBITaxon:444163 IAO:0000115
WARN missing_definition NCBITaxon:444178 IAO:0000115
WARN missing_definition NCBITaxon:464095 IAO:0000115
WARN missing_definition NCBITaxon:470137 IAO:0000115
WARN missing_definition NCBITaxon:4751 IAO:0000115
WARN missing_definition NCBITaxon:483179 IAO:0000115
WARN missing_definition NCBITaxon:487 IAO:0000115
WARN missing_definition NCBITaxon:50294 IAO:0000115
WARN missing_definition NCBITaxon:504568 IAO:0000115
WARN missing_definition NCBITaxon:517 IAO:0000115
WARN missing_definition NCBITaxon:518 IAO:0000115
WARN missing_definition NCBITaxon:520 IAO:0000115
WARN missing_definition NCBITaxon:521 IAO:0000115
WARN missing_definition NCBITaxon:543 IAO:0000115
WARN missing_definition NCBITaxon:54315 IAO:0000115
WARN missing_definition NCBITaxon:544448 IAO:0000115
WARN missing_definition NCBITaxon:546272 IAO:0000115
WARN missing_definition NCBITaxon:548681 IAO:0000115
WARN missing_definition NCBITaxon:5500 IAO:0000115
WARN missing_definition NCBITaxon:55601 IAO:0000115
WARN missing_definition NCBITaxon:55987 IAO:0000115
WARN missing_definition NCBITaxon:560210 IAO:0000115
WARN missing_definition NCBITaxon:562 IAO:0000115
WARN missing_definition NCBITaxon:5654 IAO:0000115
WARN missing_definition NCBITaxon:5658 IAO:0000115
WARN missing_definition NCBITaxon:5659 IAO:0000115
WARN missing_definition NCBITaxon:5661 IAO:0000115
WARN missing_definition NCBITaxon:5664 IAO:0000115
WARN missing_definition NCBITaxon:56690 IAO:0000115
WARN missing_definition NCBITaxon:5671 IAO:0000115
WARN missing_definition NCBITaxon:568815 IAO:0000115
WARN missing_definition NCBITaxon:5690 IAO:0000115
WARN missing_definition NCBITaxon:5691 IAO:0000115
WARN missing_definition NCBITaxon:5693 IAO:0000115
WARN missing_definition NCBITaxon:5741 IAO:0000115
WARN missing_definition NCBITaxon:5759 IAO:0000115
WARN missing_definition NCBITaxon:5761 IAO:0000115
WARN missing_definition NCBITaxon:5762 IAO:0000115
WARN missing_definition NCBITaxon:5763 IAO:0000115
WARN missing_definition NCBITaxon:5794 IAO:0000115
WARN missing_definition NCBITaxon:5800 IAO:0000115
WARN missing_definition NCBITaxon:5802 IAO:0000115
WARN missing_definition NCBITaxon:5804 IAO:0000115
WARN missing_definition NCBITaxon:5807 IAO:0000115
WARN missing_definition NCBITaxon:5809 IAO:0000115
WARN missing_definition NCBITaxon:5811 IAO:0000115
WARN missing_definition NCBITaxon:5820 IAO:0000115
WARN missing_definition NCBITaxon:5821 IAO:0000115
WARN missing_definition NCBITaxon:5825 IAO:0000115
WARN missing_definition NCBITaxon:5833 IAO:0000115
WARN missing_definition NCBITaxon:5850 IAO:0000115
WARN missing_definition NCBITaxon:5855 IAO:0000115
WARN missing_definition NCBITaxon:5861 IAO:0000115
WARN missing_definition NCBITaxon:5863 IAO:0000115
WARN missing_definition NCBITaxon:5864 IAO:0000115
WARN missing_definition NCBITaxon:5865 IAO:0000115
WARN missing_definition NCBITaxon:5866 IAO:0000115
WARN missing_definition NCBITaxon:5867 IAO:0000115
WARN missing_definition NCBITaxon:5873 IAO:0000115
WARN missing_definition NCBITaxon:5874 IAO:0000115
WARN missing_definition NCBITaxon:5875 IAO:0000115
WARN missing_definition NCBITaxon:590 IAO:0000115
WARN missing_definition NCBITaxon:59201 IAO:0000115
WARN missing_definition NCBITaxon:594 IAO:0000115
WARN missing_definition NCBITaxon:6181 IAO:0000115
WARN missing_definition NCBITaxon:6182 IAO:0000115
WARN missing_definition NCBITaxon:6183 IAO:0000115
WARN missing_definition NCBITaxon:619591 IAO:0000115
WARN missing_definition NCBITaxon:620 IAO:0000115
WARN missing_definition NCBITaxon:622 IAO:0000115
WARN missing_definition NCBITaxon:623 IAO:0000115
WARN missing_definition NCBITaxon:624 IAO:0000115
WARN missing_definition NCBITaxon:629 IAO:0000115
WARN missing_definition NCBITaxon:632 IAO:0000115
WARN missing_definition NCBITaxon:633 IAO:0000115
WARN missing_definition NCBITaxon:6334 IAO:0000115
WARN missing_definition NCBITaxon:635 IAO:0000115
WARN missing_definition NCBITaxon:636 IAO:0000115
WARN missing_definition NCBITaxon:641 IAO:0000115
WARN missing_definition NCBITaxon:642 IAO:0000115
WARN missing_definition NCBITaxon:644 IAO:0000115
WARN missing_definition NCBITaxon:645 IAO:0000115
WARN missing_definition NCBITaxon:64895 IAO:0000115
WARN missing_definition NCBITaxon:662 IAO:0000115
WARN missing_definition NCBITaxon:666 IAO:0000115
WARN missing_definition NCBITaxon:67780 IAO:0000115
WARN missing_definition NCBITaxon:691956 IAO:0000115
WARN missing_definition NCBITaxon:693995 IAO:0000115
WARN missing_definition NCBITaxon:693997 IAO:0000115
WARN missing_definition NCBITaxon:694002 IAO:0000115
WARN missing_definition NCBITaxon:694009 IAO:0000115
WARN missing_definition NCBITaxon:70796 IAO:0000115
WARN missing_definition NCBITaxon:70999 IAO:0000115
WARN missing_definition NCBITaxon:712 IAO:0000115
WARN missing_definition NCBITaxon:715 IAO:0000115
WARN missing_definition NCBITaxon:7164 IAO:0000115
WARN missing_definition NCBITaxon:72273 IAO:0000115
WARN missing_definition NCBITaxon:724 IAO:0000115
WARN missing_definition NCBITaxon:727 IAO:0000115
WARN missing_definition NCBITaxon:731 IAO:0000115
WARN missing_definition NCBITaxon:738 IAO:0000115
WARN missing_definition NCBITaxon:747 IAO:0000115
WARN missing_definition NCBITaxon:75985 IAO:0000115
WARN missing_definition NCBITaxon:766 IAO:0000115
WARN missing_definition NCBITaxon:76803 IAO:0000115
WARN missing_definition NCBITaxon:76804 IAO:0000115
WARN missing_definition NCBITaxon:77054 IAO:0000115
WARN missing_definition NCBITaxon:7742 IAO:0000115
WARN missing_definition NCBITaxon:777 IAO:0000115
WARN missing_definition NCBITaxon:780 IAO:0000115
WARN missing_definition NCBITaxon:7898 IAO:0000115
WARN missing_definition NCBITaxon:79668 IAO:0000115
WARN missing_definition NCBITaxon:7995 IAO:0000115
WARN missing_definition NCBITaxon:8015 IAO:0000115
WARN missing_definition NCBITaxon:8022 IAO:0000115
WARN missing_definition NCBITaxon:80840 IAO:0000115
WARN missing_definition NCBITaxon:810 IAO:0000115
WARN missing_definition NCBITaxon:813 IAO:0000115
WARN missing_definition NCBITaxon:83334 IAO:0000115
WARN missing_definition NCBITaxon:83554 IAO:0000115
WARN missing_definition NCBITaxon:83555 IAO:0000115
WARN missing_definition NCBITaxon:83558 IAO:0000115
WARN missing_definition NCBITaxon:83560 IAO:0000115
WARN missing_definition NCBITaxon:836 IAO:0000115
WARN missing_definition NCBITaxon:85007 IAO:0000115
WARN missing_definition NCBITaxon:85708 IAO:0000115
WARN missing_definition NCBITaxon:8782 IAO:0000115
WARN missing_definition NCBITaxon:8825 IAO:0000115
WARN missing_definition NCBITaxon:8835 IAO:0000115
WARN missing_definition NCBITaxon:9005 IAO:0000115
WARN missing_definition NCBITaxon:90062 IAO:0000115
WARN missing_definition NCBITaxon:9031 IAO:0000115
WARN missing_definition NCBITaxon:90370 IAO:0000115
WARN missing_definition NCBITaxon:90371 IAO:0000115
WARN missing_definition NCBITaxon:9103 IAO:0000115
WARN missing_definition NCBITaxon:91061 IAO:0000115
WARN missing_definition NCBITaxon:91347 IAO:0000115
WARN missing_definition NCBITaxon:91561 IAO:0000115
WARN missing_definition NCBITaxon:9224 IAO:0000115
WARN missing_definition NCBITaxon:94063 IAO:0000115