-
Notifications
You must be signed in to change notification settings - Fork 31
/
generated_list.yaml
3936 lines (3936 loc) · 256 KB
/
generated_list.yaml
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
x-bte-kgs-operations:
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-patf'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-neop'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-dsyn'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-fndg'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/cell-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/bpoc-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-phsu'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-phsu-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-gngm'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-diap'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-diap-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-inpo'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-bacs'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-celf'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-aapp'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-medd'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-medd-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PRECEDES-topp'
- $ref: '#/components/x-bte-kgs-operations/topp-PRECEDES-topp-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-aapp'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/cell-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/cell-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-celc'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-gngm'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-cell'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-anab'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-dsyn'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-neop'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bacs'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-gngm'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-sosy'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-patf'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-PROCESS_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/moft-PROCESS_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-celc'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-celf'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-gngm'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-topp'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-topp-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-diap'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-diap-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-fndg'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/gngm-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-acab'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-fndg'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/bact-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-COEXISTS_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/neop-COEXISTS_WITH-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-moft'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-gngm'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-cgab'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/bacs-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-fndg'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/medd-USES-medd'
- $ref: '#/components/x-bte-kgs-operations/medd-USES-medd-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/medd-USES-phsu'
- $ref: '#/components/x-bte-kgs-operations/medd-USES-phsu-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-TREATS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/bact-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-moft'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-INTERACTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/cell-INTERACTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/sosy-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/sosy-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/antb-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-PROCESS_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/celf-PROCESS_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-inpo'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/orgf-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orgf-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-moft'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-inpo'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/phsf-PROCESS_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/phsf-PROCESS_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-celf'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-sosy'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PRECEDES-diap'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-celc'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-patf'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-blor'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-blor-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/horm-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-celf'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-orgf'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-gngm'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/topp-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/patf-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-aggp'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-aggp-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-celc'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/emst-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-fndg'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-USES-medd-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-celf'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/fngs-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/fngs-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-mobd'
- $ref: '#/components/x-bte-kgs-operations/cell-INTERACTS_WITH-cell'
- $ref: '#/components/x-bte-kgs-operations/cell-INTERACTS_WITH-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-bacs'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/bsoj-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-ASSOCIATED_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-bpoc'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-PROCESS_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/moft-PROCESS_OF-tisu-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-ASSOCIATED_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/patf-ASSOCIATED_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-TREATS-sosy'
- $ref: '#/components/x-bte-kgs-operations/orch-TREATS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-patf'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-INTERACTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/bacs-INTERACTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-ADMINISTERED_TO-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-ADMINISTERED_TO-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-orgf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-ortf'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/virs-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/virs-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/orga-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orga-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PRECEDES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PRECEDES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-mobd'
- $ref: '#/components/x-bte-kgs-operations/phsu-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-anab'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-celf'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orgf-COEXISTS_WITH-orgf'
- $ref: '#/components/x-bte-kgs-operations/orgf-COEXISTS_WITH-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-aapp'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-AFFECTS-gngm'
- $ref: '#/components/x-bte-kgs-operations/moft-AFFECTS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-TREATS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-fndg'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-moft'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-orch'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-CAUSES-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/mobd-COEXISTS_WITH-mobd'
- $ref: '#/components/x-bte-kgs-operations/mobd-COEXISTS_WITH-mobd-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-moft'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-inch'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-fndg'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-bacs'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-sosy'
- $ref: '#/components/x-bte-kgs-operations/dsyn-CAUSES-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-INHIBITS-fndg'
- $ref: '#/components/x-bte-kgs-operations/phsu-INHIBITS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-USES-irda'
- $ref: '#/components/x-bte-kgs-operations/diap-USES-irda-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-fngs'
- $ref: '#/components/x-bte-kgs-operations/aapp-PART_OF-fngs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-inch'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-celf'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-USES-phsu-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-antb'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-celf'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/orch-PREVENTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orch-PREVENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-AFFECTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/neop-AFFECTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-moft'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-fndg'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/topp-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/phsu-INTERACTS_WITH-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-lipd'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bdsu'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bdsu-rev'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-blor'
- $ref: '#/components/x-bte-kgs-operations/blor-LOCATION_OF-blor-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-cgab'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-gngm'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-carb'
- $ref: '#/components/x-bte-kgs-operations/gngm-PRODUCES-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-PRODUCES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-OCCURS_IN-aggp'
- $ref: '#/components/x-bte-kgs-operations/dsyn-OCCURS_IN-aggp-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/phsu-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-elii'
- $ref: '#/components/x-bte-kgs-operations/bact-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/bact-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/bact-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-gngm'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-orgf'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-elii'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-plnt'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-plnt-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-phsu'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/neop-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-celc'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-phsu'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-sosy'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-moft'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/patf-COEXISTS_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/moft-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-phsu'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/bpoc-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/inpo-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-LOCATION_OF-inch'
- $ref: '#/components/x-bte-kgs-operations/gngm-PREDISPOSES-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-PREDISPOSES-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-INTERACTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/bacs-INTERACTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-fndg'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/cell-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/dora-TREATS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dora-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/inpo-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-COEXISTS_WITH-celf'
- $ref: '#/components/x-bte-kgs-operations/celf-COEXISTS_WITH-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-LOCATION_OF-bacs'
- $ref: '#/components/x-bte-kgs-operations/bact-LOCATION_OF-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-carb'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-strd'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-TREATS-acab'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-mobd'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-bsoj'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-bacs'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INTERACTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREDISPOSES-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREDISPOSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/neop-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-cell'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-STIMULATES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-orch'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-carb'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-patf'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-inpo'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-lipd'
- $ref: '#/components/x-bte-kgs-operations/diap-USES-elii'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-celf'
- $ref: '#/components/x-bte-kgs-operations/cell-PRODUCES-bacs'
- $ref: '#/components/x-bte-kgs-operations/cell-PRODUCES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-sosy'
- $ref: '#/components/x-bte-kgs-operations/fndg-COEXISTS_WITH-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-anab'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COMPLICATES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COMPLICATES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-patf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-ASSOCIATED_WITH-patf'
- $ref: '#/components/x-bte-kgs-operations/bacs-ASSOCIATED_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INHIBITS-orch'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-elii'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-inpo'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREDISPOSES-neop'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-inpo'
- $ref: '#/components/x-bte-kgs-operations/horm-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/comd-COEXISTS_WITH-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-PREVENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-plnt'
- $ref: '#/components/x-bte-kgs-operations/tisu-PART_OF-plnt-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-lipd'
- $ref: '#/components/x-bte-kgs-operations/topp-PRECEDES-acab'
- $ref: '#/components/x-bte-kgs-operations/topp-PRECEDES-acab-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/bacs-COEXISTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-bact'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/topp-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-STIMULATES-orgf'
- $ref: '#/components/x-bte-kgs-operations/topp-STIMULATES-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/nsba-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-phsu'
- $ref: '#/components/x-bte-kgs-operations/bact-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/ortf-COEXISTS_WITH-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/fngs-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/fngs-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-ortf'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-ortf-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/bacs-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/nnon-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bdsu-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/bdsu-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-fndg'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AUGMENTS-moft'
- $ref: '#/components/x-bte-kgs-operations/phsu-AUGMENTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-cell'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-aapp'
- $ref: '#/components/x-bte-kgs-operations/orch-INHIBITS-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/imft-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/imft-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-CAUSES-celf'
- $ref: '#/components/x-bte-kgs-operations/celf-CAUSES-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-lipd'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-elii'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-nnon'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-lipd'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-carb'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-orch'
- $ref: '#/components/x-bte-kgs-operations/orch-PREVENTS-patf'
- $ref: '#/components/x-bte-kgs-operations/orch-PREVENTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-INHIBITS-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-horm'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PRECEDES-patf'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PRECEDES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-TREATS-inpo'
- $ref: '#/components/x-bte-kgs-operations/phsu-PREVENTS-sosy'
- $ref: '#/components/x-bte-kgs-operations/phsu-PREVENTS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-diap-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-tisu'
- $ref: '#/components/x-bte-kgs-operations/bacs-PREVENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-sosy'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREVENTS-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREVENTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/elii-COEXISTS_WITH-inch-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/phsf-PROCESS_OF-plnt'
- $ref: '#/components/x-bte-kgs-operations/phsf-PROCESS_OF-plnt-rev'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-fndg'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/inpo-COEXISTS_WITH-inpo'
- $ref: '#/components/x-bte-kgs-operations/inpo-COEXISTS_WITH-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AUGMENTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-inch'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-bacs'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-sosy'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-PROCESS_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/celf-PROCESS_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PREDISPOSES-neop'
- $ref: '#/components/x-bte-kgs-operations/nusq-COEXISTS_WITH-gngm'
- $ref: '#/components/x-bte-kgs-operations/nusq-COEXISTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-inch'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-cgab'
- $ref: '#/components/x-bte-kgs-operations/patf-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/patf-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/imft-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/imft-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/mobd-PROCESS_OF-aggp-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-ADMINISTERED_TO-cell'
- $ref: '#/components/x-bte-kgs-operations/bacs-ADMINISTERED_TO-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PRODUCES-orch'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-biof'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-biof-rev'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-biof'
- $ref: '#/components/x-bte-kgs-operations/bpoc-LOCATION_OF-biof-rev'
- $ref: '#/components/x-bte-kgs-operations/virs-LOCATION_OF-aapp'
- $ref: '#/components/x-bte-kgs-operations/virs-LOCATION_OF-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/neop-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/neop-AFFECTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-DISRUPTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/imft-PREVENTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/imft-PREVENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-CAUSES-neop'
- $ref: '#/components/x-bte-kgs-operations/hops-CAUSES-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/irda-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/irda-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-cell'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/inpo-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/inpo-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/inch-COEXISTS_WITH-inch-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-carb'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-inpo'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-carb'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-patf'
- $ref: '#/components/x-bte-kgs-operations/emst-PART_OF-emst'
- $ref: '#/components/x-bte-kgs-operations/emst-PART_OF-emst-rev'
- $ref: '#/components/x-bte-kgs-operations/plnt-LOCATION_OF-inch'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-fngs'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-fngs-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-cgab'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-food'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-food-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-fndg'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/food-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/food-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-sosy'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-ASSOCIATED_WITH-moft'
- $ref: '#/components/x-bte-kgs-operations/dsyn-ASSOCIATED_WITH-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-INHIBITS-ortf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-celc'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/tisu-LOCATION_OF-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-fngs'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-fngs-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-fndg'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-sosy'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-tisu'
- $ref: '#/components/x-bte-kgs-operations/fngs-LOCATION_OF-orch'
- $ref: '#/components/x-bte-kgs-operations/fngs-LOCATION_OF-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/fndg-PROCESS_OF-aggp'
- $ref: '#/components/x-bte-kgs-operations/fndg-PROCESS_OF-aggp-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-cell'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-PROCESS_OF-emod'
- $ref: '#/components/x-bte-kgs-operations/neop-PROCESS_OF-emod-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-AUGMENTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-anab'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-inpo'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-ASSOCIATED_WITH-mobd'
- $ref: '#/components/x-bte-kgs-operations/imft-PART_OF-cell'
- $ref: '#/components/x-bte-kgs-operations/imft-PART_OF-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/cgab-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-comd'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-inpo'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-moft'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-lipd'
- $ref: '#/components/x-bte-kgs-operations/tisu-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-hops'
- $ref: '#/components/x-bte-kgs-operations/bdsu-ASSOCIATED_WITH-fndg'
- $ref: '#/components/x-bte-kgs-operations/bdsu-ASSOCIATED_WITH-fndg-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-strd'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-CAUSES-neop'
- $ref: '#/components/x-bte-kgs-operations/orgf-COEXISTS_WITH-ortf'
- $ref: '#/components/x-bte-kgs-operations/aapp-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/aapp-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/antb-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/medd-TREATS-neop'
- $ref: '#/components/x-bte-kgs-operations/hops-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-virs'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-irda'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-irda-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-PART_OF-tisu'
- $ref: '#/components/x-bte-kgs-operations/patf-CAUSES-orgf'
- $ref: '#/components/x-bte-kgs-operations/patf-CAUSES-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/inch-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/bacs-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PREVENTS-inpo'
- $ref: '#/components/x-bte-kgs-operations/bdsu-PART_OF-bdsu'
- $ref: '#/components/x-bte-kgs-operations/bdsu-PART_OF-bdsu-rev'
- $ref: '#/components/x-bte-kgs-operations/acab-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-acab'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-bpoc'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-PREVENTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-elii'
- $ref: '#/components/x-bte-kgs-operations/bacs-DISRUPTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-imft'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-imft-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-celc'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-DISRUPTS-neop'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-fngs'
- $ref: '#/components/x-bte-kgs-operations/bacs-PART_OF-fngs-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-COEXISTS_WITH-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-PREVENTS-inpo'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-sosy'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-inch'
- $ref: '#/components/x-bte-kgs-operations/virs-CAUSES-neop'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-sosy'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-COEXISTS_WITH-orch'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-patf'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/nusq-ASSOCIATED_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/nusq-ASSOCIATED_WITH-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-diap'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-diap-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-patf'
- $ref: '#/components/x-bte-kgs-operations/aapp-AUGMENTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-patf'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/sosy-CAUSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/sosy-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/phsf-COEXISTS_WITH-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-PART_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/aapp-INTERACTS_WITH-nsba'
- $ref: '#/components/x-bte-kgs-operations/aapp-COEXISTS_WITH-inch'
- $ref: '#/components/x-bte-kgs-operations/fngs-LOCATION_OF-bacs'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/sosy-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-AFFECTS-celf'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREVENTS-inpo'
- $ref: '#/components/x-bte-kgs-operations/antb-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-patf'
- $ref: '#/components/x-bte-kgs-operations/fndg-PREDISPOSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-CAUSES-mobd'
- $ref: '#/components/x-bte-kgs-operations/virs-COEXISTS_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/virs-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-bsoj'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-bsoj-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-CAUSES-comd'
- $ref: '#/components/x-bte-kgs-operations/carb-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AUGMENTS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/dsyn-AUGMENTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-ADMINISTERED_TO-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-neop'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-hops'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-aapp'
- $ref: '#/components/x-bte-kgs-operations/gngm-STIMULATES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-COEXISTS_WITH-inch-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/ortf-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-PREDISPOSES-patf'
- $ref: '#/components/x-bte-kgs-operations/topp-PREDISPOSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/nusq-ASSOCIATED_WITH-dsyn'
- $ref: '#/components/x-bte-kgs-operations/neop-PROCESS_OF-aggp-rev'
- $ref: '#/components/x-bte-kgs-operations/anab-COEXISTS_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-PRODUCES-bacs'
- $ref: '#/components/x-bte-kgs-operations/bact-PRODUCES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-patf'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/orga-PREDISPOSES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/orga-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/imft-STIMULATES-gngm'
- $ref: '#/components/x-bte-kgs-operations/imft-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/strd-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-CAUSES-inpo-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-PRECEDES-topp-rev'
- $ref: '#/components/x-bte-kgs-operations/diap-DIAGNOSES-mobd'
- $ref: '#/components/x-bte-kgs-operations/inch-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/carb-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/orgf-PRECEDES-orgf'
- $ref: '#/components/x-bte-kgs-operations/orgf-PRECEDES-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/cgab-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/bact-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/bact-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-bact'
- $ref: '#/components/x-bte-kgs-operations/cell-LOCATION_OF-bact-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-PART_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-cell'
- $ref: '#/components/x-bte-kgs-operations/orch-DISRUPTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PRODUCES-inch'
- $ref: '#/components/x-bte-kgs-operations/aapp-PRODUCES-inch-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-INTERACTS_WITH-hops'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-orga'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-orga-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-aapp'
- $ref: '#/components/x-bte-kgs-operations/orch-STIMULATES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/bacs-STIMULATES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/phsu-AUGMENTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-ASSOCIATED_WITH-comd'
- $ref: '#/components/x-bte-kgs-operations/nsba-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/hops-ASSOCIATED_WITH-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-neop'
- $ref: '#/components/x-bte-kgs-operations/celc-PART_OF-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-inpo'
- $ref: '#/components/x-bte-kgs-operations/nusq-PART_OF-virs'
- $ref: '#/components/x-bte-kgs-operations/nusq-PART_OF-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/inch-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-CAUSES-phsf'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-sosy'
- $ref: '#/components/x-bte-kgs-operations/orch-AFFECTS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/neop-COEXISTS_WITH-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/elii-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-PART_OF-bpoc-rev'
- $ref: '#/components/x-bte-kgs-operations/carb-STIMULATES-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-TREATS-dsyn'
- $ref: '#/components/x-bte-kgs-operations/aapp-TREATS-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/patf-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/patf-PRECEDES-dsyn'
- $ref: '#/components/x-bte-kgs-operations/patf-PRECEDES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-cell'
- $ref: '#/components/x-bte-kgs-operations/gngm-DISRUPTS-cell-rev'
- $ref: '#/components/x-bte-kgs-operations/nusq-COEXISTS_WITH-bacs'
- $ref: '#/components/x-bte-kgs-operations/nusq-COEXISTS_WITH-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-CAUSES-celf'
- $ref: '#/components/x-bte-kgs-operations/moft-CAUSES-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AUGMENTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/orgf-ASSOCIATED_WITH-sosy'
- $ref: '#/components/x-bte-kgs-operations/orgf-ASSOCIATED_WITH-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-sosy'
- $ref: '#/components/x-bte-kgs-operations/aapp-AFFECTS-sosy-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-PROCESS_OF-emod-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-COEXISTS_WITH-lipd'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-bacs'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/imft-INTERACTS_WITH-aapp'
- $ref: '#/components/x-bte-kgs-operations/imft-INTERACTS_WITH-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/moft-AFFECTS-orgf'
- $ref: '#/components/x-bte-kgs-operations/moft-AFFECTS-orgf-rev'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-celc'
- $ref: '#/components/x-bte-kgs-operations/bsoj-LOCATION_OF-celc-rev'
- $ref: '#/components/x-bte-kgs-operations/inch-INTERACTS_WITH-orch-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-horm'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-bsoj'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-bsoj-rev'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-gngm'
- $ref: '#/components/x-bte-kgs-operations/celc-LOCATION_OF-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREVENTS-neop'
- $ref: '#/components/x-bte-kgs-operations/aapp-PREVENTS-neop-rev'
- $ref: '#/components/x-bte-kgs-operations/carb-INHIBITS-gngm-rev'
- $ref: '#/components/x-bte-kgs-operations/celc-PRODUCES-aapp'
- $ref: '#/components/x-bte-kgs-operations/celc-PRODUCES-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-PREDISPOSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-AFFECTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/carb-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/lipd-AUGMENTS-celf-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-INTERACTS_WITH-horm'
- $ref: '#/components/x-bte-kgs-operations/horm-INTERACTS_WITH-horm-rev'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-aapp'
- $ref: '#/components/x-bte-kgs-operations/gngm-INHIBITS-aapp-rev'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-virs'
- $ref: '#/components/x-bte-kgs-operations/dsyn-COEXISTS_WITH-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/topp-USES-orch'
- $ref: '#/components/x-bte-kgs-operations/orgf-AFFECTS-ortf'
- $ref: '#/components/x-bte-kgs-operations/diap-CAUSES-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-AFFECTS-neop'
- $ref: '#/components/x-bte-kgs-operations/phsu-DISRUPTS-moft-rev'
- $ref: '#/components/x-bte-kgs-operations/celf-PRODUCES-bacs'
- $ref: '#/components/x-bte-kgs-operations/celf-PRODUCES-bacs-rev'
- $ref: '#/components/x-bte-kgs-operations/inch-ASSOCIATED_WITH-dsyn-rev'
- $ref: '#/components/x-bte-kgs-operations/orch-AUGMENTS-phsf'
- $ref: '#/components/x-bte-kgs-operations/imft-ASSOCIATED_WITH-neop'
- $ref: '#/components/x-bte-kgs-operations/phsu-TREATS-acab'
- $ref: '#/components/x-bte-kgs-operations/lipd-CAUSES-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/virs-COEXISTS_WITH-virs'
- $ref: '#/components/x-bte-kgs-operations/virs-COEXISTS_WITH-virs-rev'
- $ref: '#/components/x-bte-kgs-operations/horm-TREATS-patf-rev'
- $ref: '#/components/x-bte-kgs-operations/aapp-STIMULATES-phsu'