forked from biolink/information-resource-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
infores_catalog.yaml
3726 lines (3726 loc) · 132 KB
/
infores_catalog.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
---
information_resources:
- id: infores:agrkb
status: released
name: Alliance of Genome Resources (AGR Knowledgebase)
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Alliance-of-Genome-Resources
synonym:
- ALLIANCE
knowledge level: curated
agent type: not_provided
- id: infores:aact
status: released
name: Aggregate Analysis of ClinicalTrial.gov (AACT) database
xref:
- https://aact.ctti-clinicaltrials.org/
synonym:
- AACT
knowledge level: curated
agent type: not_provided
description: https://ctti-clinicaltrials.org/our-work/quality/state-of-clinical-trials/
Researchers can use CTTI’s Aggregate Analysis of ClinicalTrial.gov (AACT) database
to easily access and analyze data from the ClinicalTrials.gov registry to evaluate
studies and characterize the current state of clinical trials.
- id: infores:answer-coalesce
status: deprecated
name: Answer coalesce
xref:
- https://github.com/ranking-agent/AnswerCoalesce
knowledge level: curated
agent type: not_provided
description: >-
Answer coalesce: This service accepts a TRAPI 1.1 object containing
answers and returns answers that have been coalesced by property, graph or ontology
analysis.
- id: infores:aragorn
status: released
name: ARAGORN
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/ARAGORN-and-ROBOKOP
knowledge level: predicted
agent type: not_provided
description: >-
ARAGORN: Performs a query operation which compiles data from numerous
ARAGORN ranking agent services.
- id: infores:aragorn-ranker
status: deprecated
name: ARAGORN Ranker
xref:
- https://github.com/ranking-agent/aragorn-ranker
synonym:
- ARAGORN
knowledge level: curated
agent type: not_provided
description: >-
ARAGORN Ranker: The ranker used by the ARAGORN ARA, which takes a
TRAPI 1.0 message containing answers, and calculates numerical scores for each
answer.
- id: infores:arax
status: released
name: ARAX Translator Reasoner
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Expander-Agent
synonym:
- ARAX
knowledge level: predicted
agent type: not_provided
description: TRAPI 1.1 endpoint for the NCATS Biomedical Translator Reasoner called
ARAX
- id: infores:atc-codes-umls
status: released
name: Anatomical Therapeutic Chemical (ATC) Codes (from UMLS)
xref:
- https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/ATC/index.html
knowledge level: curated
agent type: not_provided
- id: infores:atgo
status: released
name: Autophagy Ontology
xref:
- https://pubmed.ncbi.nlm.nih.gov/28132844/
synonym:
- ATGO
knowledge level: curated
agent type: not_provided
- id: infores:athena
status: released
name: Athena
xref:
- https://athena.ohdsi.org/search-terms/start
knowledge level: curated
agent type: not_provided
- id: infores:automat-genome-alliance
status: released
name: Automat Alliance of Genome Resources
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
- id: infores:automat-renci-sri-reference-kg
status: deprecated
name: Automat RENCI SRI Reference KG
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on the [Monarch API (https://api.monarchinitiative.org/)](https://api.monarchinitiative.org/).
- id: infores:automat-chem-norm
status: deprecated
name: Automat Chemical normalization (trapi v-1.1.0)
description: >-
A graph linking together similar compounds. Two compounds are linked
by an edge in the graph if they are equivalent when charge, salts, and stereochemistry
are ignored.
knowledge level: curated
agent type: not_provided
- id: infores:automat-chembio
status: deprecated
name: Automat Chembio
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
A graph based on [chem2bio2rdf (http://cheminfov.informatics.indiana.edu:8080/c2b2r/)](http://cheminfov.informatics.indiana.edu:8080/c2b2r/).
- id: infores:automat-cord19
status: deprecated
name: Automat Cord19
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: text_mined
agent type: not_provided
description: >-
A literature co-occurence graph based on parsing the CORD-19 paper set.
- id: infores:automat-cord19-scibite
status: deprecated
name: Automat Cord19 Scibite (trapi v-1.1.0)
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: text_mined
agent type: not_provided
description: >-
A literature co-occurence graph based on the [scibite parsing (https://github.com/SciBiteLabs/CORD19)](https://github.com/SciBiteLabs/CORD19)
of the CORD-19 paper set.
- id: infores:automat-cord19-scigraph
status: deprecated
name: Automat Cord19 Scigraph (trapi v-1.1.0)
description: >-
A literature co-occurence graph based on scigraph parsing of the CORD-19
paper set. All triples contain covid-19 as either subject or object.
knowledge level: text_mined
agent type: not_provided
- id: infores:automat-covid-phenotypes
status: deprecated
name: Automat Covid Phenotypes (trapi v-1.1.0)
knowledge level: curated
agent type: not_provided
description: A hand-curated graph of phenotypes of covid-19.
- id: infores:automat-covidkop
status: deprecated
name: Automat Covidkop KG (trapi v-1.1.0)
knowledge level: curated
agent type: not_provided
description: >-
Knowledge graph constructed from Robokop KG by incorporating Cord-19
dataset and other covid related knowledge sources.
- id: infores:automat-cam-kp
status: released
name: Automat CAM-KP
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: TRAPI interface to database of Causal Activity Models
- id: infores:automat-ctd
status: released
name: Automat CTD
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on the [Comparative Toxicogenomics Database (ctdbase.org)](ctdbase.org).
- id: infores:automat-drug-central
status: released
name: Automat DrugCentral
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on DrugCentral
- id: infores:automat-foodb
status: released
name: Automat Foodb
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph of the food/chemical relationships in [foodb.ca](foodb.ca).
- id: infores:automat-gtex
status: released
name: Automat GTEx
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
A graph containing eqtl and sqtl information from [GTEx Portal (https://gtexportal.org/home/)](https://gtexportal.org/home/).
Also includes genes that the variants lie within or near.
- id: infores:automat-gtopdb
status: released
name: Automat GtoPdb
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on the [IUPHAR Guide to Pharmacology (https://www.guidetopharmacology.org/)](https://www.guidetopharmacology.org/)
- id: infores:automat-gwas-catalog
status: released
name: Automat GWAS Catalog
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on the GWAS Catalog
- id: infores:automat-hetio
status: deprecated
name: Automat Hetio
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on [hetionet (het.io)](het.io).
- id: infores:automat-hetionet
status: released
name: Automat Hetionet
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on [hetionet (het.io)](het.io).
- id: infores:automat-hgnc
status: released
name: Automat HGNC
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: Gene families from [HGNC (genenames.org)](genenames.org).
- id: infores:automat-hmdb
status: released
name: Automat HMDB
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on the [Human Metabolome DataBase (hmdb.org)](hmdb.org).
- id: infores:automat-human-goa
status: released
name: Automat Human GOA
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: Human Gene Ontology Annotations from the GO consortium.
- id: infores:automat-icees-kg
status: released
name: Automat ICEES KG
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: correlation
agent type: not_provided
- id: infores:automat-intact
status: released
name: Automat IntAct
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: Molecular (Gene-Gene) interactions from EBI IntAct (https://www.ebi.ac.uk/intact/)](https://www.ebi.ac.uk/intact/).
- id: infores:automat-kegg
status: deprecated
name: Automat KEGG
knowledge level: curated
agent type: not_provided
description: A graph based on the [Kyoto Encyclopedia of Genes and Genomes (https://www.genome.jp/kegg/)](https://www.genome.jp/kegg/).
- id: infores:automat-monarchinitiative
status: released
name: Automat Monarch Initiative
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
The Monarch Knowledge Graph is a reference implementation of the Biolink model specification.
It contains data from the Monarch Initiative aggregated database as well as several OBO ontologies.
- id: infores:automat-mychem-info
status: deprecated
name: Automat MyChem (trapi v-1.1.0)
knowledge level: curated
agent type: not_provided
description: >-
A graph integrating DrugBank, DrugCentral, and Aeolus data as provided
by [mychem.info](mychem.info).
- id: infores:automat-ontology-hierarchy
status: deprecated
name: Automat Ontological Hierarchy (trapi v-1.1.0)
knowledge level: curated
agent type: not_provided
description: A graph for ontological hierarchy extracted from Uberongraph.
- id: infores:automat-panther
status: released
name: Automat PANTHER
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph of gene families and pathways from [Panther (pantherdb.org)](pantherdb.org)
- id: infores:automat-pharos
status: released
name: Automat Pharos
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: A graph based on [Pharos (pharos.nih.gov)](pharos.nih.gov).
- id: infores:automat-robokop-kg
status: released
name: Automat ROBOKOP KG
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: Biomedical Knowledge graph build by constructing relationships from
federated data sets.
- id: infores:automat-text-mining-provider
status: deprecated
name: Automat Textmining KP
knowledge level: curated
agent type: not_provided
description: A literature co-occurrence graph created by the Translator Text Mining KP.
- id: infores:automat-string-db
status: released
name: Automat STRING
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
The Search Tool for the Retrieval of INteracting Genes/proteins (STRING)
database provides information on known and predicted protein-protein interactions
(both direct and indirect) derived from genomic context predictions, high-throughput
laboratory experiments, conserved co-expression, automated text mining, and aggregated
knowledge from primary data sources.
- id: infores:automat-sri-reference-kg
status: deprecated
name: Automat SRI Reference Knowledge Graph
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/SRI-Reference-Knowledge-Graph
knowledge level: curated
agent type: not_provided
description: >-
The SRI reference KG aims to aggregate knowledge sources across translator
using KGX. The initial graph contains data files provided by the Monarch Initiative
and several ontologies.
- id: infores:automat-ubergraph
status: released
name: Automat Ubergraph
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
A graph representation of Ubergraph, an integration of ontologies
including GO, CHEBI, Uberon, and HPO.
- id: infores:automat-ubergraph-nonredundant
status: deprecated
name: Automat Ubergraph Nonredundant
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
knowledge level: curated
agent type: not_provided
description: >-
A graph representation of Ubergraph, an integration of ontologies
including GO, CHEBI, Uberon, and HPO. The redundant version of Ubergraph contains
the complete inference closure for all subclass and existential relations, including
transitive, reflexive subclass relations.
- id: infores:automat-viral-proteome
status: released
name: Automat Viral Proteome
knowledge level: curated
agent type: not_provided
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Automat
description: >-
A graph consisting of viral proteins from UniProt, connected by similarity
edges from UniRef.
- id: infores:bfo
status: released
name: Basic Formal Ontology
xref:
- http://www.obofoundry.org/ontology/bfo.html
synonym:
- BFO
knowledge level: curated
agent type: not_provided
- id: infores:bgee
status: released
name: Bgee
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Bgee
synonym:
- BGEE
knowledge level: curated
agent type: not_provided
- id: infores:bigclam
status: deprecated
name: Big Cell Line Association Miner
xref:
- https://github.com/PriceLab/translator-bigquery-api
synonym:
- BigClam
knowledge level: correlation
agent type: not_provided
- id: infores:bigg-models
status: released
name: BiGG Models
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BiGG-Models
synonym:
- BIGG
knowledge level: curated
agent type: not_provided
description: a knowledgebase of genome-scale metabolic network reconstructions
- id: infores:biggim
status: deprecated
name: Big Gene Interaction Miner
xref:
- https://github.com/PriceLab/translator-bigquery-api/
synonym:
- BigGIM
knowledge level: correlation
agent type: not_provided
- id: infores:bindingdb
status: released
name: BindingDB
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/bindingdb
synonym:
- The Binding Database
knowledge level: mixed
agent type: not_provided
description: >-
BindingDB is a public, web-accessible database of measured binding
affinities, focusing chiefly on the interactions of protein considered to be drug-targets
with small, drug-like molecules. As of July 31, 2021, BindingDB contains 41,300
Entries, each with a DOI, containing 2,303,972 binding data for 8,561 protein
targets and 995,797 small molecules.
- id: infores:bio2rdf
status: released
name: Bio2RDF
xref:
- https://bio2rdf.org
knowledge level: curated
agent type: not_provided
- id: infores:biocatalogue
status: deprecated
name: BioCatalogue
knowledge level: other
agent type: not_provided
- id: infores:biogrid
status: released
name: 'The Biological General Repository for Interaction Datasets '
xref:
- https://thebiogrid.org/
synonym:
- BioGrid
knowledge level: curated
agent type: not_provided
- id: infores:biolink-api
status: released
name: BioLink API
xref:
- http://api-v3.monarchinitiative.org/
knowledge level: curated
agent type: not_provided
description: API integration layer for linked biological objects.
- id: infores:biolink-model-lookup
status: released
name: Biolink Model Lookup
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Biolink-Lookup-Service
knowledge level: curated
agent type: not_provided
description: Biolink Model Lookup service.
- id: infores:biolink-ontology
status: released
name: Biolink ontology
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioLink-OWL
knowledge level: curated
agent type: not_provided
- id: infores:bioportal
status: released
name: National Center for Biomedical Ontology BioPortal
xref:
- http://bioportal.bioontology.org/
synonym:
- bioportal
knowledge level: curated
agent type: not_provided
- id: infores:biothings-biggim-1
status: deprecated
name: Big GIM 1 API
knowledge level: curated
agent type: not_provided
description: Documentation of the Big GIM 1 KP query web services.
- id: infores:biothings-dgidb
status: released
name: BioThings DGIdb API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: mixed
agent type: not_provided
description: Documentation of the BioThings DGIdb query web services.
- id: infores:biothings-diseases
status: released
name: BioThings DISEASES API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: mixed
agent type: not_provided
description: Documentation of the DISEASES query web services.
- id: infores:biothings-ebi-gene2phenotype
status: released
name: BioThings EBIgene2phenotype API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the EBIgene2phenotype query web services.
- id: infores:biothings-explorer
status: released
name: BioThings Explorer
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-Explorer-(BTE)
synonym:
- BTE
knowledge level: predicted
agent type: not_provided
- id: infores:service-provider-trapi
status: released
name: Service Provider TRAPI endpoints
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Service-Provider-TRAPI
synonym:
- service provider
knowledge level: other
agent type: not_provided
- id: infores:biothings-go-bp
status: released
name: BioThings Gene Ontology Biological Process API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the Gene Ontology Biological Process query web services.
- id: infores:biothings-go-cc
status: released
name: BioThings Gene Ontology Cellular Component API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the Gene Ontology Cellular Component query web services.
- id: infores:biothings-go-mf
status: released
name: BioThings Gene Ontology Molecular Activity API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the Gene Ontology Molecular Activity query web services.
- id: infores:biothings-hpo
status: released
name: BioThings Human Phenotype Ontology API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the HPO query web services.
- id: infores:biothings-idisk
status: released
name: BioThings iDISK API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: mixed
agent type: not_provided
- id: infores:biothings-mgi-g2p
status: released
name: BioThings MGIgene2phenotype API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the MGIgene2phenotype query web services.
- id: infores:biothings-multiomics-biggim-drugresponse
status: released
name: Multiomics BigGIM-DrugResponse KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Big-GIM-II:-Drug-Response-KP
- https://github.com/NCATS-Tangerine/BigGIM_APIWrapper
knowledge level: curated
agent type: not_provided
description: Documentation of the Drug Response KP query web services.
- id: infores:biothings-multiomics-ehr-risk
status: modified
name: Multiomics EHR Risk KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/EHR-Risk-KP
knowledge level: correlation
agent type: not_provided
description: >-
Documentation of the Multiomics Electronic-Health-Record (EHR) Risk
KP query web services.
- id: infores:providence-st-joseph-ehr
status: released
name: Providence St. Joseph EHR Data
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/EHR-KP-Providence-Health-Systems-and-Affiliates-Data
knowledge level: curated
agent type: not_provided
description: >-
A partnership with Providence/Swedish Health Services and Institute
for Systems Biology allows analysis of 26 million EHRs from patients in seven
states in the US, including Alaska, California, Montana, Oregon, Washington, Texas,
and New Mexico. Please email [email protected] for more information.
- id: infores:biothings-multiomics-wellness
status: released
name: Multiomics Wellness KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Wellness-KP
knowledge level: statistical_association
agent type: data_analysis_pipeline
description: Documentation of the Multiomics Wellness KP query web services.
- id: infores:multiomics-clinicaltrials
status: released
name: Multiomics ClinicalTrials KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Clinical-Trials-KP
knowledge level: knowledge_assertion
agent type: manual_agent
- id: infores:biothings-multiomics-clinicaltrials
status: deprecated
name: Multiomics ClinicalTrials KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Clinical-Trials-KP
knowledge level: knowledge_assertion
agent type: manual_agent
- id: infores:multiomics-drugapprovals
status: released
name: Multiomics Drug Approvals KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Multiomics-Drug-Approvals-KP
knowledge level: knowledge_assertion
agent type: manual_agent
- id: infores:multiomics-multiomics
status: released
name: Multiomics KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Multiomics-KP
knowledge level: knowledge_assertion
agent type: text_mining_assisted
- id: infores:multiomics-microbiome
status: released
name: Multiomics Microbiome KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Microbiome-KP
knowledge level: knowledge_assertion
agent type: text_mining_assisted
- id: infores:biothings-pfocr
status: modified
name: BioThings PFOCR API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: predicted
agent type: not_provided
description: Documentation of the pfocr query web services.
- id: infores:pfocr
status: released
name: PFOCR
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/pfocr
knowledge level: predicted
agent type: not_provided
- id: infores:biothings-semmeddb
status: released
name: BioThings SEMMEDDB API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: text_mined
agent type: not_provided
description: Documentation of the BioThings SEMMEDDB query web services.
- id: infores:biothings-semmeddb-anatomy
status: deprecated
name: SEMMED Anatomy API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-SEMMED-DB-Anatomy
knowledge level: text_mined
agent type: not_provided
description: >-
Documentation of the SEMMED disease query web services. Learn more
about [mydisease.info](http://pending.biothings.io/semmed)
- id: infores:biothings-semmeddb-biological-process
status: deprecated
name: SEMMED Biological Process API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-SEMMED-DB-Biological-Process
knowledge level: text_mined
agent type: not_provided
description: >-
Documentation of the SEMMED disease query web services. Learn more
about [mydisease.info](http://pending.biothings.io/semmed)
- id: infores:biothings-semmeddb-chemical
status: deprecated
name: SEMMED Chemical API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-SEMMED-DB-Chemical
knowledge level: text_mined
agent type: not_provided
description: >-
Documentation of the SEMMED disease query web services. Learn more
about [mydisease.info](http://pending.biothings.io/semmed)
- id: infores:biothings-semmeddb-disease
status: deprecated
name: SEMMED Disease API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-SEMMED-DB-Disease
knowledge level: text_mined
agent type: not_provided
description: >-
Documentation of the SEMMED disease query web services. Learn more
about [semmed disease](http://pending.biothings.io/semmed)
- id: infores:biothings-semmeddb-gene
status: deprecated
name: SEMMED Gene API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-SEMMED-DB-Gene
knowledge level: text_mined
agent type: not_provided
description: Documentation of the SEMMED disease query web services. Learn more
about [mydisease.info](http://pending.biothings.io/semmed)
- id: infores:biothings-semmeddb-phenotype
status: deprecated
name: SEMMED Phenotype API
xref:
- https://github.com/biothings
knowledge level: text_mined
agent type: not_provided
description: Documentation of the SEMMED disease query web services. Learn more
about [mydisease.info](http://pending.biothings.io/semmed)
- id: infores:biothings-tcga-mut-freq
status: deprecated
name: Multiomics TCGA Mutation Frequency KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Big-GIM-II:-Tumor-gene-mutation-KP
knowledge level: correlation
agent type: not_provided
description: Documentation of the TCGA Mutation Frequency KP query web services.
- id: infores:biothings-uberon-ontology
status: released
name: BioThings UBERON Ontology API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the UBERON query web services.
- id: infores:biothings-rhea
status: released
name: BioThings Rhea API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: Documentation of the BioThings Rhea query web services.
- id: infores:rhea
status: released
name: Rhea
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/rhea
knowledge level: curated
agent type: not_provided
description: https://www.rhea-db.org/
- id: infores:biothings-bioplanet-pathway-disease
status: released
name: BioThings BioPlanet Pathway-Disease API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: >-
Documentation of the BioThings [BioPlanet](https://tripod.nih.gov/bioplanet/#)
pathway-disease association query web services.
- id: infores:biothings-bioplanet-pathway-gene
status: released
name: BioThings BioPlanet Pathway-Gene API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: curated
agent type: not_provided
description: >-
Documentation of the BioThings [BioPlanet](https://tripod.nih.gov/bioplanet/#)
pathway-gene association query web services.
- id: infores:bioplanet
status: released
name: BioPlanet
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/bioplanet
knowledge level: curated
agent type: not_provided
description: https://tripod.nih.gov/bioplanet/#
- id: infores:biothings-bindingdb
status: released
name: BioThings BindingDB API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/BioThings-APIs
knowledge level: mixed
agent type: not_provided
description: >-
Documentation of the BioThings [BindingDB](https://www.bindingdb.org/rwd/bind/index.jsp)
query web services.
- id: infores:bspo
status: released
name: Biological Spatial Ontology
xref:
- https://obofoundry.org/ontology/bspo.html
synonym:
- BSPO
knowledge level: curated
agent type: not_provided
- id: infores:wbbt
status: released
name: C. elegans Gross Anatomy Ontology
xref:
- https://obofoundry.org/ontology/wbbt.html
synonym:
- WBBT
knowledge level: curated
agent type: not_provided
description: A structured controlled vocabulary of the anatomy of Caenorhabditis elegans.
- id: infores:wbphenotype
status: released
name: C. elegans phenotype
xref:
- https://obofoundry.org/ontology/wbphenotype.html
synonym:
- WBPhenotype
knowledge level: curated
agent type: not_provided
description: A structured controlled vocabulary of Caenorhabditis elegans phenotypes
- id: infores:cam-kp
status: released
name: CAM-KP API
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/CAM-Provider-KG
synonym:
- Causal Activity Model KP
knowledge level: curated
agent type: not_provided
description: TRAPI interface to database of Causal Activity Models
- id: infores:campfhir
status: deprecated
name: Clinical Asset Mapping Program for FHIR
xref:
- https://researchsoftwareinstitute.github.io/data-translator/apps/camp-fhir
synonym:
- CAMP FHIR
knowledge level: curated
agent type: not_provided
- id: infores:chebi
status: released
name: Chemical Entity of Biological Interest
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/ChEBI
synonym:
- ChEBI
knowledge level: curated
agent type: not_provided
description: a freely available dictionary of molecular entities focused on ‘small’ chemical compounds
- id: infores:chem2bio2rdf
status: deprecated
name: Chem2bio2RDF
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Chem2bio2RDF
knowledge level: curated
agent type: not_provided
- id: infores:chembank
status: deprecated
name: ChemBank
knowledge level: curated
agent type: not_provided
description: Initiative for Chemical Genetics contract from the National Cancer Institute
- id: infores:chembio
status: deprecated
name: ChemBio
knowledge level: curated
agent type: not_provided
- id: infores:chembl
status: released
name: ChEMBL
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/ChEMBL
synonym:
- Chembl
knowledge level: curated
agent type: not_provided
description: a manually curated database of bioactive molecules with drug-like properties.
- id: infores:chemotext
status: deprecated
name: Chemotext
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/Chemotext
knowledge level: curated
agent type: not_provided
- id: infores:civic
status: released
name: Clinital Interpretation of Variants in Cancer
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/civic
synonym:
- CIViC
knowledge level: curated
agent type: not_provided
- id: infores:cl
status: released
name: Cell Ontology
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/CL
synonym:
- CL
knowledge level: curated
agent type: not_provided
- id: infores:clingen
status: released
name: Clinical Genome Resource (ClinGen)
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/clingen
knowledge level: curated
agent type: not_provided
description: >-
ClinGen is a NIH-funded resource dedicated to building a central resource
that defines the clinical relevance of genes and variants for use in precision
medicine and research
- id: infores:clinical-profiles
status: deprecated
name: Clinical Profiles
knowledge level: curated
agent type: not_provided
- id: infores:clinicaltrials
status: released
name: ClinicalTrials.gov
xref:
- https://clinicaltrials.gov
knowledge level: curated
agent type: not_provided
- id: infores:clinvar
status: released
name: ClinVar
xref:
- https://github.com/NCATSTranslator/Translator-All/wiki/clinvar
knowledge level: curated
agent type: not_provided
description: >-
ClinVar is a freely accessible, public archive of reports of the
relationships among human variations and phenotypes, with supporting evidence.
- id: infores:cmap
status: released
name: Connectivity Map
xref:
- http://clue.io/cmap
synonym:
- CMAP
knowledge level: curated
agent type: not_provided
description: >-
genome-scale library of cellular signatures that catalogs transcriptional
responses to chemical, genetic, and disease perturbation"'
- id: infores:columbia-cdw-ehr-data
status: released
name: Columbia Clinical Data Warehouse for Health Patient EHR Data
xref:
- https://www.irvinginstitute.columbia.edu/services/clinical-data-warehouse-cdw-navigator-support
synonym:
- The Columbia Clinical Data Warehouse (CDW) contains clinical information for over
4.5 million individuals treated at Columbia University Irving Medical Center (CUIMC)
since the 1980s.
knowledge level: curated
agent type: not_provided
- id: infores:cohd
status: released
name: Columbia Open Health Data (COHD)