-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_config.yml
1202 lines (1202 loc) · 37.3 KB
/
_config.yml
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
name: KG-Registry
title: The Knowledge Graph Registry
markdown: kramdown
highlighter: rouge
url: https://kghub.org
baseurl: /kg-registry
imgurl: /images
repo: https://github.com/Knowledge-Graph-Hub/kg-registry
repo_src: https://github.com/Knowledge-Graph-Hub/kg-registry/blob/main/
author:
name: KG-Hub, a team based at the Lawrence Berkeley National Laboratory
plugins:
- jekyll-sitemap
- jekyll-feed
feed:
disable_in_development: true
## --Anything above this line can be edited in _config_header.yml --
## --Everything below this line automatically generated in _config.yml --
resources:
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: YaphetKG
label: Yaphet Kebede
orcid: 0000-0002-5046-0246
description: A Translator Knowledge Provider offering multiple sub-graphs in KGX
format.
domain: health
id: automat
layout: resource_detail
name: Automat
products:
- category: GraphProduct
description: Robokop KG (Automat)
id: robokopkg
is_kgx: true
name: robokopkg
url: https://stars.renci.org/var/plater/bl-3.1.2/RobokopKG/latest/kgx_files
- category: GraphProduct
description: Robokop Plus
id: robokopplus
is_kgx: true
name: robokopplus
url: https://stars.renci.org/var/plater/bl-3.1.2/RobokopPlus/latest/kgx_files
- category: GraphProduct
description: Biolink Automat
id: biolink_automat
is_kgx: true
name: biolink_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/Biolink_Automat/latest/kgx_files
- category: GraphProduct
description: CTD Automat
id: ctd_automat
is_kgx: true
name: ctd_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/CTD_Automat/latest/kgx_files
- category: GraphProduct
description: DrugCentral Automat
id: drugcentral_automat
is_kgx: true
name: drugcentral_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/DrugCentral_Automat/latest/kgx_files
- category: GraphProduct
description: GTEx Automat
id: gtex_automat
is_kgx: true
name: gtex_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/GTEx_Automat/latest/kgx_files
- category: GraphProduct
description: GtoPdb Automat
id: gtopdb_automat
is_kgx: true
name: gtopdb_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/GtoPdb_Automat/latest/kgx_files
- category: GraphProduct
description: GWASCatalog Automat
id: gwascatalog_automat
is_kgx: true
name: gwascatalog_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/GWASCatalog_Automat/latest/kgx_files
- category: GraphProduct
description: Hetio Automat
id: hetio_automat
is_kgx: true
name: hetio_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/Hetio_Automat/latest/kgx_files
- category: GraphProduct
description: HGNC Automat
id: hgnc_automat
is_kgx: true
name: hgnc_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/HGNC_Automat/latest/kgx_files
- category: GraphProduct
description: HMDB Automat
id: hmdb_automat
is_kgx: true
name: hmdb_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/HMDB_Automat/latest/kgx_files
- category: GraphProduct
description: HumanGOA Automat
id: humangoa_automat
is_kgx: true
name: humangoa_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/HumanGOA_Automat/latest/kgx_files
- category: GraphProduct
description: IntAct Automat
id: intact_automat
is_kgx: true
name: intact_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/IntAct_Automat/latest/kgx_files
- category: GraphProduct
description: OntologicalHierarchy Automat
id: ontologicalhierarchy_automat
is_kgx: true
name: ontologicalhierarchy_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/OntologicalHierarchy_Automat/latest/kgx_files
- category: GraphProduct
description: PANTHER Automat
id: panther_automat
is_kgx: true
name: panther_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/PANTHER_Automat/latest/kgx_files
- category: GraphProduct
description: PHAROS Automat
id: pharos_automat
is_kgx: true
name: pharos_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/PHAROS_Automat/latest/kgx_files
- category: GraphProduct
description: STRING-DB Automat
id: stringdb_automat
is_kgx: true
name: stringdb_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/STRING-DB_Automat/latest/kgx_files
- category: GraphProduct
description: UberGraph Automat
id: ubergraph_automat
is_kgx: true
name: ubergraph_automat
url: https://stars.renci.org/var/plater/bl-3.1.2/UberGraph_Automat/latest/kgx_files
repository: ''
url: https://robokop.renci.org/api-docs/docs/category/automat
- activity_status: active
category: DataModel
contacts:
- category: Individual
email: [email protected]
github: sierra-moxon
label: Sierra Taylor Moxon
orcid: 0000-0002-8719-7760
description: Entity and association taxonomy and datamodel for life-sciences data
domain: upper
id: biolink
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: Biolink-Model
products:
- category: DataModelProduct
description: OWL release of Biolink-Model
id: biolink-model.owl.ttl
name: Biolink-Model OWL release
repository: https://github.com/biolink/biolink-model/
url: https://w3id.org/biolink/biolink-model.owl.ttl
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
label: Jim Balhoff
description: The “cam-kp” Exposures Knowledge Graph (in development).
domain: health
id: cam-kp
layout: resource_detail
name: Exposures KP (cam kp)
url: https://github.com/ExposuresProvider/cam-kp-api
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: jeevangelista
label: John Erol Evangelista
description: The Common Fund Data Ecosystem (CFDE) aims to facilitate better integration,
and reuse of Common Fund data to accelerate discoveries in biomedical research.
domain: health
id: cfde
layout: resource_detail
name: Data Distillery Knowledge Graph
url: https://dd-kg-ui.cfde.cloud/about
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: Automatic translation of UCSC chromosome bands to OWL classes
domain: chemistry and biochemistry
id: chr
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: Monochrom Ontology
products:
- category: Product
description: OWL release of Monochrom Ontology
id: chr.owl
name: Monochrom Ontology OWL release
repository: http://purl.obolibrary.org/obo/chr.owl
url: http://purl.obolibrary.org/obo/chr.owl
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Casey Ta
- category: Individual
label: Vincent Emonet
- category: Individual
label: Michel Dumontier
description: A Translator Knowledge Provider integrating clinical data.
domain: health
id: clinical-data-kp
layout: resource_detail
name: Clinical Data KP
url: https://ncats.nih.gov/research/research-activities/translator/projects
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Gregory Hyde
description: A Translator Knowledge Provider exploring connections hypotheses.
domain: health
id: connections-hypothesis-kp
layout: resource_detail
name: Connections Hypothesis KP
url: https://github.com/di2ag/chp_api
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: https://github.com/bioannidis
orcid: 0000-0002-8367-0733
description: Drug Repurposing Knowledge Graph (DRKG) is a comprehensive biological
knowledge graph relating genes, compounds, diseases, biological processes, side
effects and symptoms.
domain: health
id: drkg
layout: resource_detail
name: DRKG
repository: https://github.com/gnn4dr/DRKG
url: https://github.com/gnn4dr/DRKG
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: DrugBank
domain: health
id: drugbank
layout: resource_detail
name: drugbank
products:
- category: Product
description: OWL release of drugbank
id: drugbank.owl
name: drugbank OWL release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/drugbank/drugbank.owl
- category: Product
description: OBO release of drugbank
id: drugbank.obo
name: drugbank OBO release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/drugbank/drugbank.obo
- category: MappingProduct
description: SSSOM release of drugbank
id: drugbank.sssom
name: drugbank SSSOM release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/drugbank/drugbank.sssom
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://biopragmatics.github.io/obo-db-ingest/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: diatomsRcool
label: Anne Thessen
description: A knowledge graph of plant traits starting with Planteome and EOL TraitBank.
domain: organisms
id: eco-kg
layout: resource_detail
name: eco-KG
repository: https://github.com/Knowledge-Graph-Hub/eco-kg
url: https://kghub.org/eco-kg/index.html
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: Ontology rendering of the EcoSIM Land System Model
domain: environment
id: ecosim
layout: resource_detail
name: ecosim
products:
- category: Product
description: OWL release of ecosim
id: ecosim.owl
name: ecosim OWL release
repository: http://purl.obolibrary.org/obo/ecosim.owl
url: http://purl.obolibrary.org/obo/ecosim.owl
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Jason Flannick
description: A Translator Knowledge Provider focusing on genetic data.
domain: health
id: genetics-kp
layout: resource_detail
name: Genetics KP
url: ''
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Chris Mungall
orcid: 0000-0002-6601-2165
description: Translation of JGI GOLD path terms to OWL
domain: environment
id: goldterms
layout: resource_detail
name: GOLD Environmental Paths
products:
- category: Product
id: goldterms.owl
name: main GOLDTERMS OWL release
url: https://w3id.org/goldterms/goldterms.owl
repository: https://github.com/cmungall/gold-ontology
url: https://gold.jgi.doe.gov/
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: HUGO Gene Nomenclature Committee
domain: biological systems
id: hgnc
layout: resource_detail
name: hgnc
products:
- category: Product
description: OWL release of hgnc
id: hgnc.owl
name: hgnc OWL release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/hgnc/hgnc.owl
- category: Product
description: OBO release of hgnc
id: hgnc.obo
name: hgnc OBO release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/hgnc/hgnc.obo
- category: MappingProduct
description: SSSOM release of hgnc
id: hgnc.sssom
name: hgnc SSSOM release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/hgnc/hgnc.sssom
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://biopragmatics.github.io/obo-db-ingest/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: karafecho
label: Kara Fecho
orcid: 0000-0002-6704-9306
description: The ICEES-based Exposures Knowledge Graph.
domain: health
id: icees-kg
layout: resource_detail
name: Exposures KP (icees-kg)
products:
- category: GraphProduct
description: KGX distribution of the ICEES Exposures KP
id: icees_kgx_files
is_kgx: true
name: KGX distribution of the ICEES Exposures KP
url: https://stars.renci.org/var/plater/bl-2.1/icees_kgx_files/
repository: ''
url: ''
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: InterPro is a database of protein families, domains and functional
sites in which identifiable features found in known proteins can be applied to
unknown protein sequences
domain: biological systems
id: interpro
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: InterPro
products:
- category: Product
description: OWL release of InterPro
id: interpro.owl
name: InterPro OWL release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/interpro/interpro.owl
- category: Product
description: OBO release of InterPro
id: interpro.obo
name: InterPro OBO release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/interpro/interpro.obo
- category: MappingProduct
description: SSSOM release of InterPro
id: interpro.sssom
name: InterPro SSSOM release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/interpro/interpro.sssom
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://biopragmatics.github.io/obo-db-ingest/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: justaddcoffee
label: Justin Reese
description: A knowledge graph for COVID-19 and SARS-COV-2.
domain: organisms
id: kg-covid-19
layout: resource_detail
name: KG-COVID-19
repository: https://github.com/Knowledge-Graph-Hub/kg-covid-19
url: https://github.com/Knowledge-Graph-Hub/kg-covid-19/wiki
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: oolonek
label: Pierre-Marie Allard
description: Experimental natural products knowledge graph.
domain: organisms
id: kg-enp
layout: resource_detail
name: kg-enp
repository: https://github.com/enpkg/enpkg_full
url: https://enpkg.commons-lab.org/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: caufieldjh
label: J. Harry Caufield
orcid: 0000-0001-5705-7831
description: a Knowledge Graph for Illuminating the Druggable Genome
domain: health
id: kg-idg
layout: resource_detail
name: KG-IDG
products:
- category: GraphProduct
description: KGX Distribution of KG-IDG
id: kg-idg.tar.gz
is_kgx: true
name: KGX Distribution of KG-IDG
url: https://kg-hub.berkeleybop.io/kg-idg/current/kg-microbe.tar.gz
repository: https://github.com/Knowledge-Graph-Hub/kg-idg
url: https://kghub.org/kg-idg/index.html
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: A Knowledge Graph about microbes
domain: organisms
id: kg-microbe
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: KG Microbe
products:
- category: GraphProduct
description: KGX Distribution of KGM
id: kg-microbe.tar.gz
is_kgx: true
name: KGX Distribution of KGM
url: https://kg-hub.berkeleybop.io/kg-microbe/current/kg-microbe.tar.gz
repository: https://github.com/Knowledge-Graph-Hub/kg-microbe
url: https://kghub.org/kg-microbe/index.html
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: Monarch Initiative Knowledge Graph
domain: health
id: kg-monarch
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: KG Monarch
products:
- category: GraphProduct
description: KGX Distribution of KGM
id: kg-monarch.tar.gz
is_kgx: true
name: KGX Distribution of KGM
url: https://kg-hub.berkeleybop.io/kg-monarch/current/kg-monarch.tar.gz
repository: https://github.com/monarch-initiative/monarch-ingest
url: https://kghub.org/kg-monarch/index.html
- activity_status: active
category: DataModel
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: A data model for describing change operations at a high level on an
ontology or ontology-like artefact, such as a Knowledge Graph
domain: other
id: kgcl
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: Knowledge Graph Change Language
products:
- category: DataModelProduct
description: OWL release of Knowledge Graph Change Language
id: kgcl.owl
name: Knowledge Graph Change Language OWL release
- category: DataModelProduct
description: OBO release of Knowledge Graph Change Language
id: kgcl.obo
name: Knowledge Graph Change Language OBO release
repository: https://github.com/INCATools/kgcl/
url: https://w3id.org/kgcl
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: mixs
domain: environment
id: mixs
layout: resource_detail
name: mixs
products:
- category: DataModelProduct
description: OWL release of mixs
id: mixs.owl
name: mixs OWL release
- category: DataModelProduct
description: OBO release of mixs
id: mixs.obo
name: mixs OBO release
repository: https://w3id.org/mixs
url: https://w3id.org/mixs
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Sandrine Muller
orcid: 0000-0001-5998-3003
description: A Translator Knowledge Provider for molecular data.
domain: health
id: molecular-data-kp
layout: resource_detail
name: Molecular Data KP
products:
- category: GraphProduct
description: KGX nodes for Molecular Data KP
id: nodes.tsv
is_kgx: true
name: Nodes for Molecular Data KP
url: https://molepro.s3.amazonaws.com/nodes.tsv
- category: GraphProduct
description: KGX edges for Molecular Data KP
id: edges.tsv
is_kgx: true
name: Edges for Molecular Data KP
url: https://molepro.s3.amazonaws.com/edges.tsv
repository: ''
url: ''
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Gustavo Glusman
- category: Individual
label: Guangrong Qin
description: A Translator Knowledge Provider incorporating multiomics data.
domain: health
id: multiomics-kp
layout: resource_detail
name: Multiomics KP
repository: ''
url: ''
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: Noctua Entity Ontology
domain: biological systems
id: neo
layout: resource_detail
name: neo
products:
- category: Product
description: OWL release of neo
id: neo.owl
name: neo OWL release
repository: https://github.com/geneontology/neo/
url: http://purl.obolibrary.org/obo/go/noctua/neo.owl
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Jim Balhoff
description: A Translator Knowledge Provider dedicated to ontology-based services.
domain: other
id: ontology-kp
layout: resource_detail
name: Ontology KP
repository: ''
url: ''
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: ORCID in OWL
domain: other
id: orcid
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: ORCID
products:
- category: Product
description: OWL release of ORCID in OWL
id: orcidio.owl
name: ORCID in OWL OWL release
- category: Product
description: OBO release of ORCID in OWL
id: orcidio.obo
name: ORCID in OWL OBO release
repository: https://github.com/cthoyt/orcidio
url: https://github.com/cthoyt/orcidio
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: https://github.com/callahantiff/
label: Tiffany Callahan
description: PheKnowLator (Phenotype Knowledge Translator) or pkt_kg is the first
fully customizable knowledge graph (KG) construction framework enabling users
to build complex KGs that are Semantic Web compliant and amenable to automatic
Web Ontology Language (OWL) reasoning, generate contemporary property graphs,
and are importable by today’s popular graph toolkits.
domain: organisms
id: pheknowlator
layout: resource_detail
name: PheKnowLator
repository: https://github.com/callahantiff/PheKnowLator
url: https://github.com/callahantiff/PheKnowLator
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: caufieldjh
label: J. Harry Caufield
description: An ontology for accessing and comparing knowledge concerning phenotypes
across species and genetic backgrounds.
domain: phenotype
id: phenio
layout: resource_detail
license:
label: CC0 1.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png
url: https://creativecommons.org/publicdomain/zero/1.0/
name: An integrated ontology for Phenomics
products:
- category: Product
description: OWL version of phenio
id: phenio.owl
name: phenio
url: https://github.com/monarch-initiative/phenio/releases/latest/download/phenio.owl
- category: GraphProduct
description: KGX version of phenio
id: phenio.kgx
is_kgx: true
name: phenio KG
url: https://kg-hub.berkeleybop.io/kg-phenio/20241203/kg-phenio.tar.gz
repository: https://github.com/monarch-initiative/phenio
url: https://github.com/obophenotype/phenio
usages:
- description: PHENIO is used by the Monarch Initiative for cross-species inference.
As an example, the disease of Parkinsonism may compared on the basis of its
phenotype in humans vs. mouse genes and genotypes known to impact these phenotypes.
label: PHENIO is used by the Monarch Initiative for cross-species inference
publications:
- doi: doi:10.1093/nar/gkw1128
preferred: true
title: 'The Monarch Initiative: an integrative data and analytic platform connecting
phenotypes to genotypes across species'
type: actual
url: https://monarchinitiative.org/HP:0001300#disease
users:
- category: Organization
label: The Monarch Initiative
url: https://monarchinitiative.org/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
email: [email protected]
github: marinkaz
label: Marinka Zitnik
description: PrimeKG (Precision Medicine Knowledge Graph) integrates 20 high-quality
biomedical resources to describe 17,080 diseases with over 4 million relationships
across ten major biological scales.
domain: health
id: primekg
layout: resource_detail
license:
label: MIT License
url: https://opensource.org/licenses/MIT
name: PrimeKG
products:
- category: GraphProduct
description: The full PrimeKG dataset containing disease relationships.
id: primekg.csv
name: PrimeKG Full Dataset
url: https://dataverse.harvard.edu/api/access/datafile/6180620
repository: https://github.com/mims-harvard/PrimeKG
url: https://zitniklab.hms.harvard.edu/projects/PrimeKG
- activity_status: active
category: Resource
contacts:
- category: Individual
email: [email protected]
github: goodb
label: Benjamin M. Good
orcid: 0000-0002-7334-7852
description: Representation of entities in Reactome
domain: biological systems
id: reacto
layout: resource_detail
name: Reactome Entity Ontology (REACTO)
products:
- category: Product
description: OWL release of Reactome Entity Ontology (REACTO)
id: reacto.owl
name: Reactome Entity Ontology (REACTO) OWL release
- category: Product
description: OBO release of Reactome Entity Ontology (REACTO)
id: reacto.obo
name: Reactome Entity Ontology (REACTO) OBO release
repository: http://purl.obolibrary.org/obo/go/extensions/reacto.owl
url: http://purl.obolibrary.org/obo/go/extensions/reacto.owl
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cmungall
label: Christopher J. Mungall
orcid: 0000-0002-6601-2165
description: Reactome from Biopax
domain: biological systems
id: reactome
layout: resource_detail
name: Reactome
products:
- category: Product
description: Conversion from BioPAX, human subset
id: reactome-hs-biopax.db.gz
name: Reactome Human from BioPAX, sqlite
url: https://s3.amazonaws.com/bbop-sqlite/reactome-hs.db.gz
- category: Product
description: Biopragmatics provided conversion, human subset
id: reactome-hs-biopragmatics.obo
name: Reactome Human, Biopragmatics
url: https://w3id.org/biopragmatics/resources/reactome/reactome.obo
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://reactome.org
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: Rhea is an expert-curated knowledgebase of chemical and transport reactions
of biological interest
domain: chemistry and biochemistry
id: rhea
layout: resource_detail
license:
label: CC BY 4.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png
url: https://creativecommons.org/licenses/by/4.0/
name: Rhea, the Annotated Reactions Database
products:
- category: Product
description: OWL release of Rhea, the Annotated Reactions Database
id: rhea.owl
name: Rhea, the Annotated Reactions Database OWL release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/rhea/rhea.owl
- category: Product
description: OBO release of Rhea, the Annotated Reactions Database
id: rhea.obo
name: Rhea, the Annotated Reactions Database OBO release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/rhea/rhea.obo
- category: Product
description: SSSOM release of Rhea, the Annotated Reactions Database
id: rhea.sssom
name: Rhea, the Annotated Reactions Database SSSOM release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/rhea/rhea.sssom
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://biopragmatics.github.io/obo-db-ingest/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: emanuelecavalleri
label: Emanuele Cavalleri
description: An ontology-based KG for representing interactions involving RNA molecules.
domain: organisms
id: rna-kg
layout: resource_detail
name: RNA-KG
repository: https://github.com/AnacletoLAB/RNA-KG
url: RNA-KG.anacleto.di.unimi.it/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Amy Glen
- category: Individual
label: Steven Ramsey
description: A comprehensive knowledge graph from the RTX team.
domain: health
id: rtx-kg2
layout: resource_detail
name: RTX-KG2
repository: https://github.com/RTXteam/RTX-KG2
url: ''
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Chunlei Wu
description: A Translator Knowledge Provider
domain: health
id: service-kp
layout: resource_detail
name: Service KP
repository: ''
url: ''
- activity_status: active
category: DataGraph
contacts:
- category: Individual
email: [email protected]
github: cthoyt
label: Charles Tapley Hoyt
orcid: 0000-0003-4423-4370
description: The Saccharomyces Genome Database (SGD) project collects information
and maintains a database of the molecular biology of the yeast Saccharomyces cerevisiae
domain: biological systems
id: sgd
layout: resource_detail
license:
label: CC BY 4.0
logo: http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png
url: https://creativecommons.org/licenses/by/4.0/
name: Saccharomyces Genome Database
products:
- category: Product
description: OWL release of Saccharomyces Genome Database
id: sgd.owl
name: Saccharomyces Genome Database OWL release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/sgd/sgd.owl
- category: Product
description: OBO release of Saccharomyces Genome Database
id: sgd.obo
name: Saccharomyces Genome Database OBO release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/sgd/sgd.obo
- category: MappingProduct
description: SSSOM release of Saccharomyces Genome Database
id: sgd.sssom
name: Saccharomyces Genome Database SSSOM release
tags:
- biopragmatics
url: https://w3id.org/biopragmatics/resources/sgd/sgd.sssom
repository: https://github.com/biopragmatics/obo-db-ingest
url: https://biopragmatics.github.io/obo-db-ingest/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
github: pnrobinson
label: Peter Robinson
description: A graph of synthetic lethal interactions.
domain: organisms
id: sldb
layout: resource_detail
name: sldb
repository: https://github.com/monarch-initiative/SLDBGen
url: https://kghub.io/sldb/
- activity_status: active
category: KnowledgeGraph
contacts:
- category: Individual
label: Sui Huang, Sergio Baranzini
description: A Knowledge Graph from UCSF covering many aspects of biomedicine.
domain: health
id: spoke
layout: resource_detail
name: SPOKE
repository: ''