-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_rtx_orig.json
1504 lines (1504 loc) · 73.2 KB
/
test_rtx_orig.json
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
{
"context": "https://raw.githubusercontent.com/biolink/biolink-model/master/context.jsonld",
"datetime": "2019-03-04 19:55:03",
"id": "https://rtx.ncats.io/api/rtx/v1/response/1440",
"message": "36 results found",
"n_results": 36,
"original_question_text": "What are the phenotypic features of Ebola hemorrhagic fever?",
"query_type_id": "Q5",
"reasoner_id": "RTX",
"response_code": "OK",
"restated_question_text": "What are the phenotypes of the disease Ebola hemorrhagic fever",
"result_list": [
{
"confidence": 1,
"essence": "Seizures",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44566",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001250",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Seizures are an intermittent abnormality of the central nervous system due to a sudden, excessive, disorderly discharge of cerebral neurons and characterized clinically by some combination of disturbance of sensation, loss of consciousness, impairment of psychic function, or convulsive movements. The term epilepsy is used to describe chronic, recurrent seizures.",
"id": "HP:0001250",
"name": "Seizures",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001250"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Seizures",
"HP:0001250"
],
"text": "Ebola hemorrhagic fever and Seizures are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Macule",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44567",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0012733",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A flat, distinct, discolored area of skin less than 1 cm wide that does not involve any change in the thickness or texture of the skin.",
"id": "HP:0012733",
"name": "Macule",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0012733"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Macule",
"HP:0012733"
],
"text": "Ebola hemorrhagic fever and Macule are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Nausea and vomiting",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44568",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0002017",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "None",
"id": "HP:0002017",
"name": "Nausea and vomiting",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0002017"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Nausea and vomiting",
"HP:0002017"
],
"text": "Ebola hemorrhagic fever and Nausea and vomiting are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Recurrent infections",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44569",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0002719",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Increased susceptibility to infections.",
"id": "HP:0002719",
"name": "Recurrent infections",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0002719"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Recurrent infections",
"HP:0002719"
],
"text": "Ebola hemorrhagic fever and Recurrent infections are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Skin rash",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44570",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0000988",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A red eruption of the skin.",
"id": "HP:0000988",
"name": "Skin rash",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0000988"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Skin rash",
"HP:0000988"
],
"text": "Ebola hemorrhagic fever and Skin rash are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Sepsis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44571",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0100806",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Systemic inflammatory response to infection.",
"id": "HP:0100806",
"name": "Sepsis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0100806"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Sepsis",
"HP:0100806"
],
"text": "Ebola hemorrhagic fever and Sepsis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Subcutaneous hemorrhage",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44572",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001933",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "This term refers to an abnormally increased susceptibility to bruising (purpura, petechiae, or ecchymoses).",
"id": "HP:0001933",
"name": "Subcutaneous hemorrhage",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001933"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Subcutaneous hemorrhage",
"HP:0001933"
],
"text": "Ebola hemorrhagic fever and Subcutaneous hemorrhage are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Chemosis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44573",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0012375",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Edema (swelling) of the bulbar conjunctiva.",
"id": "HP:0012375",
"name": "Chemosis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0012375"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Chemosis",
"HP:0012375"
],
"text": "Ebola hemorrhagic fever and Chemosis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Stomatitis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44574",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0010280",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Stomatitis is an inflammation of the mucous membranes of any of the structures in the mouth.",
"id": "HP:0010280",
"name": "Stomatitis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0010280"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Stomatitis",
"HP:0010280"
],
"text": "Ebola hemorrhagic fever and Stomatitis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Recurrent pharyngitis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44575",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0100776",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "An increased susceptibility to pharyngitis as manifested by a history of recurrent pharyngitis.",
"id": "HP:0100776",
"name": "Recurrent pharyngitis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0100776"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Recurrent pharyngitis",
"HP:0100776"
],
"text": "Ebola hemorrhagic fever and Recurrent pharyngitis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Disseminated intravascular coagulation",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44576",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0005521",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Disseminated intravascular coagulation is characterized by the widespread activation of coagulation, which results in the intravascular formation of fibrin and ultimately thrombotic occlusion of small and midsize vessels.",
"id": "HP:0005521",
"name": "Disseminated intravascular coagulation",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0005521"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Disseminated intravascular coagulation",
"HP:0005521"
],
"text": "Ebola hemorrhagic fever and Disseminated intravascular coagulation are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Myalgia",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44577",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0003326",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Pain in muscle.",
"id": "HP:0003326",
"name": "Myalgia",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0003326"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Myalgia",
"HP:0003326"
],
"text": "Ebola hemorrhagic fever and Myalgia are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Immune dysregulation",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44578",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0002958",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Altered immune function characterized by lymphoid proliferation, immune activation, and excessive autoreactivity often leading to autoimmune/inflammatory complications.",
"id": "HP:0002958",
"name": "Immune dysregulation",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0002958"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Immune dysregulation",
"HP:0002958"
],
"text": "Ebola hemorrhagic fever and Immune dysregulation are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Epistaxis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44579",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0000421",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Epistaxis, or nosebleed, refers to a hemorrhage localized in the nose.",
"id": "HP:0000421",
"name": "Epistaxis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0000421"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Epistaxis",
"HP:0000421"
],
"text": "Ebola hemorrhagic fever and Epistaxis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Fever",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44580",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001945",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "Elevated body temperature due to failed thermoregulation.",
"id": "HP:0001945",
"name": "Fever",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001945"
},
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Fever",
"HP:0001945"
],
"text": "Ebola hemorrhagic fever and Fever are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Proteinuria",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44581",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0000093",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "Increased levels of protein in the urine.",
"id": "HP:0000093",
"name": "Proteinuria",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0000093"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Proteinuria",
"HP:0000093"
],
"text": "Ebola hemorrhagic fever and Proteinuria are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Gingival bleeding",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44582",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0000225",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "Hemorrhage affecting the gingiva.",
"id": "HP:0000225",
"name": "Gingival bleeding",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0000225"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Gingival bleeding",
"HP:0000225"
],
"text": "Ebola hemorrhagic fever and Gingival bleeding are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Lethargy",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44583",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001254",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "A state of disinterestedness, listlessness, and indifference, resulting in difficulty performing simple tasks or concentrating.",
"id": "HP:0001254",
"name": "Lethargy",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001254"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Lethargy",
"HP:0001254"
],
"text": "Ebola hemorrhagic fever and Lethargy are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Thrombocytopenia",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44584",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001873",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "A reduction in the number of circulating thrombocytes.",
"id": "HP:0001873",
"name": "Thrombocytopenia",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001873"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Thrombocytopenia",
"HP:0001873"
],
"text": "Ebola hemorrhagic fever and Thrombocytopenia are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Acute hepatic failure",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44585",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0006554",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "Hepatic failure refers to the inability of the liver to perform its normal synthetic and metabolic functions, which can result in coagulopathy and alteration in the mental status of a previously healthy individual. Hepatic failure is defined as acute if there is onset of encephalopathy within 8 weeks of the onset of symptoms in a patient with a previously healthy liver.",
"id": "HP:0006554",
"name": "Acute hepatic failure",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0006554"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Acute hepatic failure",
"HP:0006554"
],
"text": "Ebola hemorrhagic fever and Acute hepatic failure are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Renal insufficiency",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44586",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0000083",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "A reduction in the level of performance of the kidneys in areas of function comprising the concentration of urine, removal of wastes, the maintenance of electrolyte balance, homeostasis of blood pressure, and calcium metabolism.",
"id": "HP:0000083",
"name": "Renal insufficiency",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0000083"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Renal insufficiency",
"HP:0000083"
],
"text": "Ebola hemorrhagic fever and Renal insufficiency are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Headache",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44587",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0002315",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "Cephalgia, or pain sensed in various parts of the head, not confined to the area of distribution of any nerve.",
"id": "HP:0002315",
"name": "Headache",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0002315"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Headache",
"HP:0002315"
],
"text": "Ebola hemorrhagic fever and Headache are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Encephalitis",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44588",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0002383",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "None",
"id": "HP:0002383",
"name": "Encephalitis",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0002383"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Encephalitis",
"HP:0002383"
],
"text": "Ebola hemorrhagic fever and Encephalitis are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Cardiac arrest",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44589",
"reasoner_id": "RTX",
"result_graph": {
"edge_list": [
{
"is_defined_by": "RTX",
"provided_by": "BioLink",
"source_id": "DOID:4325",
"target_id": "HP:0001695",
"type": "has_phenotype"
}
],
"node_list": [
{
"description": "A viral infectious disease that is a hemorrhagic fever, has_material_basis_in Zaire ebolavirus, has_material_basis_in Sudan ebolavirus, has_material_basis_in Cote d'Ivoire ebolavirus, or has_material_basis_in Bundibugyo ebolavirus, which are transmitted_by contact with the body fluids of an infected animal or person, transmitted_by contaminated fomites, or transmitted_by infected medical equipment. The infection has_symptom fever, has_symptom headache, has_symptom joint pain, has_symptom muscle aches, has_symptom sore throat, has_symptom weakness, has_symptom diarrhea, has_symptom vomiting, has_symptom stomach pain, has_symptom rash, has_symptom red eyes, has_symptom hiccups, and has_symptom internal and external bleeding.",
"id": "DOID:4325",
"name": "Ebola hemorrhagic fever",
"type": "disease",
"uri": "http://purl.obolibrary.org/obo/DOID_4325"
},
{
"description": "An abrupt loss of heart function.",
"id": "HP:0001695",
"name": "Cardiac arrest",
"type": "phenotypic_feature",
"uri": "http://purl.obolibrary.org/obo/HP_0001695"
}
]
},
"result_type": "individual query answer",
"row_data": [
"Ebola hemorrhagic fever",
"DOID:4325",
"Cardiac arrest",
"HP:0001695"
],
"text": "Ebola hemorrhagic fever and Cardiac arrest are connected by the relationship has_phenotype"
},
{
"confidence": 1,
"essence": "Gastrointestinal hemorrhage",
"id": "https://rtx.ncats.io/api/rtx/v1/result/44590",