-
Notifications
You must be signed in to change notification settings - Fork 1
/
cdl_ebi_prefixes.yaml
2971 lines (2290 loc) · 81.1 KB
/
cdl_ebi_prefixes.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
# Last modified: 2017.11.26_08.29.07
# Updates available at: https://n2t.net/ark:/13030/c7xk84q2j
# To request a prefix: https://n2t.net/e/prefix_request
#
# This is a YAML-format registry that enumerates the Compact Identifier
# prefixes (id schemes) jointly recognized by the California Digital
# Library (CDL) and the European Molecular Biology Laboratory - European
# Bioinformatics Institute (EMBL-EBI) and their respective meta-resolvers,
#
# n2t.net and identifiers.org.
#
# A prefix consists of a namespace, optionally preceded by a provider code
# and a '/' character, for example, "pdb", "pmid", "taxon", and "rcsb/pdb".
#
# <prefix> := [ <provider> + '/' ] + <namespace>
#
# A published compact identifier (compact-id) consists of a prefix, a colon,
# and a scheme-local identifier (eg, a database accession number):
#
# <compact-id> := <prefix> + ':' + <prefix-specific-identifier>
#
# A compact-id is made actionable by using it as the path part of a URL
# and prepending one of the meta-resolvers for the hostname, for example,
#
# n2t.net/pmid:1234567
# identifiers.org/pmid:1234567
#
# This registry file is a series of YAML blocks, each ending in a blank line.
# The elements in a block are defined as follows:
#
# namespace (required)
# A string of lowercase letters and digits defining the identifier
# collection, typically for a given database. The combination of
# namespace prefix and provider (below) must be unique across the
# registry.
#
# provider (optional)
# A string of lowercase letters and digits defining one provider for an
# identifier namespace prefix. The combination of namespace prefix and
# provider (above) must be unique across the registry.
#
# alias (optional)
# A string of lowercase letters and digits specifying an alternate name for
# the namespace. The combination of alias prefix, or namespace prefix, and
# provider (below) must be unique across the registry.
#
# title (required)
# A text string containing the full name of the prefix.
#
# homepage (required)
# A URL that leads to a web page with more information about the prefix. If
# the page contains schema.org tags, the meta-resolver may exploit them for
# descriptive information.
#
# note (optional, repeatable)
# A text string containing arbitrary annotations.
#
# The contents of this file are dedicated to the public domain under the terms
# of CC0 1.0 Universal https://creativecommons.org/publicdomain/zero/1.0/
# and FAIRsharing entry https://fairsharing.org/bsg-s001091. Please visit
# https://www.ebi.ac.uk/support/identifiers.org for questions or feedback.
- namespace: 3dmet
title: 3DMET database
homepage: http://www.3dmet.dna.affrc.go.jp/
- namespace: abs
title: ABS at IMIM
homepage: http://genome.crg.es/datasets/abs2005/
- namespace: aceview.worm
provider: ncbi
title: AceView Worm at NCBI
homepage: http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm
- namespace: aclame
title: Aclame database of mobile genetic elements
homepage: http://aclame.ulb.ac.be/
- namespace: adw
title: Animal Diversity Web at University of Michigan
homepage: http://animaldiversity.ummz.umich.edu/
- namespace: affy.probeset
title: Affymetrix ProbeSet in Santa Clara
homepage: http://www.affymetrix.com/
- namespace: aftol.taxonomy
title: AFTOL at University of Minnesota
homepage: http://aftol.org/data.php
- namespace: agricola
title: AGRICOLA at National Agricultural Library
homepage: http://agricola.nal.usda.gov/
- namespace: allergome
title: Allergome at Rome
homepage: http://www.allergome.org/
- namespace: amoebadb
title: AmoebaDB at EuPathDB
homepage: http://amoebadb.org/amoeba/
- namespace: antibodyregistry
title: Antibody Registry at University of California
homepage: http://antibodyregistry.org/
- namespace: antweb
title: AntWeb at California Academy of Sciences
homepage: http://www.antweb.org/
- namespace: aop
title: AOPWiki
homepage: https://aopwiki.org/
- namespace: apd
title: APD at Nebraska
homepage: http://aps.unmc.edu/AP/
- namespace: aphidbase.transcript
title: AphidBase at INRA
homepage: http://www.aphidbase.com/aphidbase
- namespace: apid.interactions
title: APID at Salamanca
homepage: http://cicblade.dep.usal.es:8080/APID/
- namespace: arachnoserver
title: ArachnoServer at Brisbane
homepage: http://www.arachnoserver.org/
- namespace: ardb
title: ARDB at University of Maryland
homepage: http://ardb.cbcb.umd.edu/
- namespace: ark
title: ARK via the Name-to-Thing resolver.
homepage: http://n2t.net/
- namespace: arrayexpress
provider: ebi
title: ArrayExpress
homepage: http://www.ebi.ac.uk/arrayexpress/
- namespace: arrayexpress.platform
provider: ebi
title: ArrayExpress Platform at EBI
homepage: http://www.ebi.ac.uk/arrayexpress/
- namespace: arraymap
title: ArrayMap
homepage: https://www.arraymap.org
- namespace: arxiv
title: Cornell University arXiv
homepage: http://arxiv.org/
- namespace: asap
title: ASAP at University of Wisconsin
homepage: http://asap.ahabs.wisc.edu/asap/home.php
- namespace: aspgd.locus
title: AspGD at Stanford Medical School
homepage: http://www.aspgd.org/
- namespace: aspgd.protein
title: AspGD Protein at Stanford Medical School
homepage: http://www.aspgd.org/
- namespace: atc
title: Anatomical Therapeutic Chemical Index at WHO
homepage: http://www.whocc.no/atc_ddd_index/
- namespace: atcc
title: ATCC in Virginia
homepage: http://www.atcc.org/
- namespace: atcvet
title: Anatomical Therapeutic Chemical Vet Index at WHO
homepage: http://www.whocc.no/atcvet/atcvet_index/
- namespace: atfdb.family
title: Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory
homepage: http://www.bioguo.org/AnimalTFDB/family_index.php
- namespace: autdb
title: AutDB at MindSpec
homepage: http://autism.mindspec.org/autdb/
- namespace: bacmap.biog
title: BacMap Biography at University of Alberta
homepage: http://bacmap.wishartlab.com/
- namespace: bacmap.map
title: BacMap Genome Map at University of Alberta
homepage: http://bacmap.wishartlab.com/
- namespace: bao
provider: bptl
title: BioAssay Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/BAO/
- namespace: bao
provider: ols
title: BioAssay Ontology through OLS
homepage: http://bioportal.bioontology.org/ontologies/BAO/
- namespace: bdgp.est
provider: ncbi
title: BDGP EST at NCBI
homepage: http://www.ncbi.nlm.nih.gov/dbEST/index.html
- namespace: bdgp.insertion
title: BDGP Gene Disruption Project
homepage: http://flypush.imgen.bcm.tmc.edu/pscreen/
- namespace: beetlebase
title: BeetleBase at Kansas State University
homepage: http://beetlebase.org/
- namespace: begdb
title: Benchmark Energy & Geometry Database
homepage: http://www.begdb.com
- namespace: bgee.family
title: Bgee at Lausanne
homepage: http://bgee.unil.ch/bgee/bgee
- namespace: bgee.gene
title: Bgee at Lausanne
homepage: http://bgee.unil.ch/bgee/bgee
- namespace: bgee.organ
title: Bgee at Lausanne
homepage: http://bgee.unil.ch/bgee/bgee
- namespace: bgee.stage
title: Bgee at Lausanne
homepage: http://bgee.unil.ch/bgee/bgee
- namespace: bigg.compartment
title: BiGG Compartment at University of California
homepage: http://bigg.ucsd.edu/compartments/
- namespace: bigg.metabolite
title: BiGG Metabolite at University of Cakifornia
homepage: http://bigg.ucsd.edu/universal/metabolites
- namespace: bigg.model
title: BiGG Model at University of California
homepage: http://bigg.ucsd.edu/models
- namespace: bigg.reaction
title: BiGG Reaction at University of California
homepage: http://bigg.ucsd.edu/universal/reactions
- namespace: bindingDB
title: BindingDB At Skaggs School of Pharmacy & Pharmaceutical Sciences
homepage: http://www.bindingdb.org/bind/index.jsp
- namespace: biocarta.pathway
title: BioCarta Pathway at NCI
homepage: http://www.biocarta.com/
- namespace: biocatalogue.service
provider: ebi
title: BioCatalogue at EMBL-EBI
homepage: http://www.biocatalogue.org/
- namespace: biocyc
title: BioCyc at SRI International
homepage: http://biocyc.org
- namespace: biogrid
title: BioGRID database of physical and genetic interactions
homepage: http://thebiogrid.org/
- namespace: biomaps
title: main webpage
homepage: http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp
- namespace: biomodels.db
provider: ebi
title: BioModels Database
homepage: http://www.ebi.ac.uk/biomodels/
- namespace: biomodels.kisao
provider: bptl
title: KiSAO via NCBO's Bioportal
homepage: http://bioportal.bioontology.org/ontologies/KISAO
- namespace: biomodels.kisao
provider: ols
title: KiSAO through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/kisao
- namespace: biomodels.teddy
provider: bptl
title: TEDDY through BioPortal
homepage: http://teddyontology.sourceforge.net/
- namespace: biomodels.teddy
provider: ols
title: TEDDY though OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/teddy
- namespace: biomodels.vocabulary
title: Vocabulary via BioModels.net
homepage: http://biomodels.net/rdf/vocabulary.rdf
- namespace: bionumbers
title: BioNumbers database
homepage: http://www.bionumbers.hms.harvard.edu/search.aspx
- namespace: bioportal
provider: bptl
title: BioPortal at National Center for Biomedical Ontology
homepage: http://bioportal.bioontology.org/
- namespace: bioproject
provider: ncbi
title: BioProject at NCBI
homepage: http://www.ncbi.nlm.nih.gov/bioproject
- namespace: bioproject
provider: ebi
title: BioProject at European Nucleotide Archive (ENA)
homepage: http://www.ebi.ac.uk/ena/
- namespace: biosample
provider: ebi
title: BioSample Database at EBI
homepage: http://www.ebi.ac.uk/biosamples/
- namespace: biosample
provider: ncbi
title: BioSample at NCBI
homepage: http://www.ncbi.nlm.nih.gov/biosample
- namespace: biosystems
provider: ncbi
title: BioSystems database at NCBI
homepage: http://www.ncbi.nlm.nih.gov/biosystems/
- namespace: biotools
title: BioTools
homepage: https://bio.tools/
- namespace: bitterdb.cpd
title: BitterDB Compound at The Hebrew University of Jerusalem
homepage: http://bitterdb.agri.huji.ac.il/dbbitter.php
- namespace: bitterdb.rec
title: BitterDB Receptor at The Hebrew University of Jerusalem
homepage: http://bitterdb.agri.huji.ac.il/dbbitter.php
- namespace: bold.taxonomy
title: BOLD taxonomy browser
homepage: http://www.boldsystems.org/
- namespace: brenda
title: Brenda enzyme database
homepage: http://www.brenda-enzymes.org/
- namespace: broad
title: Broad Fungal Genome Initiative at Broad Institute
homepage: http://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/
- namespace: bto
provider: bptl
title: Brenda Tissue Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/BTO
- namespace: bto
provider: ols
title: Brenda Tissue Ontology through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/bto
- namespace: bugbase.expt
title: BugBase Expt at University of London
homepage: http://bugs.sgul.ac.uk/E-BUGS
- namespace: bugbase.protocol
title: BugBase Protocol at University of London
homepage: http://bugs.sgul.ac.uk/E-BUGS
- namespace: bykdb
title: BYKdb at CNRS
homepage: http://bykdb.ibcp.fr/BYKdb/
- namespace: cabri
title: CABRI Cell Lines catalogue in Genova (SRS)
homepage: http://www.cabri.org/
- namespace: cameo
title: CAMEO
homepage: https://cameo3d.org
- namespace: caps
title: CAPS-DB at Leeds Institute of Molecular Medicine
homepage: http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home
- namespace: cas
title: CAS through Common Chemistry
homepage: http://commonchemistry.org
- namespace: cath
title: CATH Node through UCL
homepage: http://www.cathdb.info
- namespace: cath.domain
title: CATH domain at UCL
homepage: http://www.cathdb.info/
- namespace: cath.superfamily
title: CATH superfamily at UCL
homepage: http://www.cathdb.info/
- namespace: cattleqtldb
title: Animal QTL Cattle at Iowa State University
homepage: http://www.animalgenome.org/cgi-bin/QTLdb/BT/index
- namespace: cazy
title: CAZy at CNRS
homepage: http://www.cazy.org/
- namespace: ccds
provider: ncbi
title: Consensus CDS at NCBI
homepage: http://www.ncbi.nlm.nih.gov/CCDS/
- namespace: cco
provider: ols
title: Cell Cycle Ontology through OLS
homepage: http://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO
- namespace: cdd
provider: ncbi
title: Conserved Domain Database at NCBI
homepage: http://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd
- namespace: cdpd
title: Canadian Drug Identification Number at Health Canada
homepage: http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp
- namespace: cellimage
title: Cell Image Library at American Society for Cell Biology
homepage: http://cellimagelibrary.org/
- namespace: cellosaurus
provider: sib
title: Cellosaurus through SIB
homepage: http://web.expasy.org/cellosaurus/
- namespace: cgd
title: Candida Genome Database at Stanford University
homepage: http://www.candidagenome.org/
- namespace: cgsc
title: CGSC at Yale university
homepage: http://cgsc.biology.yale.edu/index.php
- namespace: charprot
title: CharProt at JCVI
homepage: http://www.jcvi.org/charprotdb
- namespace: chebi
provider: ebi
title: ChEBI (Chemical Entities of Biological Interest)
homepage: http://www.ebi.ac.uk/chebi/
- namespace: chebi
provider: bptl
title: ChEBI through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/CHEBI
- namespace: chebi
provider: ols
title: ChEBI through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/chebi
- namespace: chembank
title: ChemBank at Broad Institute
homepage: http://chembank.broadinstitute.org/
- namespace: chembl.compound
provider: ebi
title: ChEMBL compound database at EBI
homepage: https://www.ebi.ac.uk/chembldb/
- namespace: chembl.target
provider: ebi
title: ChEMBL targets database at EBI
homepage: https://www.ebi.ac.uk/chembldb/
- namespace: chemdb
title: ChemDB at UC Irvine
homepage: http://cdb.ics.uci.edu/
- namespace: chemidplus
title: ChemIDplus at National Library of Medicine
homepage: http://chem.sis.nlm.nih.gov/chemidplus/chemidheavy.jsp
- namespace: chemspider
title: ChemSpider at RSC
homepage: http://www.chemspider.com/
- namespace: chickenqtldb
title: Animal QTL Chicken at Iowa State University
homepage: http://www.animalgenome.org/cgi-bin/QTLdb/GG/index
- namespace: cl
provider: bptl
title: Cell Type Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/CL
- namespace: cl
provider: ols
title: Cell Type Ontology through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/cl
- namespace: cldb
title: CLDB at Genova
homepage: http://bioinformatics.hsanmartino.it/hypercldb/indexes.html
- namespace: clinicaltrials
title: ClinicalTrials.gov at NIH
homepage: http://clinicaltrials.gov/
- namespace: clinvar
provider: ncbi
title: ClinVar Variant at NCBI
homepage: http://www.ncbi.nlm.nih.gov/clinvar/
- namespace: clinvar.record
provider: ncbi
title: ClinVar Record at NCBI
homepage: http://www.ncbi.nlm.nih.gov/clinvar/
- namespace: clinvar.submission
provider: ncbi
title: ClinVar Submission at NCBI
homepage: http://www.ncbi.nlm.nih.gov/clinvar/
- namespace: combine.specifications
provider: ebi
title: COMBINE at EBI
homepage: http://co.mbine.org/standards/
- namespace: compulyeast
title: Compluyeast database at Universidad Complutense Madrid
homepage: http://compluyeast2dpage.dacya.ucm.es/
- namespace: conoserver
title: ConoServer at University of Queensland
homepage: http://www.conoserver.org/
- namespace: coriell
title: Coriell Cell Repositories at Coriell Institute
homepage: http://ccr.coriell.org/
- namespace: corum
title: CORUM at Institute for Bioinformatics and Systems Biology (Germany)
homepage: http://mips.helmholtz-muenchen.de/genre/proj/corum/
- namespace: cosmic
title: COSMIC Gene at Sanger
homepage: http://cancer.sanger.ac.uk/cosmic/
- namespace: cpc
title: Cooperative Patent Classification at Espace
homepage: http://worldwide.espacenet.com/classification
- namespace: crisprdb
title: CRISPRdb
homepage: http://crispr.i2bc.paris-saclay.fr/
- namespace: cryptodb
title: CryptoDB at EuPathDB
homepage: http://cryptodb.org/cryptodb/
- namespace: csa
provider: ebi
title: CSA at EBI
homepage: http://www.ebi.ac.uk/thornton-srv/databases/CSA/
- namespace: cst
title: CST Pathways at Cell Signaling Technology
homepage: http://www.cellsignal.com/pathways/index.html
- namespace: cst.ab
title: CST Antibody at Cell Signaling Technology
homepage: http://www.cellsignal.com/catalog/index.html
- namespace: ctd.chemical
title: Comparative Toxicogenomics Database (Chemical)
homepage: http://ctdbase.org/
- namespace: ctd.disease
title: Comparative Toxicogenomics Database (Disease)
homepage: http://ctdbase.org/
- namespace: ctd.gene
title: Comparative Toxicogenomics Database (Gene)
homepage: http://ctdbase.org/
- namespace: cubedb
title: Cube db at Bioinformatics Institute (Singapore)
homepage: http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html
- namespace: cygd
title: CYGD PEDANT Interface at Biomax Informatics
homepage: http://pedant.helmholtz-muenchen.de/pedant3htmlview/pedant3view?Method=start_method&Db=p3_p13838_Sac_cerev
- namespace: d1id
title: DataONE
homepage: https://www.dataone.org
- namespace: dailymed
title: DailyMed at NLM
homepage: http://dailymed.nlm.nih.gov/dailymed/
- namespace: darc
title: DARC at University of Munich
homepage: http://darcsite.genzentrum.lmu.de/darc/index.php
- namespace: dashr
title: DASHR at University of Pennsylvania
homepage: http://lisanwanglab.org/DASHR/
- namespace: dashr.expression
title: DASHR expression at University of Pennsylvania
homepage: http://lisanwanglab.org/DASHR/show-expression-table.php?start=0
- namespace: datf
title: DATF through PlantTFDB
homepage: http://datf.cbi.pku.edu.cn/
- namespace: dbd
title: DBD at MRC Laboratory of Molecular Biology
homepage: http://www.transcriptionfactor.org/
- namespace: dbest
provider: ncbi
title: dbEST at NCBI
homepage: http://www.ncbi.nlm.nih.gov/nucest
- namespace: dbest
provider: ebi
title: dbEST through European Nucleotide Archive (ENA)
homepage: http://www.ebi.ac.uk/ena
- namespace: dbg2introns
title: Bacterial Group II Introns at University of Calgary
homepage: http://webapps2.ucalgary.ca/~groupii/
- namespace: dbgap
provider: ncbi
title: dbGaP through NCBI
homepage: https://www.ncbi.nlm.nih.gov/projects/gap
- namespace: dbprobe
provider: ncbi
title: dbProbe at NCBI
homepage: http://www.ncbi.nlm.nih.gov/sites/entrez?db=probe
- namespace: dbsnp
provider: ncbi
title: dbSNP at NCBI
homepage: http://www.ncbi.nlm.nih.gov/sites/entrez?db=snp
- namespace: degradome
title: Degradome Database at
homepage: http://degradome.uniovi.es/
- namespace: depod
title: DEPOD at EMBL
homepage: http://www.koehnlab.de/depod/
- namespace: dictybase.est
title: Dictybase Gene at Northwestern University
homepage: http://dictybase.org/
- namespace: dictybase.gene
title: Dictybase Gene at Northwestern University
homepage: http://dictybase.org/
- namespace: dip
title: Database of interacting proteins
homepage: http://dip.doe-mbi.ucla.edu/
- namespace: disprot
title: DisProt at Indiana University
homepage: http://www.disprot.org/
- namespace: doi
title: Digital Object Identifier
homepage: http://www.doi.org/
- namespace: doid
provider: bptl
title: Human Disease Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/DOID
- namespace: doid
provider: ols
title: Human Disease Ontology through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/doid
- namespace: dommino
title: DOMMINO at University of Missouri
homepage: http://dommino.org/
- namespace: door
title: DOOR v1 at University of Georgia
homepage: http://csbl1.bmb.uga.edu/OperonDB/DOOR.php
- namespace: doqcs.model
title: Database of Quantitative Cellular Signaling (DOQCS) - Model Access
homepage: http://doqcs.ncbs.res.in/
- namespace: doqcs.pathway
title: Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access
homepage: http://doqcs.ncbs.res.in/
- namespace: dpv
title: DPV at Rothamsted
homepage: http://www.dpvweb.net/
- namespace: dragondb.allele
title: DragonDB Allele at University of British Columbia
homepage: http://www.antirrhinum.net/
- namespace: dragondb.dna
title: DragonDB DNA at University of British Columbia
homepage: http://www.antirrhinum.net/
- namespace: dragondb.locus
title: DragonDB Locus at University of British Columbia
homepage: http://www.antirrhinum.net/
- namespace: dragondb.protein
title: DragonDB Protein at University of British Columbia
homepage: http://www.antirrhinum.net/
- namespace: drsc
title: DRSC at Harvard Medical School
homepage: http://flyrnai.org/
- namespace: drugbank
title: DrugBank drug information
homepage: http://www.drugbank.ca/
- namespace: drugbankv4.target
title: DrugBank Target information version 4
homepage: http://www.drugbank.ca/targets
- namespace: ebimetagenomics.proj
provider: ebi
title: EBI metagenomics projects at EBI
homepage: https://www.ebi.ac.uk/metagenomics
- namespace: ebimetagenomics.samp
provider: ebi
title: EBI Metagenomics at European Bioinformatics Institute
homepage: http://www.ebi.ac.uk/metagenomics
- namespace: ec-code
provider: intenz
alias: ec
title: IntEnZ (Integrated relational Enzyme database)
homepage: http://www.ebi.ac.uk/intenz/
- namespace: ec-code
provider: expasy
alias: ec
title: Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)
homepage: http://enzyme.expasy.org/
- namespace: ec-code
provider: expenz
alias: ec
title: ExploreEnz at Trinity College
homepage: http://www.enzyme-database.org/
- namespace: echobase
title: EchoBASE at the University of York
homepage: http://www.york.ac.uk/
- namespace: eco
provider: bptl
title: Evidence Code Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/ECO
- namespace: eco
provider: ols
title: Evidence Codes via the Ontology Lookup Service (OLS)
homepage: http://www.ebi.ac.uk/ols/ontologies/eco
- namespace: ecogene
title: EcoGene at University of Miami
homepage: http://ecogene.org/
- namespace: ecoliwiki
title: EcoliWiki at Texas Agrilife Research
homepage: http://ecoliwiki.net/colipedia/
- namespace: ecyano.entity
title: e-cyanobacterium entity at Masaryk University Brno
homepage: http://www.e-cyanobacterium.org/bcs/entity/
- namespace: ecyano.model
title: e-cyanobacterium entity at Masaryk University Brno
homepage: http://e-cyanobacterium.org/models/
- namespace: ecyano.rule
title: e-cyanobacterium entity at Masaryk University Brno
homepage: http://www.e-cyanobacterium.org/bcs/rule/
- namespace: edam
provider: bptl
title: EDAM through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/EDAM
- namespace: edam
provider: ols
title: EDAM through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/edam
- namespace: efo
provider: bptl
title: EFO through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/EFO
- namespace: efo
provider: ebi
title: EFO through Functional Genomics Group (EBI)
homepage: http://www.ebi.ac.uk/efo/
- namespace: efo
provider: ols
title: EFO through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/efo
- namespace: ega.dataset
provider: ebi
title: EGA Dataset at European Bioinformatics Institute
homepage: https://www.ebi.ac.uk/ega/dataset
- namespace: ega.study
provider: ebi
title: EGA Study at European Bioinformatics Institute
homepage: https://www.ebi.ac.uk/ega/studies
- namespace: eggnog
title: eggNOG Version 3 at European Molecular Biology Laboratory
homepage: http://eggnog.embl.de/version_3.0/
- namespace: elm
title: ELM at EMBL (Germany)
homepage: http://elm.eu.org/
- namespace: emdb
provider: ebi
title: EMDB at Protein Data Bank in Europe
homepage: http://www.ebi.ac.uk/pdbe/emdb/
- namespace: ena.embl
provider: ebi
title: ENA at European Bioinformatics Institute
homepage: http://www.ebi.ac.uk/ena/
- namespace: ensembl
provider: ebi
title: Ensembl at Sanger/EMBL-EBI
homepage: http://www.ensembl.org/
- namespace: ensembl.bacteria
provider: ebi
title: Ensembl Bacteria at EBI
homepage: http://bacteria.ensembl.org/
- namespace: ensembl.fungi
provider: ebi
title: Enzembl Fungi at EBI
homepage: http://fungi.ensembl.org/
- namespace: ensembl.metazoa
provider: ebi
title: Enzembl Metazoa at EBI
homepage: http://metazoa.ensembl.org/
- namespace: ensembl.plant
provider: ebi
title: Enzembl Plants at EBI
homepage: http://plants.ensembl.org/
- namespace: ensembl.protist
provider: ebi
title: Ensembl Protists at EBI
homepage: http://protists.ensembl.org
- namespace: envo
provider: bptl
title: The Environment Ontology through BioPortal
homepage: http://purl.bioontology.org/ontology/ENVO/
- namespace: envo
provider: ols
title: The Environment Ontology through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/envo
- namespace: eo
title: Plant Environment Ontology through Gramene
homepage: http://archive.gramene.org/db/ontology/search_term?id=EO:0007359
- namespace: eo
provider: bptl
title: Plant Environment Ontology through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/PECO
- namespace: eo
provider: ols
title: Plant Environment Ontology through OLS
homepage: http://www.ebi.ac.uk/ols/ontologies/eo
- namespace: epd
title: EPD at Swiss Institute of Bioinformatics
homepage: http://epd.vital-it.ch/
- namespace: erv
title: Human Endogenous Retrovirus Database
homepage: https://herv.img.cas.cz/
- namespace: euclinicaltrials
title: EU Clinical Trials at European Medicines Agency
homepage: https://www.clinicaltrialsregister.eu/
- namespace: exac.gene
title: ExAC Gene at Exome Aggregation Consortium
homepage: http://exac.broadinstitute.org/
- namespace: exac.transcript
title: ExAC Transcript at Exome Aggregation Consortium
homepage: http://exac.broadinstitute.org/
- namespace: exac.variant
title: ExAC Variant at Exome Aggregation Consortium
homepage: http://exac.broadinstitute.org/
- namespace: fairsharing
title: FAIRSharing at University of Oxford
homepage: https://fairsharing.org/
- namespace: fbol
title: Fungal Barcode at Fungal Biodiversity Centre
homepage: http://www.fungalbarcoding.org/
- namespace: flybase
title: The FlyBase Database
homepage: http://flybase.org/
- namespace: flystock
title: Flystock at Indiana University
homepage: http://flystocks.bio.indiana.edu/bloomhome.htm
- namespace: fma
provider: bptl
title: Foundational Model of Anatomy through BioPortal
homepage: http://bioportal.bioontology.org/ontologies/FMA
- namespace: fma
provider: ols
title: Foundational Model of Anatomy via Ontology Lookup Service (OLS)
homepage: http://www.ebi.ac.uk/ols/ontologies/fma/
- namespace: foodb.compound
title: FooDB database of food additives at University of Alberta
homepage: http://foodb.ca/foods
- namespace: fsnp
title: F-SNP at Queen's University (Canada)
homepage: http://compbio.cs.queensu.ca/F-SNP/
- namespace: funcat
title: FunCat at MIPS (Neuherberg)
homepage: http://mips.helmholtz-muenchen.de/funcatDB/
- namespace: funcbase.fly
title: FuncBase Fly at Harvard Medical School
homepage: http://func.mshri.on.ca/fly
- namespace: funcbase.human
title: FuncBase Human at Harvard Medical School
homepage: http://func.mshri.on.ca/human/
- namespace: funcbase.mouse
title: FuncBase Mouse at Harvard Medical School
homepage: http://func.mshri.on.ca/mouse/