generated from mapping-commons/mapping-commons-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.yaml
1409 lines (1409 loc) · 81.7 KB
/
metadata.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
license: "https://github.com/mapping-commons/mapping-commons.github.io/blob/main/docs/original_license_applies.md"
mapping_tool: "https://github.com/mapping-commons/sssom-py"
mapping_set_id: "http://w3id.org/mapping_commons/disease-mappings/onto-icd10"
mapping_date: "2022-02-23"
curie_map:
"3dmet": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc="
"4DN": "https://data.4dnucleome.org/biosources/"
"4dn.biosource": "https://data.4dnucleome.org/biosources/"
"4dn.replicate": "https://data.4dnucleome.org/experiment-set-replicates/"
"AAO": "http://purl.obolibrary.org/obo/AAO_"
"ADW": "http://purl.obolibrary.org/obo/ADW_"
"AEO": "http://purl.obolibrary.org/obo/AEO_"
"AEO_RETIRED": "http://purl.obolibrary.org/obo/AEO_"
"AERO": "http://purl.obolibrary.org/obo/AERO_"
"AGR": "http://ddr.nal.usda.gov/dspace/handle/10113/"
"AGRICOLA_ID": "http://ddr.nal.usda.gov/dspace/handle/10113/"
"AGRO": "http://purl.obolibrary.org/obo/AGRO_"
"AISM": "http://purl.obolibrary.org/obo/AISM_"
"AMPHX": "http://purl.obolibrary.org/obo/AMPHX_"
"APO": "http://purl.obolibrary.org/obo/YPO_"
"APOLLO_SV": "http://purl.obolibrary.org/obo/APOLLO_SV_"
"ARO": "http://purl.obolibrary.org/obo/ARO_"
"ATCC": "https://www.atcc.org/products/"
"ATCC number": "https://www.atcc.org/products/"
"ATCC(dna)": "https://www.atcc.org/products/"
"ATCC(in host)": "https://www.atcc.org/products/"
"ATC_code": "http://www.whocc.no/atc_ddd_index/?code="
"ATO": "http://purl.obolibrary.org/obo/ATO_"
"ATTC": "http://www.whocc.no/atc_ddd_index/?code="
"Alzforum_mut": "https://www.alzforum.org/mutations/"
"ApiDB_PlasmoDB": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id="
"BAO": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_"
"BCGO": "http://purl.obolibrary.org/obo/BCGO_"
"BCO": "http://purl.obolibrary.org/obo/BCO_"
"BFO": "http://purl.obolibrary.org/obo/BFO_"
"BILA": "http://purl.obolibrary.org/obo/BILA_"
"BIOMD": "https://www.ebi.ac.uk/biomodels/"
"BOOTSTREP": "http://purl.obolibrary.org/obo/BOOTSTREP_"
"BSPO": "http://purl.obolibrary.org/obo/BSPO_"
"BTO": "http://purl.obolibrary.org/obo/BTO_"
"BirdBase": "http://birdgenenames.org/cgnc/GeneReport?id="
"CARO": "http://purl.obolibrary.org/obo/CARO_"
"CASID": "https://commonchemistry.cas.org/detail?ref="
"CAS_RN": "https://commonchemistry.cas.org/detail?ref="
"CDAO": "http://purl.obolibrary.org/obo/CDAO_"
"CDNO": "http://purl.obolibrary.org/obo/CDNO_"
"CEPH": "http://purl.obolibrary.org/obo/CEPH_"
"CGNC": "http://birdgenenames.org/cgnc/GeneReport?id="
"CHEBI": "http://purl.obolibrary.org/obo/CHEBI_"
"CHEBIID": "http://purl.obolibrary.org/obo/CHEBI_"
"CHEMINF": "http://purl.obolibrary.org/obo/CHEMINF_"
"CHIRO": "http://purl.obolibrary.org/obo/CHIRO_"
"CHMO": "http://purl.obolibrary.org/obo/CHMO_"
"CID": "https://pubchem.ncbi.nlm.nih.gov/compound/"
"CIDO": "http://purl.obolibrary.org/obo/CIDO_"
"CIO": "http://purl.obolibrary.org/obo/CIO_"
"CL": "http://purl.obolibrary.org/obo/CL_"
"CLAO": "http://purl.obolibrary.org/obo/CLAO_"
"CLO": "http://purl.obolibrary.org/obo/CLO_"
"CLYH": "http://purl.obolibrary.org/obo/CLYH_"
"CMF": "http://purl.obolibrary.org/obo/CMF_"
"CMO": "http://purl.obolibrary.org/obo/CMO_"
"COB": "http://purl.obolibrary.org/obo/COB_"
"COG_Cluster": "https://www.ncbi.nlm.nih.gov/research/cog/cog/"
"COLAO": "http://purl.obolibrary.org/obo/COLAO_"
"CRO": "http://purl.obolibrary.org/obo/CRO_"
"CTENO": "http://purl.obolibrary.org/obo/CTENO_"
"CTO": "http://purl.obolibrary.org/obo/CTO_"
"CTX": "https://europepmc.org/article/CTX/"
"CVCL": "https://web.expasy.org/cellosaurus/"
"CVDO": "http://purl.obolibrary.org/obo/CVDO_"
"ChEBI": "http://purl.obolibrary.org/obo/CHEBI_"
"ChEMBL": "https://www.ebi.ac.uk/chembl/entity/"
"ChEMBL-Cells": "https://www.ebi.ac.uk/chembl/cell_line_report_card/"
"ChEMBL-Targets": "https://www.ebi.ac.uk/chembl/target/inspect/"
"ChEMBL_ID": "https://www.ebi.ac.uk/chembl/entity/"
"ChemIDplus": "https://chem.nlm.nih.gov/chemidplus/rn/"
"ComplexPortal": "https://www.ebi.ac.uk/complexportal/complex/"
"DC_CL": "http://purl.obolibrary.org/obo/DC_CL_"
"DDANAT": "http://purl.obolibrary.org/obo/DDANAT_"
"DDPHENO": "http://purl.obolibrary.org/obo/DDPHENO_"
"DI": "https://www.uniprot.org/diseases/DI-"
"DIDEO": "http://purl.obolibrary.org/obo/DIDEO_"
"DINTO": "http://purl.obolibrary.org/obo/DINTO_"
"DISDRIV": "http://purl.obolibrary.org/obo/DISDRIV_"
"DOID": "http://purl.obolibrary.org/obo/DOID_"
"DPO": "http://purl.obolibrary.org/obo/FBcv_"
"DRON": "http://purl.obolibrary.org/obo/DRON_"
"DRUGBANK_ID": "http://www.drugbank.ca/drugs/"
"DSSTox_CID": "https://pubchem.ncbi.nlm.nih.gov/compound/"
"DSSTox_Generic_SID": "https://pubchem.ncbi.nlm.nih.gov/substance/"
"DUO": "http://purl.obolibrary.org/obo/DUO_"
"DrugBank": "http://www.drugbank.ca/drugs/"
"Drug_Central": "http://drugcentral.org/drugcard/"
"EC": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"EC-CODE": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"ECAO": "http://purl.obolibrary.org/obo/ECAO_"
"ECCODE": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"ECMDB": "http://ecmdb.ca/compounds/"
"ECO": "http://purl.obolibrary.org/obo/ECO_"
"ECOCORE": "http://purl.obolibrary.org/obo/ECOCORE_"
"ECTO": "http://purl.obolibrary.org/obo/ECTO_"
"EC_CODE": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"EFO": "http://www.ebi.ac.uk/efo/EFO_"
"EGID": "https://www.ncbi.nlm.nih.gov/gene/"
"EHDA": "http://purl.obolibrary.org/obo/EHDA_"
"EHDAA": "http://purl.obolibrary.org/obo/EHDAA_"
"EHDAA2": "http://purl.obolibrary.org/obo/EHDAA2_"
"EHDAA2_RETIRED": "http://purl.obolibrary.org/obo/EHDAA2_"
"EMAP": "http://purl.obolibrary.org/obo/EMAP_"
"EMAPA": "http://purl.obolibrary.org/obo/EMAPA_"
"EMAPA_RETIRED": "http://purl.obolibrary.org/obo/EMAPA_"
"ENSEMBL": "https://www.ensembl.org/id/"
"ENVO": "http://purl.obolibrary.org/obo/ENVO_"
"EPIO": "http://purl.obolibrary.org/obo/EPIO_"
"EPO": "http://purl.obolibrary.org/obo/EPO_"
"ERO": "http://purl.obolibrary.org/obo/ERO_"
"EUPATH": "http://purl.obolibrary.org/obo/EUPATH_"
"EV": "http://purl.obolibrary.org/obo/EV_"
"Ensembl": "https://www.ensembl.org/id/"
"EntrezGene": "https://www.ncbi.nlm.nih.gov/gene/"
"Enzo Life Sciences": "https://www.enzolifesciences.com/"
"ExO": "http://purl.obolibrary.org/obo/ExO_"
"FAO": "http://purl.obolibrary.org/obo/FAO_"
"FAO/WHO_standards": "http://www.fao.org/gsfaonline/additives/details.html?id="
"FB": "https://flybase.org/reports/"
"FBSP": "http://purl.obolibrary.org/obo/FBSP_"
"FBbi": "http://purl.obolibrary.org/obo/FBbi_"
"FBbt": "http://purl.obolibrary.org/obo/FBbt_"
"FBbt_root": "http://purl.obolibrary.org/obo/FBbt_"
"FBcv": "http://purl.obolibrary.org/obo/FBcv_"
"FBdv": "http://purl.obolibrary.org/obo/FBdv_"
"FIDEO": "http://purl.obolibrary.org/obo/FIDEO_"
"FIX": "http://purl.obolibrary.org/obo/FIX_"
"FLOPO": "http://purl.obolibrary.org/obo/FLOPO_"
"FLU": "http://purl.obolibrary.org/obo/FLU_"
"FMA": "http://purl.obolibrary.org/obo/FMA_"
"FMAID": "http://purl.obolibrary.org/obo/FMA_"
"FMA_RETIRED": "http://purl.obolibrary.org/obo/FMA_"
"FOBI": "http://purl.obolibrary.org/obo/FOBI_"
"FOODON": "http://purl.obolibrary.org/obo/FOODON_"
"FOVT": "http://purl.obolibrary.org/obo/FOVT_"
"FYPO": "http://purl.obolibrary.org/obo/FYPO_"
"FlyBase": "https://flybase.org/reports/"
"GAZ": "http://purl.obolibrary.org/obo/GAZ_"
"GECKO": "http://purl.obolibrary.org/obo/GECKO_"
"GENEPIO": "http://purl.obolibrary.org/obo/GENEPIO_"
"GENO": "http://purl.obolibrary.org/obo/GENO_"
"GEOGEO": "http://purl.obolibrary.org/obo/GEO_"
"GFAM": "https://www.genenames.org/cgi-bin/genefamilies/set/"
"GNO": "http://purl.obolibrary.org/obo/GNO_"
"GO": "http://purl.obolibrary.org/obo/GO_"
"GRO": "http://purl.obolibrary.org/obo/GRO_"
"GR_GENE": "http://www.gramene.org/db/genes/search_gene?acc="
"GR_PROTEIN": "http://www.gramene.org/db/protein/protein_search?protein_id="
"GR_QTL": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id="
"GSSO": "http://purl.obolibrary.org/obo/GSSO_"
"HABRONATTUS": "http://purl.obolibrary.org/obo/HABRONATTUS_"
"HANCESTRO": "http://purl.obolibrary.org/obo/HANCESTRO_"
"HAO": "http://purl.obolibrary.org/obo/HAO_"
"HDAA2": "http://purl.obolibrary.org/obo/EHDAA2_"
"HGNC_GROUP": "https://www.genenames.org/cgi-bin/genefamilies/set/"
"HMDB": "http://www.hmdb.ca/metabolites/"
"HMS-LINCS": "https://lincs.hms.harvard.edu/db/sm/"
"HOM": "http://purl.obolibrary.org/obo/HOM_"
"HP": "http://purl.obolibrary.org/obo/HP_"
"HSO": "http://purl.obolibrary.org/obo/HSO_"
"HTN": "http://purl.obolibrary.org/obo/HTN_"
"HsapDv": "http://purl.obolibrary.org/obo/HsapDv_"
"IAO": "http://purl.obolibrary.org/obo/IAO_"
"ICD": "http://apps.who.int/classifications/icd10/browse/2010/en#/"
"ICD-10": "http://apps.who.int/classifications/icd10/browse/2010/en#/"
"ICD10": "http://apps.who.int/classifications/icd10/browse/2010/en#/"
"ICD10CM": "http://apps.who.int/classifications/icd10/browse/2010/en#/"
"ICEO": "http://purl.obolibrary.org/obo/ICEO_"
"ICO": "http://purl.obolibrary.org/obo/ICO_"
"IDO": "http://purl.obolibrary.org/obo/IDO_"
"IDOMAL": "http://purl.obolibrary.org/obo/IDOMAL_"
"IEV": "http://purl.obolibrary.org/obo/IEV_"
"ILX": "https://scicrunch.org/scicrunch/interlex/view/ilx_"
"IMR": "http://purl.obolibrary.org/obo/IMR_"
"INN_ID": "https://mednet-communities.net/inn/db/ViewINN.aspx?i="
"INO": "http://purl.obolibrary.org/obo/INO_"
"IP": "http://purl.obolibrary.org/obo/IPR_"
"IPD-IMGT/HLA": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?"
"IPR": "http://purl.obolibrary.org/obo/IPR_"
"ISBN-10": "http://isbndb.com/search-all.html?kw="
"ISBN-13": "http://isbndb.com/search-all.html?kw="
"IUPHAR_GPCR": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId="
"IUPHAR_LIGAND": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId="
"IUPHAR_LIGAND_ID": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId="
"IUPHARfam": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId="
"IUPHARobj": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId="
"InterPro": "http://purl.obolibrary.org/obo/IPR_"
"JGI Phytozome": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:"
"KEGG": "http://www.kegg.jp/entry/"
"KEGG COMPOUND": "https://www.kegg.jp/entry/"
"KEGG DRUG": "https://www.kegg.jp/entry/"
"KEGG-path": "https://www.kegg.jp/entry/"
"KEGG.COMPOUND": "https://www.kegg.jp/entry/"
"KEGG.DRUG": "https://www.kegg.jp/entry/"
"KEGG_PATHWAY": "https://www.kegg.jp/entry/"
"KEGG_REACTION": "https://www.kegg.jp/entry/"
"KISAO": "http://purl.obolibrary.org/obo/KISAO_"
"LABO": "http://purl.obolibrary.org/obo/LABO_"
"LEPAO": "http://purl.obolibrary.org/obo/LEPAO_"
"LINCS_LDP": "http://lincsportal.ccs.miami.edu/cells/#/view/"
"LIPID MAPS": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID="
"LIPID_MAPS_class": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID="
"LIPID_MAPS_instance": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID="
"LIPRO": "http://purl.obolibrary.org/obo/LIPRO_"
"LNC": "https://loinc.org/"
"LNCRNADB": "https://rnacentral.org/rna/"
"LOGGERHEAD": "http://purl.obolibrary.org/obo/LOGGERHEAD_"
"MA": "http://purl.obolibrary.org/obo/MA_"
"MAMO": "http://purl.obolibrary.org/obo/MAMO_"
"MAO": "http://purl.obolibrary.org/obo/MAO_"
"MAT": "http://purl.obolibrary.org/obo/MAT_"
"MAXO": "http://purl.obolibrary.org/obo/MAXO_"
"MCO": "http://purl.obolibrary.org/obo/MCO_"
"MEDLINE": "https://www.ncbi.nlm.nih.gov/pubmed/"
"MEDRA": "http://purl.bioontology.org/ontology/MEDDRA/"
"MESH": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESHA": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESHC": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESHCS": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESHD": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESHPP": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESH_DESCRIPTOR_UI": "https://meshb.nlm.nih.gov/record/ui?ui="
"MESH_SUPPLEMENTAL_RECORD_UI": "https://meshb.nlm.nih.gov/record/ui?ui="
"MF": "http://purl.obolibrary.org/obo/MF_"
"MFMO": "http://purl.obolibrary.org/obo/MFMO_"
"MFO": "http://purl.obolibrary.org/obo/MFO_"
"MFOEM": "http://purl.obolibrary.org/obo/MFOEM_"
"MFOMD": "http://purl.obolibrary.org/obo/MFOMD_"
"MGD": "http://www.informatics.jax.org/accession/MGI:"
"MGI": "http://www.informatics.jax.org/accession/MGI:"
"MI": "http://purl.obolibrary.org/obo/MI_"
"MIAPA": "http://purl.obolibrary.org/obo/MIAPA_"
"MICRO": "http://purl.obolibrary.org/obo/MICRO_"
"MIMPS": "https://omim.org/phenotypicSeries/"
"MIRBASEM": "http://mirbase.org/cgi-bin/mature.pl?mature_acc="
"MIRBASE_FAMILY": "http://www.mirbase.org/cgi-bin/mirna_summary.pl?fam="
"MIRNAO": "http://purl.obolibrary.org/obo/MIRNAO_"
"MIRO": "http://purl.obolibrary.org/obo/MIRO_"
"MMO": "http://purl.obolibrary.org/obo/MMO_"
"MO": "http://purl.obolibrary.org/obo/MO_"
"MOD": "http://purl.obolibrary.org/obo/MOD_"
"MONDO": "http://purl.obolibrary.org/obo/MONDO_"
"MOP": "http://purl.obolibrary.org/obo/MOP_"
"MP": "http://purl.obolibrary.org/obo/MP_"
"MPATH": "http://purl.obolibrary.org/obo/MPATH_"
"MPIO": "http://purl.obolibrary.org/obo/MPIO_"
"MRO": "http://purl.obolibrary.org/obo/MRO_"
"MS": "http://purl.obolibrary.org/obo/MS_"
"MSH": "https://meshb.nlm.nih.gov/record/ui?ui="
"MaizeGDB": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id="
"MeDRA": "http://purl.bioontology.org/ontology/MEDDRA/"
"MedDRA": "http://purl.bioontology.org/ontology/MEDDRA/"
"Medical Dictionary for Regulatory Activities": "http://purl.bioontology.org/ontology/MEDDRA/"
"MetaCyc": "https://metacyc.org/compound?orgid=META&id="
"MmusDv": "http://purl.obolibrary.org/obo/MmusDv_"
"NBO": "http://purl.obolibrary.org/obo/NBO_"
"NCBIGene": "https://www.ncbi.nlm.nih.gov/gene/"
"NCBIProtein": "https://www.ncbi.nlm.nih.gov/protein/"
"NCBITaxon": "http://purl.obolibrary.org/obo/NCBITaxon_"
"NCBI_Taxon_ID": "http://purl.obolibrary.org/obo/NCBITaxon_"
"NCBI_taxid": "http://purl.obolibrary.org/obo/NCBITaxon_"
"NCI": "http://purl.obolibrary.org/obo/NCIT_"
"NCI2004_11_17": "http://purl.obolibrary.org/obo/NCIT_"
"NCIT": "http://purl.obolibrary.org/obo/NCIT_"
"NCIT_Thesaurus": "http://purl.obolibrary.org/obo/NCIT_"
"NCITm": "http://purl.obolibrary.org/obo/NCIT_"
"NCITt": "http://purl.obolibrary.org/obo/NCIT_"
"NCI_Thesaurus": "http://purl.obolibrary.org/obo/NCIT_"
"NCIt": "http://purl.obolibrary.org/obo/NCIT_"
"NCRO": "http://purl.obolibrary.org/obo/NCRO_"
"NIF_CELL": "http://purl.obolibrary.org/obo/NIF_CELL_"
"NIF_DYSFUNCTION": "http://purl.obolibrary.org/obo/NIF_DYSFUNCTION_"
"NIF_GROSSANATOMY": "http://purl.obolibrary.org/obo/NIF_GROSSANATOMY_"
"NMR": "http://purl.obolibrary.org/obo/NMR_"
"NOMEN": "http://purl.obolibrary.org/obo/NOMEN_"
"NXP": "https://www.nextprot.org/db/entry/"
"NXPFA": "https://www.nextprot.org/term/FA-"
"OAE": "http://purl.obolibrary.org/obo/OAE_"
"OARCS": "http://purl.obolibrary.org/obo/OARCS_"
"OBA": "http://purl.obolibrary.org/obo/OBA_"
"OBCS": "http://purl.obolibrary.org/obo/OBCS_"
"OBI": "http://purl.obolibrary.org/obo/OBI_"
"OBIB": "http://purl.obolibrary.org/obo/OBIB_"
"OGG": "http://purl.obolibrary.org/obo/OGG_"
"OGI": "http://purl.obolibrary.org/obo/OGI_"
"OGI.owl": "http://purl.obolibrary.org/obo/OGI_"
"OGMS": "http://purl.obolibrary.org/obo/OGMS_"
"OGSF": "http://purl.obolibrary.org/obo/OGSF_"
"OHD": "http://purl.obolibrary.org/obo/OHD_"
"OHMI": "http://purl.obolibrary.org/obo/OHMI_"
"OHPI": "http://purl.obolibrary.org/obo/OHPI_"
"OMIABIS": "http://purl.obolibrary.org/obo/OMIABIS_"
"OMIM": "https://omim.org/entry/"
"OMIMPS": "https://omim.org/phenotypicSeries/"
"OMIT": "http://purl.obolibrary.org/obo/OMIT_"
"OMO": "http://purl.obolibrary.org/obo/OMO_"
"OMP": "http://purl.obolibrary.org/obo/OMP_"
"OMRSE": "http://purl.obolibrary.org/obo/OMRSE_"
"ONE": "http://purl.obolibrary.org/obo/ONE_"
"ONS": "http://purl.obolibrary.org/obo/ONS_"
"ONTOAVIDA": "http://purl.obolibrary.org/obo/ONTOAVIDA_"
"ONTONEO": "http://purl.obolibrary.org/obo/ONTONEO_"
"OOSTT": "http://purl.obolibrary.org/obo/OOSTT_"
"OPL": "http://purl.obolibrary.org/obo/OPL_"
"OPMI": "http://purl.obolibrary.org/obo/OPMI_"
"ORCID": "http://orcid.org/"
"ORCiD": "https://orcid.org/"
"ORNASEQ": "http://purl.obolibrary.org/obo/ORNASEQ_"
"OVAE": "http://purl.obolibrary.org/obo/OVAE_"
"OlatDv": "http://purl.obolibrary.org/obo/OlatDv_"
"PAO": "http://purl.obolibrary.org/obo/PAO_"
"PATO": "http://purl.obolibrary.org/obo/PATO_"
"PCL": "http://purl.obolibrary.org/obo/PCL_"
"PCO": "http://purl.obolibrary.org/obo/PCO_"
"PDB_CHEM_ID": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId="
"PDRO": "http://purl.obolibrary.org/obo/PDRO_"
"PD_ST": "http://purl.obolibrary.org/obo/PD_ST_"
"PECO": "http://purl.obolibrary.org/obo/EO_"
"PF": "https://pfam.xfam.org/family/"
"PGDSO": "http://purl.obolibrary.org/obo/PGDSO_"
"PHIPO": "http://purl.obolibrary.org/obo/PHIPO_"
"PLANA": "http://purl.obolibrary.org/obo/PLANA_"
"PLANP": "http://purl.obolibrary.org/obo/PLANP_"
"PLO": "http://purl.obolibrary.org/obo/PLO_"
"PMC": "http://europepmc.org/articles/"
"PMCID": "http://europepmc.org/articles/"
"PMID": "https://www.ncbi.nlm.nih.gov/pubmed/"
"PO": "http://purl.obolibrary.org/obo/PO_"
"PORO": "http://purl.obolibrary.org/obo/PORO_"
"PPO": "http://purl.obolibrary.org/obo/PPO_"
"PR": "http://purl.obolibrary.org/obo/PR_"
"PRO": "http://purl.obolibrary.org/obo/PR_"
"PROPREO": "http://purl.obolibrary.org/obo/PROPREO_"
"PS": "https://omim.org/phenotypicSeries/"
"PSDO": "http://purl.obolibrary.org/obo/PSDO_"
"PSI-MI": "http://purl.obolibrary.org/obo/MI_"
"PSO": "http://purl.obolibrary.org/obo/PSO_"
"PUBCHEM_CID": "https://pubchem.ncbi.nlm.nih.gov/compound/"
"PW": "http://purl.obolibrary.org/obo/PW_"
"PdumDv": "http://purl.obolibrary.org/obo/PdumDv_"
"PomBase": "http://www.pombase.org/spombe/result/"
"Progenetix": "https://progenetix.org/services/ids/"
"PubChem_Compound_CID": "https://pubchem.ncbi.nlm.nih.gov/compound/"
"Pubchem": "https://pubchem.ncbi.nlm.nih.gov/compound/"
"RBO": "http://purl.obolibrary.org/obo/RBO_"
"RE": "https://reactome.org/content/detail/"
"REACT": "https://reactome.org/content/detail/"
"REFSEQ_PROT": "https://www.ncbi.nlm.nih.gov/protein/"
"RESID": "http://purl.obolibrary.org/obo/RESID_"
"RETIRED_EHDAA2": "http://purl.obolibrary.org/obo/EHDAA2_"
"REX": "http://purl.obolibrary.org/obo/REX_"
"RGD": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id="
"RHEA": "https://www.rhea-db.org/rhea/"
"RNAO": "http://purl.obolibrary.org/obo/RNAO_"
"RO": "http://purl.obolibrary.org/obo/RO_"
"RO_proposed_relation": "http://purl.obolibrary.org/obo/RO_"
"RS": "http://purl.obolibrary.org/obo/RS_"
"RXCUI": "https://mor.nlm.nih.gov/RxNav/search?searchBy=RXCUI&searchTerm="
"RXNO": "http://purl.obolibrary.org/obo/RXNO_"
"SABIO-RK": "http://sabiork.h-its.org/reacdetails.jsp?reactid="
"SAO": "http://purl.obolibrary.org/obo/SAO_"
"SBO": "http://purl.obolibrary.org/obo/SBO_"
"SCDO": "http://purl.obolibrary.org/obo/SCDO_"
"SCTID": "http://www.snomedbrowser.com/Codes/Details/"
"SCTID_2010_1_31": "http://www.snomedbrowser.com/Codes/Details/"
"SECONDARY_CAS_RN": "https://commonchemistry.cas.org/detail?ref="
"SEP": "http://purl.obolibrary.org/obo/SEP_"
"SEPIO": "http://purl.obolibrary.org/obo/SEPIO_"
"SIBO": "http://purl.obolibrary.org/obo/SIBO_"
"SIGNOR": "https://signor.uniroma2.it/relation_result.php?id="
"SMID-DB": "https://smid-db.org/smid/"
"SMP": "https://smpdb.ca/view/"
"SNOMECT": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMED": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCTCT": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCTCT_2018_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCTCT_2019_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_2010_1_31": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2018_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2018_09_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2019_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2019_09_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2020_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2020_09_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2021_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMEDCT_US_2021_09_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMED_CT": "http://www.snomedbrowser.com/Codes/Details/"
"SNOMED_CT_US_2018_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SNOWMEDCT": "http://www.snomedbrowser.com/Codes/Details/"
"SNOWMEDCT_US": "http://www.snomedbrowser.com/Codes/Details/"
"SNOWMEDCT_US_2018_03_01": "http://www.snomedbrowser.com/Codes/Details/"
"SO": "http://purl.obolibrary.org/obo/SO_"
"SOPHARM": "http://purl.obolibrary.org/obo/SOPHARM_"
"SPD": "http://purl.obolibrary.org/obo/SPD_"
"STATO": "http://purl.obolibrary.org/obo/STATO_"
"SWO": "http://purl.obolibrary.org/obo/SWO_"
"SYMP": "http://purl.obolibrary.org/obo/SYMP_"
"SwissProt": "http://purl.uniprot.org/uniprot/"
"TADS": "http://purl.obolibrary.org/obo/TADS_"
"TAHE": "http://purl.obolibrary.org/obo/TAHE_"
"TAHH": "http://purl.obolibrary.org/obo/TAHH_"
"TAO": "http://purl.obolibrary.org/obo/TAO_"
"TAO_RETIRED": "http://purl.obolibrary.org/obo/TAO_"
"TAX": "http://purl.obolibrary.org/obo/NCBITaxon_"
"TAXRANK": "http://purl.obolibrary.org/obo/TAXRANK_"
"TC": "http://www.tcdb.org/search/result.php?tc="
"TDR": "http://repository.topdownproteomics.org/proteoforms/"
"TGMA": "http://purl.obolibrary.org/obo/TGMA_"
"TO": "http://purl.obolibrary.org/obo/TO_"
"TRANS": "http://purl.obolibrary.org/obo/TRANS_"
"TTO": "http://purl.obolibrary.org/obo/TTO_"
"TXPO": "http://purl.obolibrary.org/obo/TXPO_"
"TaxonomyID": "http://purl.obolibrary.org/obo/NCBITaxon_"
"TubercuList": "http://tuberculist.epfl.ch/quicksearch.php?gene+name="
"UBERON": "http://purl.obolibrary.org/obo/UBERON_"
"UM-BBD_compID": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=c&compID="
"UM-BBD_enzymeID": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID="
"UM-BBD_reactionID": "http://eawag-bbd.ethz.ch/servlets/pageservlet?ptype=r&reacID="
"UM-BBD_ruleID": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule="
"UMLS": "http://linkedlifedata.com/resource/umls/id/"
"UMLS CUI": "http://linkedlifedata.com/resource/umls/id/"
"UMLS_CUI": "http://linkedlifedata.com/resource/umls/id/"
"UO": "http://purl.obolibrary.org/obo/UO_"
"UP": "http://purl.uniprot.org/uniprot/"
"UPA": "http://purl.obolibrary.org/obo/UPA_"
"UPHENO": "http://purl.obolibrary.org/obo/UPHENO_"
"UPISO": "http://www.uniprot.org/uniprot/"
"UPLOC": "https://www.uniprot.org/locations/SL-"
"UPPRO": "http://purl.uniprot.org/annotation/"
"UPa": "http://purl.obolibrary.org/obo/UPA_"
"Uber-anatomy ontology": "http://purl.obolibrary.org/obo/UBERON_"
"Uberon": "http://purl.obolibrary.org/obo/UBERON_"
"UniProt": "http://purl.uniprot.org/uniprot/"
"UniProtKB": "http://purl.uniprot.org/uniprot/"
"UniProtKB-KW": "https://www.uniprot.org/keywords/"
"UniProtKB-SubCell": "https://www.uniprot.org/locations/SL-"
"VHOG": "http://purl.obolibrary.org/obo/VHOG_"
"VHOG_RETIRED": "http://purl.obolibrary.org/obo/VHOG_"
"VO": "http://purl.obolibrary.org/obo/VO_"
"VSAO": "http://purl.obolibrary.org/obo/VSAO_"
"VSAO_RETIRED": "http://purl.obolibrary.org/obo/VSAO_"
"VT": "http://purl.obolibrary.org/obo/VT_"
"VTO": "http://purl.obolibrary.org/obo/VTO_"
"VariO": "http://purl.obolibrary.org/obo/VariO_"
"WBPhenotype": "http://purl.obolibrary.org/obo/WBPhenotype_"
"WB_REF": "https://www.wormbase.org/get?name="
"WBbt": "http://purl.obolibrary.org/obo/WBbt_"
"WBls": "http://purl.obolibrary.org/obo/WBls_"
"WD_Entity": "http://www.wikidata.org/entity/"
"WWF": "https://www.worldwildlife.org/ecoregions/"
"WormBase": "https://www.wormbase.org/get?name="
"XAO": "http://purl.obolibrary.org/obo/XAO_"
"XCO": "http://purl.obolibrary.org/obo/XCO_"
"XLMOD": "http://purl.obolibrary.org/obo/XLMOD_"
"XPO": "http://purl.obolibrary.org/obo/XPO_"
"YPO": "http://purl.obolibrary.org/obo/YPO_"
"ZEA": "http://purl.obolibrary.org/obo/ZEA_"
"ZECO": "http://purl.obolibrary.org/obo/ZECO_"
"ZFA": "http://purl.obolibrary.org/obo/ZFA_"
"ZFA_RETIRED": "http://purl.obolibrary.org/obo/ZFA_"
"ZFIN": "http://zfin.org/"
"ZFS": "http://purl.obolibrary.org/obo/ZFS_"
"ZP": "http://purl.obolibrary.org/obo/ZP_"
"abcd": "https://web.expasy.org/abcd/ABCD_"
"abm": "https://www.abmgood.com/catalogsearch/result/?cat=&q="
"ac": "http://www.w3.org/ns/activitystreams#"
"aceview.worm": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l="
"addexbio": "https://www.addexbio.com/productdetail?pid="
"addgene": "http://addgene.org/"
"affy.probeset": "https://www.affymetrix.com/LinkServlet?probeset="
"aftol.taxonomy": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id="
"agricola": "http://ddr.nal.usda.gov/dspace/handle/10113/"
"agrovoc": "http://aims.fao.org/aos/agrovoc/c_"
"allergome": "http://www.allergome.org/script/dettaglio.php?id_molecule="
"alzforum.mutation": "https://www.alzforum.org/mutations/"
"amoebadb": "https://amoebadb.org/amoeba/app/record/gene/"
"antibodyregistry": "http://antibodyregistry.org/AB_"
"antweb": "http://www.antweb.org/specimen.do?name="
"aop": "https://aopwiki.org/aops/"
"aop.events": "https://aopwiki.org/events/"
"aop.relationships": "https://aopwiki.org/relationships/"
"aop.stressor": "https://aopwiki.org/stressors/"
"apaonto": "http://ontology.apa.org/apaonto/termsonlyOUT%20(5).owl#"
"apd": "http://aps.unmc.edu/AP/database/query_output.php?ID="
"aphidbase.transcript": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID="
"apid.interactions": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein="
"arachnoserver": "http://www.arachnoserver.org/toxincard.html?id="
"araport": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name="
"ardb": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term="
"ark": "http://n2t.net/ark:"
"arrayexpress": "https://www.ebi.ac.uk/arrayexpress/experiments/"
"arrayexpress.platform": "https://www.ebi.ac.uk/arrayexpress/arrays/"
"arraymap": "https://www.arraymap.org/pgx:"
"arxiv": "https://arxiv.org/abs/"
"asap": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID="
"ascl": "http://ascl.net/"
"asin": "https://amzn.com/"
"aspgd.locus": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid="
"aspgd.protein": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid="
"assembly": "https://www.ncbi.nlm.nih.gov/assembly/"
"atc": "http://www.whocc.no/atc_ddd_index/?code="
"atcc": "https://www.atcc.org/products/"
"atcvet": "http://www.whocc.no/atcvet/atcvet_index/?code="
"atfdb.family": "http://www.bioguo.org/AnimalTFDB/family.php?fam="
"autdb": "http://autism.mindspec.org/GeneDetail/"
"bacdive": "https://bacdive.dsmz.de/strain/"
"bacmap.biog": "http://bacmap.wishartlab.com/organisms/"
"bactibase": "http://bactibase.hammamilab.org/"
"bao": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_"
"bbkg": "https://bbp.epfl.ch/nexus/web/studios/public/"
"bbtp": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:"
"bcrc": "https://catalog.bcrc.firdi.org.tw/BcrcContent?bid="
"bcrj": "http://bcrj.org.br/celula/"
"bdgp.est": "https://www.ncbi.nlm.nih.gov/nucest/"
"bdgp.insertion": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line="
"bdsc": "https://bdsc.indiana.edu/stocks/"
"beetlebase": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name="
"begdb": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id="
"bgee.family": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id="
"bgee.gene": "https://bgee.org/?page=gene&gene_id="
"bgee.organ": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_children=on&organ_id="
"bgee.stage": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_children=on&stage_id="
"bigg.compartment": "http://bigg.ucsd.edu/compartments/"
"bigg.metabolite": "http://bigg.ucsd.edu/models/universal/metabolites/"
"bigg.model": "http://bigg.ucsd.edu/models/"
"bigg.reaction": "http://bigg.ucsd.edu/models/universal/reactions/"
"bindingdb": "http://www.bindingdb.org/compact/"
"biocarta.pathway": "https://cgap.nci.nih.gov/Pathways/BioCarta/"
"biocatalogue.service": "https://www.biocatalogue.org/services/"
"biocyc": "http://biocyc.org/getid?id="
"biogrid": "http://thebiogrid.org/"
"biogrid.interaction": "https://thebiogrid.org/interaction/"
"biolegend": "https://www.biolegend.com/Default.aspx?ID=6664&productid="
"biolink": "https://w3id.org/biolink/vocab/"
"biominder": "https://datalab.rwth-aachen.de/MINDER/resource/"
"biomodels.db": "https://www.ebi.ac.uk/biomodels/"
"biomodels.teddy": "https://www.ebi.ac.uk/ols/ontologies/teddy/terms?iri=http://identifiers.org/teddy/TEDDY_"
"biomodels.vocabulary": "http://biomodels.net/rdf/vocabulary.rdf#"
"bionumbers": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id="
"bioportal": "http://bioportal.bioontology.org/ontologies/"
"bioproject": "https://www.ncbi.nlm.nih.gov/bioproject/?term="
"bioregistry": "https://bioregistry.io/registry/"
"bioregistry.collection": "https://bioregistry.io/collection/"
"bioregistry.registry": "https://bioregistry.io/metaregistry/"
"bioregistry.schema": "https://bioregistry.io/schema/#"
"biorxiv": "https://www.biorxiv.org/content/10.1101/"
"biosample": "https://www.ebi.ac.uk/biosamples/sample/"
"biosamples": "https://www.ebi.ac.uk/biosamples/sample/"
"biosimulations": "https://biosimulations.org/projects/"
"biosimulators": "https://biosimulators.org/simulators/"
"biostudies": "https://www.ebi.ac.uk/biostudies/studies/"
"biosystems": "https://www.ncbi.nlm.nih.gov/biosystems/"
"biotools": "https://bio.tools/"
"biozil": "https://www.biozol.de/en/product/"
"bitbucket": "https://bitbucket.org/"
"bitterdb.cpd": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id="
"bitterdb.rec": "http://bitterdb.agri.huji.ac.il/Receptor.php?id="
"bko": "http://www.sbgnbricks.org/BKO/full/entry/all/BKO:"
"bmrb.restraint": "https://restraintsgrid.bmrb.io/NRG/MRGridServlet?block_text_type=2-parsed&db_username=wattos1&file_detail=2-parsed&format=n%2Fa&program=STAR&request_type=block&subtype=full&type=entry&mrblock_id="
"bold.taxonomy": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid="
"brenda": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno="
"broad": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp="
"cameo": "https://www.cameo3d.org/sp/targets/target/"
"caps": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl="
"cas": "https://commonchemistry.cas.org/detail?ref="
"cas_id": "https://commonchemistry.cas.org/detail?ref="
"cath": "http://www.cathdb.info/cathnode/"
"cath.domain": "http://www.cathdb.info/domain/"
"cath.superfamily": "http://www.cathdb.info/cathnode/"
"cattleqtldb": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:"
"cba": "https://europepmc.org/article/CBA/"
"cbioportal": "https://www.cbioportal.org/study/summary?id="
"ccds": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA="
"ccle": "https://www.cbioportal.org/patient?studyId=ccle_broad_2019&caseId="
"ccle.cell": "https://www.cbioportal.org/patient?studyId=ccle_broad_2019&caseId="
"cco": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:"
"ccrid": "http://www.cellresource.cn/cellsearch.aspx?sc=1&where="
"cdd": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid="
"cdpd": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code="
"cell_biolabs": "https://www.cellbiolabs.com/search?keywords="
"cell_model_passport": "https://cellmodelpassports.sanger.ac.uk/passports/"
"cellimage": "http://cellimagelibrary.org/images/"
"cellopub": "https://web.expasy.org/cellosaurus/cellopub/"
"cellosaurus": "https://web.expasy.org/cellosaurus/"
"cellosaurus.resource": "https://bioregistry.io/metaregistry/cellosaurus/"
"cellrepo": "https://cellrepo.ico2s.org/repositories/"
"cgd": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid="
"cgnc": "http://birdgenenames.org/cgnc/GeneReport?id="
"cgsc": "http://cgsc.biology.yale.edu/Site.php?ID="
"charprot": "http://www.jcvi.org/charprotdb/index.cgi/view/"
"chembl": "https://www.ebi.ac.uk/chembl/entity/"
"chembl.cell": "https://www.ebi.ac.uk/chembl/cell_line_report_card/"
"chembl.compound": "https://www.ebi.ac.uk/chembl/compound/inspect/"
"chembl.target": "https://www.ebi.ac.uk/chembl/target/inspect/"
"chemdb": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id="
"chemidplus": "https://chem.nlm.nih.gov/chemidplus/rn/"
"chickenqtldb": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:"
"citexplore": "https://europepmc.org/article/CTX/"
"civic.aid": "https://civicdb.org/links/assertions/"
"civic.eid": "https://civicdb.org/links/evidence/"
"classyfire": "http://classyfire.wishartlab.com/tax_nodes/"
"clingene": "https://reg.clinicalgenome.org/redmine/projects/registry/genboree_registry/by_caid?caid="
"clinicaltrials": "https://clinicaltrials.gov/ct2/show/"
"clinvar": "https://www.ncbi.nlm.nih.gov/clinvar/variation/"
"clinvar.record": "http://www.ncbi.nlm.nih.gov/clinvar/"
"clinvar.submission": "http://www.ncbi.nlm.nih.gov/clinvar?term="
"clinvar.submitter": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/"
"co_320": "https://www.cropontology.org/rdf/CO_320:"
"co_321": "https://www.cropontology.org/rdf/CO_321:"
"co_322": "https://www.cropontology.org/rdf/CO_322:"
"co_323": "https://www.cropontology.org/rdf/CO_323:"
"co_324": "https://www.cropontology.org/rdf/CO_324:"
"co_325": "https://www.cropontology.org/rdf/CO_325:"
"co_327": "https://www.cropontology.org/rdf/CO_327:"
"co_330": "https://www.cropontology.org/rdf/CO_330:"
"co_331": "https://www.cropontology.org/rdf/CO_331:"
"co_333": "https://www.cropontology.org/rdf/CO_333:"
"co_334": "https://www.cropontology.org/rdf/CO_334:"
"co_335": "https://www.cropontology.org/rdf/CO_335:"
"co_336": "https://www.cropontology.org/rdf/CO_336:"
"co_337": "https://www.cropontology.org/rdf/CO_337:"
"co_338": "https://www.cropontology.org/rdf/CO_338:"
"co_339": "https://www.cropontology.org/rdf/CO_339:"
"co_340": "https://www.cropontology.org/rdf/CO_340:"
"co_341": "https://www.cropontology.org/rdf/CO_341:"
"co_343": "https://www.cropontology.org/rdf/CO_343:"
"co_345": "https://www.cropontology.org/rdf/CO_345:"
"co_346": "https://www.cropontology.org/rdf/CO_346:"
"co_347": "https://www.cropontology.org/rdf/CO_347:"
"co_348": "https://www.cropontology.org/rdf/CO_348:"
"co_350": "https://www.cropontology.org/rdf/CO_350:"
"co_356": "https://www.cropontology.org/rdf/CO_356:"
"co_357": "https://www.cropontology.org/rdf/CO_357:"
"co_358": "https://www.cropontology.org/rdf/CO_358:"
"co_359": "https://www.cropontology.org/rdf/CO_359:"
"co_360": "https://www.cropontology.org/rdf/CO_360:"
"co_365": "https://www.cropontology.org/rdf/CO_365:"
"co_366": "https://www.cropontology.org/rdf/CO_366:"
"coconut": "https://coconut.naturalproducts.net/compound/coconut_id/"
"cog": "https://www.ncbi.nlm.nih.gov/research/cog/cog/"
"cog.category": "https://www.ncbi.nlm.nih.gov/research/cog/cogcategory/"
"cog.pathway": "https://www.ncbi.nlm.nih.gov/research/cog/pathway/"
"colonatlas": "http://www.coloncanceratlas.org/search_cell_line?cell_line="
"combine.specifications": "https://co.mbine.org/specifications/"
"come": "https://www.flymine.org/come/entry?gn="
"complexportal": "https://www.ebi.ac.uk/complexportal/complex/"
"comptox": "https://comptox.epa.gov/dashboard/"
"compulyeast": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac="
"conoserver": "http://www.conoserver.org/?page=card&table=protein&id="
"conso": "https://pharmacome.github.io/conso/"
"coriell": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref="
"corrdb": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:"
"corum": "https://mips.helmholtz-muenchen.de/corum/?id="
"cosmic": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln="
"cosmic.cell": "https://cancer.sanger.ac.uk/cell_lines/sample/overview?id="
"covid19": "https://covid19.sfb.uit.no/api/records/"
"cpc": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC="
"crisprdb": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]="
"cryptodb": "https://cryptodb.org/cryptodb/app/record/gene/"
"csa": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID="
"ctd.chemical": "http://ctdbase.org/detail.go?type=chem&acc="
"ctd.disease": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc="
"ctd.gene": "http://ctdbase.org/detail.go?type=gene&acc="
"dailymed": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid="
"dandi": "https://dandiarchive.org/dandiset/"
"darc": "http://darcsite.genzentrum.lmu.de/darc/view.php?id="
"dashr": "http://lisanwanglab.org/DASHR/entry/"
"datanator.gene": "https://www.datanator.info/gene/"
"datanator.metabolite": "https://www.datanator.info/metabolite/"
"datanator.reaction": "https://datanator.info/reaction/"
"datf": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did="
"dbest": "https://www.ncbi.nlm.nih.gov/nucest/"
"dbg2introns": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name="
"dbgap": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id="
"dbprobe": "https://www.ncbi.nlm.nih.gov/probe/?term="
"dbsnp": "https://www.ncbi.nlm.nih.gov/snp/"
"dc": "http://purl.org/dc/terms/"
"dc.terms": "http://purl.org/dc/terms/"
"dcat": "http://www.w3.org/ns/dcat#"
"dcterms": "http://purl.org/dc/terms/"
"dctypes": "http://purl.org/dc/dcmitype/"
"degradome": "http://degradome.uniovi.es/cgi-bin/protease/"
"depmap": "https://depmap.org/portal/cell_line/"
"depod": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene="
"dev.ga4ghdos": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/"
"dg.4503": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/"
"dg.4dfc": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/"
"dg.6vts": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/"
"dg.anv0": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/"
"dg.f82a1a": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/"
"dg5b0d": "https://data.bloodpac.org/ga4gh/drs/v1/objects/"
"dgrc": "https://dgrc.bio.indiana.edu/product/View?product="
"dictyBase": "http://dictybase.org/gene/"
"dictybase": "http://dictybase.org/gene/"
"dictybase.est": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id="
"dictybase.gene": "http://dictybase.org/gene/"
"did": "https://uniresolver.io/#did:"
"dip": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID="
"disprot": "https://disprot.org/"
"disprot.region": "https://www.disprot.org/"
"dlxb": "https://doulix.com/biomodules/"
"dlxc": "https://doulix.com/constructs/"
"do": "http://purl.obolibrary.org/obo/DOID_"
"doi": "http://dx.doi.org/"
"dommino": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/"
"door": "http://csbl.bmb.uga.edu/DOOR/operon.php?id="
"doqcs.model": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an="
"doqcs.pathway": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn="
"dpv": "http://www.dpvweb.net/dpv/showdpv.php?dpvno="
"drsc": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname="
"drugbank": "http://www.drugbank.ca/drugs/"
"drugbank.salt": "https://go.drugbank.com/salts/"
"drugbank.target": "https://go.drugbank.com/salts/"
"drugbankv4.target": "http://www.drugbank.ca/biodb/bio_entities/"
"drugcentral": "http://drugcentral.org/drugcard/"
"dsmz": "https://www.dsmz.de/collection/catalogue/details/culture/"
"eaglei": "http://hawaii.eagle-i.net/i/"
"ebisc": "https://cells.ebisc.org/"
"ec-code": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"ecacc": "https://www.phe-culturecollections.org.uk/products/celllines/generalcell/detail.jsp?collection=ecacc_gc&refId="
"eccode": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"echobase": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID="
"ecmdb": "http://ecmdb.ca/compounds/"
"ecocyc": "https://biocyc.org/gene?id="
"ecogene": "http://www.ecogene.org/gene/"
"ecyano.entity": "https://www.e-cyanobacterium.org/bcs/entity/"
"ecyano.experiment": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id="
"ecyano.model": "https://e-cyanobacterium.org/models/model/"
"ecyano.rule": "https://e-cyanobacterium.org/bcs/rule/"
"edam": "https://www.ebi.ac.uk/ols/ontologies/edam/terms?iri=http://edamontology.org/"
"ega.dataset": "https://www.ebi.ac.uk/ega/datasets/"
"ega.study": "https://www.ebi.ac.uk/ega/studies/"
"eggnog": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0="
"emdb": "https://www.ebi.ac.uk/pdbe/entry/emdb/"
"emolecules": "https://reaxys.emolecules.com/cgi-bin/more?vid="
"empiar": "https://www.ebi.ac.uk/pdbe/emdb/empiar/entry/"
"ena": "https://www.ebi.ac.uk/ena/browser/view/"
"ena.embl": "https://www.ebi.ac.uk/ena/browser/view/"
"encode": "https://www.encodeproject.org/"
"ensembl.bacteria": "https://bacteria.ensembl.org/id/"
"ensembl.fungi": "https://fungi.ensembl.org/id/"
"ensembl.metazoa": "https://metazoa.ensembl.org/id/"
"ensembl.plant": "https://plants.ensembl.org/id/"
"ensembl.protist": "https://protists.ensembl.org/id/"
"entrez": "https://www.ncbi.nlm.nih.gov/gene/"
"entrez gene/locuslink": "https://www.ncbi.nlm.nih.gov/gene/"
"envipath": "https://envipath.org/package/"
"enzo": "https://www.enzolifesciences.com/"
"eo": "http://purl.obolibrary.org/obo/EO_"
"epd": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0="
"erm": "https://nanocommons.github.io/identifiers/registry#"
"erv": "https://herv.img.cas.cz/s/"
"estdab": "https://www.ebi.ac.uk/cgi-bin/ipd/estdab/print_cell.cgi?ESTDAB-"
"eu89h": "http://data.europa.eu/89h/"
"euclinicaltrials": "https://www.clinicaltrialsregister.eu/ctr-search/search?query="
"exac.gene": "http://exac.broadinstitute.org/gene/"
"exac.transcript": "http://exac.broadinstitute.org/transcript/"
"exac.variant": "http://exac.broadinstitute.org/variant/"
"fabio": "https://sparontologies.github.io/fabio/current/fabio.html#"
"facebase": "https://www.facebase.org/data/record/#1/isa:dataset/accession="
"fairsharing": "https://fairsharing.org/"
"faldo": "http://biohackathon.org/resource/faldo#"
"famplex": "https://sorgerlab.github.io/famplex/"
"fbrf": "https://flybase.org/reports/FBrf"
"fbtc": "https://flybase.org/reports/FBtc"
"fcb": "https://w3id.org/faircookbook/"
"fcsfree": "https://fcs-free.org/fcs-database?"
"flowrepository": "https://flowrepository.org/id/"
"foaf": "http://xmlns.com/foaf/0.1/"
"foodb": "http://foodb.ca/compounds/"
"foodb.compound": "http://foodb.ca/compounds/"
"fplx": "https://sorgerlab.github.io/famplex/"
"fsnp": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val="
"ftt": "https://apps.usgs.gov/thesaurus/term-simple.php?thcode=3&code="
"funcbase.fly": "http://func.mshri.on.ca/fly/genes/list_functional_scores/"
"funcbase.human": "http://func.mshri.on.ca/human/genes/list_functional_scores/"
"funcbase.mouse": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/"
"funcbase.yeast": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/"
"funderregistry": "http://data.crossref.org/fundingdata/funder/10.13039/"
"fungidb": "https://fungidb.org/fungidb/app/record/gene/"
"ga4ghdos": "https://dataguids.org/ga4gh/dos/v1/dataobjects/"
"gateway": "https://web.www.healthdatagateway.org/dataset/"
"gbif": "https://www.gbif.org/species/"
"gc": "https://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/index.cgi?chapter=cgencodes#SG"
"gc_id": "https://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html/index.cgi?chapter=cgencodes#SG"
"gcst": "https://www.ebi.ac.uk/gwas/studies/"
"gdc": "https://portal.gdc.cancer.gov/cases/"
"gdsc": "https://www.cancerrxgene.org/translation/Drug/"
"gemet": "https://www.eionet.europa.eu/gemet/en/concept/"
"genatlas": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol="
"genbank": "https://www.ncbi.nlm.nih.gov/nucleotide/"
"genecards": "https://www.genecards.org/cgi-bin/carddisp.pl?gene="
"genedb": "https://www.genedb.org/gene/"
"genefarm": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID="
"genetree": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt="
"genewiki": "http://plugins.biogps.org/cgi-bin/wp.cgi?id="
"genprop": "https://www.ebi.ac.uk/interpro/genomeproperties/#"
"geo": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc="
"ghr": "https://medlineplus.gov/genetics/condition/"
"giardiadb": "https://giardiadb.org/giardiadb/app/record/gene/"
"github": "https://github.com/"
"gitlab": "https://gitlab.com/"
"glida.gpcr": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id="
"glida.ligand": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id="
"glycoepitope": "https://www.glycoepitope.jp/epitopes/"
"glycomedb": "https://glytoucan.org/Structures/Glycans/"
"glyconavi": "https://glyconavi.org/hub/?id="
"glycopost": "https://glycopost.glycosmos.org/entry/"
"glygen": "https://glygen.org/glycan/"
"glytoucan": "https://glytoucan.org/Structures/Glycans/"
"gmd.analyte": "http://gmd.mpimp-golm.mpg.de/Analytes/"
"gmd.gcms": "http://gmd.mpimp-golm.mpg.de/Spectrums/"
"gmd.profile": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId="
"gmd.ref": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/"
"gnpis": "https://urgi.versailles.inra.fr/gnpis/#result/term="
"go.model": "noctua.geneontology.org/editor/graph/gomodel:"
"go.resource": "https://bioregistry.io/metaregistry/go/"
"goa": "https://www.ebi.ac.uk/QuickGO/GProtein?ac="
"gobp": "http://purl.obolibrary.org/obo/GO_"
"gobpid": "http://purl.obolibrary.org/obo/GO_"
"gocc": "http://purl.obolibrary.org/obo/GO_"
"goccid": "http://purl.obolibrary.org/obo/GO_"
"gold": "https://gold.jgi.doe.gov/resolver?id="
"gold.genome": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp="
"gold.meta": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp="
"gomf": "http://purl.obolibrary.org/obo/GO_"
"gomfid": "http://purl.obolibrary.org/obo/GO_"
"google.patent": "https://www.google.com/patents/"
"gpcrdb": "https://gpcrdb.org/protein/"
"gpmdb": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum="
"gramene.gene": "http://www.gramene.org/db/genes/search_gene?acc="
"gramene.growthstage": "http://www.gramene.org/db/ontology/search?id=GRO:"
"gramene.protein": "http://www.gramene.org/db/protein/protein_search?protein_id="
"gramene.qtl": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id="
"gramene.taxonomy": "http://www.gramene.org/db/ontology/search?id="
"grassbase": "https://www.kew.org/data/grasses-db/www/"
"greengenes": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id="
"grid": "https://www.grid.ac/institutes/"
"grin.taxonomy": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?"
"grsdb": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID="
"gsfa": "http://www.fao.org/gsfaonline/additives/details.html?id="
"gtex": "https://www.gtexportal.org/home/gene/"
"gudmap": "https://gudmap.org/id/"
"gwascentral.marker": "https://www.gwascentral.org/marker/"
"gwascentral.phenotype": "https://www.gwascentral.org/phenotype/"
"gwascentral.study": "https://www.gwascentral.org/study/"
"gxa.expt": "https://www.ebi.ac.uk/gxa/experiments/"
"gxa.gene": "https://www.ebi.ac.uk/gxa/genes/"
"hamap": "https://hamap.expasy.org/unirule/"
"hcvdb": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC="
"hdr": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id="
"hgmd": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene="
"hgnc": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/"
"hgnc.family": "https://www.genenames.org/cgi-bin/genefamilies/set/"
"hgnc.genefamily": "https://www.genenames.org/cgi-bin/genefamilies/set/"
"hgnc.genegroup": "https://www.genenames.org/cgi-bin/genefamilies/set/"
"hgnc.symbol": "https://www.genenames.org/cgi-bin/gene_symbol_report?match="
"hinv.locus": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id="
"hinv.protein": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id="
"hinv.transcript": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id="
"hipsci": "http://www.hipsci.org/lines/#/lines/"
"hmdb": "http://www.hmdb.ca/metabolites/"
"hms.lincs.compound": "https://lincs.hms.harvard.edu/db/sm/"
"hmsl_id": "https://lincs.hms.harvard.edu/db/sm/"
"hogenom": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query="
"homd.seq": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid="
"homd.taxon": "www.homd.org/modules.php?op=modload&name=HOMD&view=dynamic&oraltaxonid="
"homologene": "https://www.ncbi.nlm.nih.gov/homologene/"
"horizon_discovery": "https://horizondiscovery.com/en/search?searchterm="
"hpa": "http://www.proteinatlas.org/"
"hpm.peptide": "http://www.humanproteomemap.org/spectrum.php?pep_id="
"hpm.protein": "http://www.humanproteomemap.org/protein.php?hpm_id="
"hprd": "http://www.hprd.org/protein/"
"hpscreg": "https://hpscreg.eu/cell-line/"
"hsdb": "https://pubchem.ncbi.nlm.nih.gov/source/hsdb/"
"huge": "https://www.kazusa.or.jp/huge/gfpage/"
"icd10": "http://apps.who.int/classifications/icd10/browse/2010/en#/"
"icdc": "https://caninecommons.cancer.gov/#/study/"
"iceberg.element": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id="
"iceberg.family": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id="
"iclc": "http://www.iclc.it/details/det_list.php?line_id="
"ideal": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id="
"identifiers.namespace": "https://registry.identifiers.org/registry/"
"idoo": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#"
"idot": "https://biomodels.net/vocab/idot.rdf#"
"idr": "https://idr.openmicroscopy.org/search/?query=Name:idr"
"iedb": "https://www.iedb.org/reference/"
"igrhcellid": "http://igrcid.ibms.sinica.edu.tw/cgi-bin/cell_line_view.cgi?cl_name="
"igsn": "http://igsn.org/"
"igsr": "https://www.internationalgenome.org/data-portal/sample/"
"imanis": "https://www.imanislife.com/?s="
"imex": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query="
"img.gene": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid="
"img.taxon": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid="
"imgt.hla": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?"
"imgt.ligm": "http://www.imgt.org/ligmdb/view?id="
"inchi": "http://www.chemspider.com/"
"inchikey": "http://www.chemspider.com/inchikey="
"inn": "https://mednet-communities.net/inn/db/ViewINN.aspx?i="
"insdc": "https://www.ncbi.nlm.nih.gov/nuccore/"
"insdc.cds": "http://getentry.ddbj.nig.ac.jp/getentry/dad/"
"insdc.gca": "https://www.ebi.ac.uk/ena/data/view/"
"insdc.run": "https://www.ebi.ac.uk/ena/browser/view/"
"insdc.sra": "https://www.ncbi.nlm.nih.gov/sra/"
"intact": "https://www.ebi.ac.uk/intact/interaction/"
"intact.molecule": "https://www.ebi.ac.uk/intact/molecule/"
"intenz": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec="
"interlex": "https://scicrunch.org/scicrunch/interlex/view/ilx_"
"ird.segment": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession="
"irefweb": "http://wodaklab.org/iRefWeb/interaction/show/"
"iro": "https://legacy.vectorbase.org/ontology-browser?cv=MIRO&t=IRO:"
"isbn": "http://isbndb.com/search-all.html?kw="
"isfinder": "https://www-is.biotoul.fr/scripts/ficheIS.php?name="
"isni": "http://www.isni.org/isni/"
"issn": "https://portal.issn.org/resource/ISSN/"
"itis": "https://www.itis.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&search_value="
"ito": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https%3A%2F%2Fai-strategies.org%2Fontology%2F"
"iuphar.family": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId="
"iuphar.ligand": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId="
"iuphar.receptor": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId="
"jax": "https://www.jax.org/strain/"
"jcggdb": "http://jcggdb.jp/idb/jcggdb/"
"jcm": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM="
"jcrb": "https://cellbank.nibiohn.go.jp/~cellbank/en/search_res_det.cgi?RNO="
"jcsd": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No="
"jstor": "http://www.jstor.org/stable/"
"jws": "https://jjj.bio.vu.nl/models/"
"kaggle": "https://www.kaggle.com/"
"kclb": "https://cellbank.snu.ac.kr/english/sub/catalog.php?s_cellid=464&page=detail_info&CatNo=59&strQ="
"kegg": "http://www.kegg.jp/entry/"
"kegg.compound": "https://www.kegg.jp/entry/"
"kegg.disease": "http://www.kegg.jp/entry/"
"kegg.drug": "https://www.kegg.jp/entry/"
"kegg.environ": "http://www.kegg.jp/entry/"
"kegg.enzyme": "http://www.genome.jp/dbget-bin/www_bget?ec:"
"kegg.genes": "http://www.kegg.jp/entry/"
"kegg.genome": "http://www.kegg.jp/entry/"
"kegg.glycan": "https://www.kegg.jp/entry/"
"kegg.ligand": "http://www.genome.jp/dbget-bin/www_bget?cpd:"
"kegg.metagenome": "http://www.kegg.jp/entry/"
"kegg.module": "http://www.kegg.jp/entry/"
"kegg.orthology": "http://www.kegg.jp/entry/"
"kegg.pathway": "https://www.kegg.jp/entry/"
"kegg.reaction": "https://www.kegg.jp/entry/"
"kegg_genome": "http://www.kegg.jp/entry/"
"kegg_genomes": "http://www.kegg.jp/entry/"
"kisao": "http://purl.obolibrary.org/obo/KISAO_"
"knapsack": "http://www.knapsackfamily.com/knapsack_core/information.php?word="
"lei": "https://www.gleif.org/lei/"
"lgai.cede": "https://s3.us-east-2.amazonaws.com/lg.cede/"
"licebase": "https://licebase.org/?q="
"ligandbook": "https://ligandbook.org/package/"
"ligandbox": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id="
"ligea": "http://hpc-bioinformatics.cineca.it/fusion/cell_line/"
"limore": "https://www.picb.ac.cn/limore/cellLines/single?para="
"lincs": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/"
"lincs.cell": "http://lincsportal.ccs.miami.edu/cells/#/view/"
"lincs.data": "http://lincsportal.ccs.miami.edu/datasets/#/view/"
"lincs.protein": "https://lincs.hms.harvard.edu/db/proteins/"
"lincs.smallmolecule": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/"
"linguist": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#"
"lipidbank": "http://lipidbank.jp/cgi-bin/detail.cgi?id="
"lipidmaps": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID="
"loinc": "https://loinc.org/"
"lonza": "https://knowledge.lonza.com/cell?id="
"lotus": "https://lotus.naturalproducts.net/compound/lotus_id/"
"lspci": "https://labsyspharm.github.io/lspci/"
"lter": "https://vocab.lternet.edu/vocab/vocab/index.php?tema="
"macie": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id="
"maizegdb.locus": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id="
"massbank": "http://www.massbank.jp/RecordDisplay?id="
"massive": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id="
"matrixdb": "http://matrixdb.univ-lyon1.fr/cgi-bin/current/newPort?type=biomolecule&value="
"mdm": "https://medical-data-models.org/forms/"
"meddra": "http://purl.bioontology.org/ontology/MEDDRA/"
"medgen": "https://www.ncbi.nlm.nih.gov/medgen/"
"merops": "http://merops.sanger.ac.uk/cgi-bin/pepsum?mid="
"merops.family": "http://merops.sanger.ac.uk/cgi-bin/famsum?family="
"merops.inhibitor": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id="
"mesh": "https://meshb.nlm.nih.gov/record/ui?ui="
"metabolights": "https://www.ebi.ac.uk/metabolights/"
"metacyc.compound": "https://metacyc.org/compound?orgid=META&id="
"metacyc.reaction": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object="
"metanetx.chemical": "https://www.metanetx.org/chem_info/"
"metanetx.compartment": "https://www.metanetx.org/comp_info/"
"metanetx.reaction": "https://www.metanetx.org/equa_info/"
"metlin": "http://metlin.scripps.edu/metabo_info.php?molid="
"mex": "https://www.metabolome-express.org/datasetview.php?datasetid="
"mge": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:"
"mgnify.analysis": "https://www.ebi.ac.uk/metagenomics/analyses/"
"mgnify.proj": "https://www.ebi.ac.uk/metagenomics/projects/"