-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnar_v20_3.csv
We can't make this file beautiful and searchable because it's too large.
3101 lines (3101 loc) · 516 KB
/
nar_v20_3.csv
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
"db_id","article_id","resource_name","access","available","unavailable_message","available_update_date","notes","article_year","citations","status","debut_yr","total_articles","total_citations","article_status"
"MBDC0001",272,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",1998,22,"yes",1997,19,586,"update"
"MBDC0001",218,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","Access - Other; had this address since 1997 at least",1997,26,"yes",1997,19,586,"debut"
"MBDC0001",2915,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2015,7,"yes",1997,19,586,"update"
"MBDC0001",1926,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2010,44,"yes",1997,19,586,"update"
"MBDC0001",2738,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2014,22,"yes",1997,19,586,"update"
"MBDC0001",2151,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp/","yes","not_applicable","2016","not_applicable",2011,32,"yes",1997,19,586,"update"
"MBDC0001",2324,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp/","yes","not_applicable","2016","not_applicable",2012,24,"yes",1997,19,586,"update"
"MBDC0001",721,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2002,65,"yes",1997,19,586,"update"
"MBDC0001",1739,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2009,13,"yes",1997,19,586,"update"
"MBDC0001",771,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2003,66,"yes",1997,19,586,"update"
"MBDC0001",2554,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2013,15,"yes",1997,19,586,"update"
"MBDC0001",1227,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2006,32,"yes",1997,19,586,"update"
"MBDC0001",1150,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2005,32,"yes",1997,19,586,"update"
"MBDC0001",358,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp/","yes","not_applicable","2016","not_applicable",1999,16,"yes",1997,19,586,"update"
"MBDC0001",3030,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2016,4,"yes",1997,19,586,"update"
"MBDC0001",952,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2004,59,"yes",1997,19,586,"update"
"MBDC0001",1691,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2008,47,"yes",1997,19,586,"update"
"MBDC0001",451,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2000,46,"yes",1997,19,586,"update"
"MBDC0001",1519,"DDBJ: DNA Data Bank of Japan","http://www.ddbj.nig.ac.jp","yes","not_applicable","2016","not_applicable",2007,14,"yes",1997,19,586,"update"
"MBDC0002",2699,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2016","not_applicable",2014,16,"yes",1991,23,1469,"update"
"MBDC0002",2878,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2016","not_applicable",2015,18,"yes",1991,23,1469,"update"
"MBDC0002",2088,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2017","not_applicable",2011,122,"yes",1991,23,1469,"update"
"MBDC0002",400,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl.html","no","not found","not_applicable","not_applicable",1999,115,"yes",1991,23,1469,"update"
"MBDC0002",333,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl.html","no","not found","not_applicable","not_applicable",1998,68,"yes",1991,23,1469,"update"
"MBDC0002",1885,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl","yes","not_applicable","2017","not_applicable",2009,63,"yes",1991,23,1469,"update"
"MBDC0002",869,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","not_applicable",2003,74,"yes",1991,23,1469,"update"
"MBDC0002",2444,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena/","yes","not_applicable","2017","not_applicable",2013,36,"yes",1991,23,1469,"update"
"MBDC0002",708,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","Disambiguation; aka EMBL-Bank",2002,115,"yes",1991,23,1469,"update"
"MBDC0002",38,"EMBL-EBI ENA: European Nucleotide Archive","Physical; Server","not_www","not_applicable","not_applicable","Provenance; est 1980 at EMBL, eventually becomes part of ENA: European Nucleotide Archive per wikipedia",1993,77,"yes",1991,23,1469,"update"
"MBDC0002",1395,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl","yes","not_applicable","2017","not_applicable",2007,90,"yes",1991,23,1469,"update"
"MBDC0002",10,"EMBL-EBI ENA: European Nucleotide Archive","Physical; Server","not_www","not_applicable","not_applicable","Provenance; est 1980 at EMBL, eventually becomes part of ENA: European Nucleotide Archive per wikipedia",1991,38,"yes",1991,23,1469,"debut"
"MBDC0002",225,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk","yes","not_applicable","2017","Provenance; DB Content; Database services provided by the EBI (1) are a continuation and extension of the former EMBL Data Library (2), in Heidelberg, Germany",1997,68,"yes",1991,23,1469,"update"
"MBDC0002",1195,"EMBL-EBI ENA: European Nucleotide Archive","www.ebi.ac.uk/embl","yes","not_applicable","2017","not_applicable",2006,65,"yes",1991,23,1469,"update"
"MBDC0002",24,"EMBL-EBI ENA: European Nucleotide Archive","Physical; Server","not_www","not_applicable","not_applicable","Provenance; est 1980 at EMBL, eventually becomes part of ENA: European Nucleotide Archive per wikipedia",1992,37,"yes",1991,23,1469,"update"
"MBDC0002",579,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","not_applicable",2001,77,"yes",1991,23,1469,"update"
"MBDC0002",3089,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2016","not_applicable",2016,3,"yes",1991,23,1469,"update"
"MBDC0002",1937,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2017","not_applicable",2010,29,"yes",1991,23,1469,"update"
"MBDC0002",1060,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","not_applicable",2005,123,"yes",1991,23,1469,"update"
"MBDC0002",908,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","not_applicable",2004,113,"yes",1991,23,1469,"update"
"MBDC0002",444,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/index.html","no","not found","not_applicable","not_applicable",2000,87,"yes",1991,23,1469,"update"
"MBDC0002",2315,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/ena","yes","not_applicable","2017","not_applicable",2012,18,"yes",1991,23,1469,"update"
"MBDC0002",1597,"EMBL-EBI ENA: European Nucleotide Archive","http://www.ebi.ac.uk/embl/","yes","not_applicable","2017","not_applicable",2008,17,"yes",1991,23,1469,"update"
"MBDC0003",901,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",2003,306,"yes",1991,24,7582,"update"
"MBDC0003",413,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",1999,473,"yes",1991,24,7582,"update"
"MBDC0003",767,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",2002,424,"yes",1991,24,7582,"update"
"MBDC0003",12,"NCBI Genbank","Physical; Server","not_www","not_applicable","not_applicable","Access - Other; hardcopy stopped in 1987",1991,67,"yes",1991,24,7582,"debut"
"MBDC0003",1139,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",2005,581,"yes",1991,24,7582,"update"
"MBDC0003",134,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",1996,116,"yes",1991,24,7582,"update"
"MBDC0003",1579,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2008,644,"yes",1991,24,7582,"update"
"MBDC0003",2079,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2011,431,"yes",1991,24,7582,"update"
"MBDC0003",1723,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2009,415,"yes",1991,24,7582,"update"
"MBDC0003",2918,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/genbank/","yes","not_applicable","2017","not_applicable",2015,87,"yes",1991,24,7582,"update"
"MBDC0003",34,"NCBI Genbank","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,26,"yes",1991,24,7582,"update"
"MBDC0003",75,"NCBI Genbank","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,162,"yes",1991,24,7582,"update"
"MBDC0003",2583,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2013,587,"yes",1991,24,7582,"update"
"MBDC0003",1239,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2006,356,"yes",1991,24,7582,"update"
"MBDC0003",2248,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2012,317,"yes",1991,24,7582,"update"
"MBDC0003",526,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",2000,771,"yes",1991,24,7582,"update"
"MBDC0003",2706,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2014,128,"yes",1991,24,7582,"update"
"MBDC0003",1951,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2010,218,"yes",1991,24,7582,"update"
"MBDC0003",46,"NCBI Genbank","Physical; Server","not_www","not_applicable","not_applicable","Provenance ; good history prior to NAR and NCBI - back into the 1980s - also references papers about the history of sequence databases; A team of annotators using NCBI software creates sequence records from journal articles",1993,214,"yes",1991,24,7582,"update"
"MBDC0003",3042,"NCBI Genbank","www.ncbi.nlm.nih.gov/genbank/","yes","not_applicable","2017","not_applicable",2016,7,"yes",1991,24,7582,"update"
"MBDC0003",1520,"NCBI Genbank","www.ncbi.nlm.nih.gov","yes","not_applicable","2017","not_applicable",2007,312,"yes",1991,24,7582,"update"
"MBDC0003",216,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",1997,174,"yes",1991,24,7582,"update"
"MBDC0003",334,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",1998,312,"yes",1991,24,7582,"update"
"MBDC0003",903,"NCBI Genbank","http://www.ncbi.nlm.nih.gov/","yes","not_applicable","2017","not_applicable",2004,454,"yes",1991,24,7582,"update"
"MBDC0005",531,"TGI: Gene Indices","http://www.tigr.org/tdb/tdb.html","yes","not_applicable","2016","Access - Archived; ",2000,259,"yes",2000,3,775,"debut"
"MBDC0005",630,"TGI: Gene Indices","http://www.tigr.org/tdb/tgi.shtml","yes","not_applicable","2016","Access - Archived; ",2001,361,"yes",2000,3,775,"update"
"MBDC0005",1108,"TGI: Gene Indices","http://www.tigr.org/tdb/tgi","yes","not_applicable","2016","Access - Archived; ",2005,155,"yes",2000,3,775,"update"
"MBDC0007",2808,"NCBI COG: Clusters of Orthologous Groups","http://www.ncbi.nlm.nih.gov/COG/","yes","not_applicable","2014","not_applicable",2015,64,"yes",2000,3,2514,"update"
"MBDC0007",565,"NCBI COG: Clusters of Orthologous Groups","http://www.ncbi.nlm.nih.gov/COG","yes","not_applicable","2014","not_applicable",2001,1171,"yes",2000,3,2514,"update"
"MBDC0007",539,"NCBI COG: Clusters of Orthologous Groups","http://www.ncbi.nlm.nih.gov/COG","yes","not_applicable","2014","not_applicable",2000,1279,"yes",2000,3,2514,"debut"
"MBDC0008",696,"Homophila","http://homophila.sdsc.edu","no","can't be reached","not_applicable","not_applicable",2002,87,"no",2002,1,87,"debut"
"MBDC0013",1478,"EPConDB: Endocrine Pancreas Consortium Database","http://www.cbil.upenn.edu/EPConDB","yes","not_applicable","unknown","not_applicable",2007,8,"yes",2007,1,8,"debut"
"MBDC0015",646,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2001,42,"yes",1999,7,295,"update"
"MBDC0015",2062,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/expression.shtml","yes","not_applicable","2016","not_applicable",2011,56,"yes",1999,7,295,"update"
"MBDC0015",2730,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/expression.shtml","yes","not_applicable","2016","not_applicable",2014,36,"yes",1999,7,295,"update"
"MBDC0015",483,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2000,27,"yes",1999,7,295,"update"
"MBDC0015",377,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",1999,30,"yes",1999,7,295,"debut"
"MBDC0015",992,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2004,46,"yes",1999,7,295,"update"
"MBDC0015",1372,"GXD: mouse Gene Expression Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2007,58,"yes",1999,7,295,"update"
"MBDC0018",679,"MAGEST: MAboya Gene Expression patterns and Sequence Tags","http://www.genome.ad.jp/magest/","no","not found","not_applicable","not_applicable",2002,10,"no",2000,2,38,"update"
"MBDC0018",538,"MAGEST: MAboya Gene Expression patterns and Sequence Tags","http://www.genome.ad.jp/magest/","no","not found","not_applicable","not_applicable",2000,28,"no",2000,2,38,"debut"
"MBDC0019",654,"MethDB: Methylation DataBase ","http://www.methdb.de/","yes","not_applicable","2009","not_applicable",2001,47,"yes",2001,2,78,"debut"
"MBDC0019",823,"MethDB: Methylation DataBase ","http://www.methdb.net","yes","not_applicable","2009","not_applicable",2003,31,"yes",2001,2,78,"update"
"MBDC0021",580,"RECODE","http://recode.genetics.utah.edu/","no","can't be reached","not_applicable","not_applicable",2001,43,"yes",2001,3,116,"debut"
"MBDC0021",788,"RECODE","http://recode.genetics.utah.edu/","no","can't be reached","not_applicable","not_applicable",2003,46,"yes",2001,3,116,"update"
"MBDC0021",1991,"RECODE","http://recode.ucc.ie","yes","not_applicable","unknown","not_applicable",2010,27,"yes",2001,3,116,"update"
"MBDC0023",732,"Hugelndex","www.HugeIndex.org","no","forbidden","not_applicable","not_applicable",2002,43,"no",2002,1,43,"debut"
"MBDC0027",841,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2003,168,"yes",2002,15,6128,"update"
"MBDC0027",2958,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2016,51,"yes",2002,15,6128,"update"
"MBDC0027",1641,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2008,328,"yes",2002,15,6128,"update"
"MBDC0027",939,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2004,136,"yes",2002,15,6128,"update"
"MBDC0027",2334,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2012,626,"yes",2002,15,6128,"update"
"MBDC0027",1970,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2010,219,"yes",2002,15,6128,"update"
"MBDC0027",1226,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2006,266,"yes",2002,15,6128,"update"
"MBDC0027",1351,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2007,492,"yes",2002,15,6128,"update"
"MBDC0027",1845,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2009,614,"yes",2002,15,6128,"update"
"MBDC0027",1151,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2005,314,"yes",2002,15,6128,"update"
"MBDC0027",762,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2002,823,"yes",2002,15,6128,"debut"
"MBDC0027",2532,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2013,591,"yes",2002,15,6128,"update"
"MBDC0027",2112,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2011,523,"yes",2002,15,6128,"update"
"MBDC0027",2792,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2015,367,"yes",2002,15,6128,"update"
"MBDC0027",2607,"Ensembl","http://www.ensembl.org/","yes","not_applicable","2016","not_applicable",2014,610,"yes",2002,15,6128,"update"
"MBDC0028",915,"ASD: Alternative Splicing Database","http://www.ebi.ac.uk/asd","no","discontinued notice","not_applicable","not_applicable",2004,161,"no",2004,2,341,"debut"
"MBDC0028",1230,"ASD: Alternative Splicing Database","http://www.ebi.ac.uk/asd","no","discontinued notice","not_applicable","not_applicable",2006,180,"no",2004,2,341,"update"
"MBDC0030",14,"CUTG: Codon Usage Tabulated from GenBank","Physical","not_www","not_applicable","not_applicable","not_applicable",1991,109,"yes",1991,7,1157,"debut"
"MBDC0030",351,"CUTG: Codon Usage Tabulated from GenBank","http://www.dna.affrc.go.jp/~nakamura/CUTG.html","no","service unavailable","not_applicable","not_applicable",1999,157,"yes",1991,7,1157,"update"
"MBDC0030",33,"CUTG: Codon Usage Tabulated from GenBank","Physical","not_www","not_applicable","not_applicable","not_applicable",1992,162,"yes",1991,7,1157,"update"
"MBDC0030",252,"CUTG: Codon Usage Tabulated from GenBank","http://www.dna.affrc.go.jp/~nakamura/CUTG.html","no","service unavailable","not_applicable","not_applicable",1998,54,"yes",1991,7,1157,"update"
"MBDC0030",179,"CUTG: Codon Usage Tabulated from GenBank","http://www.dna.affrc.go.jp/∼nakamura/CUTG.html","no","not found","not_applicable","not_applicable",1997,63,"yes",1991,7,1157,"update"
"MBDC0030",142,"CUTG: Codon Usage Tabulated from GenBank","http://tisun4a.lab.nig.ac.jp/codon/CUTG.html","no","can't be reached","not_applicable","not_applicable",1996,54,"yes",1991,7,1157,"update"
"MBDC0030",498,"CUTG: Codon Usage Tabulated from GenBank","http://www.kazusa.or.jp/codon/","yes","not_applicable","2007","not_applicable",2000,558,"yes",1991,7,1157,"update"
"MBDC0031",959,"DBTBS: Database of Transcription in B. subtilis","http://elmo.ims.u-tokyo.ac.jp/dbtbs/","no","not found","not_applicable","not_applicable",2004,111,"yes",2001,3,342,"update"
"MBDC0031",600,"DBTBS: Database of Transcription in B. subtilis","http://elmo.ims.u-tokyo.ac.jp/dbtbs/","no","not found","not_applicable","not_applicable",2001,44,"yes",2001,3,342,"debut"
"MBDC0031",1544,"DBTBS: Database of Transcription in B. subtilis","http://dbtbs.hgc.jp","yes","not_applicable","2008","not_applicable",2008,187,"yes",2001,3,342,"update"
"MBDC0032",499,"EID: Exon-Intron Database","http://mcb.harvard.edu/gilbert/EID","no","forbidden","not_applicable","Disambiguation; different from ChEBI; Different from ExInt",2000,110,"no",2000,1,110,"debut"
"MBDC0033",259,"EPD: Eukaryotic Promoter Database","http://cmpteam4.unil.ch","no","can't be reached","not_applicable","not_applicable",1998,87,"yes",1998,8,509,"debut"
"MBDC0033",2858,"EPD: Eukaryotic Promoter Database","http://epd.vital-it.ch","yes","not_applicable","2016","not_applicable",2015,13,"yes",1998,8,509,"update"
"MBDC0033",720,"EPD: Eukaryotic Promoter Database","http://www.epd.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",2002,78,"yes",1998,8,509,"update"
"MBDC0033",514,"EPD: Eukaryotic Promoter Database","http://www.epd.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",2000,106,"yes",1998,8,509,"update"
"MBDC0033",1232,"EPD: Eukaryotic Promoter Database","http://www.epd.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",2006,92,"yes",1998,8,509,"update"
"MBDC0033",977,"EPD: Eukaryotic Promoter Database","http://www.epd.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",2004,75,"yes",1998,8,509,"update"
"MBDC0033",2473,"EPD: Eukaryotic Promoter Database","http://epd.vital-it.ch","yes","not_applicable","2016","not_applicable",2013,28,"yes",1998,8,509,"update"
"MBDC0033",344,"EPD: Eukaryotic Promoter Database","http://www.epd.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",1999,30,"yes",1998,8,509,"update"
"MBDC0037",601,"HUNT: HUman Novel Transcripts","http://www.hri.co.jp/HUNT","no","not found","not_applicable","not_applicable",2001,40,"no",2001,1,40,"debut"
"MBDC0038",1234,"HvrBase: HyperVariable Region Database","http://www.hvrbase.org","no","unrelated site redirect","not_applicable","not_applicable",2006,12,"no",1998,3,96,"update"
"MBDC0038",250,"HvrBase: HyperVariable Region Database","http://www.zi.biologie.uni-muenchen.de/~meyers/mtdna.html","no","service unavailable","not_applicable","Access - Failure Notes; login required, on request by contact to authors - database should be availbale",1998,65,"no",1998,3,96,"debut"
"MBDC0038",382,"HvrBase: HyperVariable Region Database","http://www.eva.mpg.de/hvrbase","no","not found","not_applicable","not_applicable",1999,19,"no",1998,3,96,"update"
"MBDC0040",408,"PLACE: PLAnt Cis-acting regulatory DNA Elements","http://www.dna.affrc.go.jp/htdocs/PLACE/","no","service unavailable","not_applicable","not_applicable",1999,1795,"no",1998,2,1904,"update"
"MBDC0040",298,"PLACE: PLAnt Cis-acting regulatory DNA Elements","http://www.dna.affrc.go.jp/htdocs/PLACE/","no","service unavailable","not_applicable","Access - Failure Notes; Service Status; Some of our database services, such as PLACE and KOME, are temporarily terminated for some reason. Unfortunately at the moment we don't know when we will be able to resume the services.",1998,109,"no",1998,2,1904,"debut"
"MBDC0041",350,"PlantCARE","http://sphinx.rug.ac.be:8080/PlantCARE/","no","can't be reached","not_applicable","not_applicable",1999,154,"no",1999,2,1075,"debut"
"MBDC0041",705,"PlantCARE","http://sphinx.rug.ac.be:8080/PlantCARE/","no","can't be reached","not_applicable","not_applicable",2002,921,"no",1999,2,1075,"update"
"MBDC0042",621,"PromEC","http://bioinfo.md.huji.ac.il/marg/promec","no","can't be reached","not_applicable","not_applicable",2001,44,"no",2001,1,44,"debut"
"MBDC0043",2885,"rrnDB","https://rrndb.umms.med.umich.edu/","yes","not_applicable","2016","not_applicable",2015,54,"yes",2001,3,852,"update"
"MBDC0043",1762,"rrnDB","http://ribosome.mmg.msu.edu/rrndb/index.php","no","can't be reached","not_applicable","not_applicable",2009,226,"yes",2001,3,852,"update"
"MBDC0043",587,"rrnDB","http://rrndb.cme.msu.edu","no","service unavailable","not_applicable","not_applicable",2001,572,"yes",2001,3,852,"debut"
"MBDC0045",887,"rSNP Guide","http://util.bionet.nsc.ru/databases/rsnp.html","no","can't be reached","not_applicable","Disambiguation; different than the earlier Guide RNA database; , a database system for analysis of transcription factor binding to DNA with variations",2003,22,"yes",2001,2,45,"update"
"MBDC0045",629,"rSNP Guide","http://wwwmgs.bionet.nsc.ru/mgs/systems/rsnp/","yes","not_applicable","unknown","Link; Indexing - other; Name wrong in Scopus title AND abstract (but good in PubMed) and also that IS the correct URL -""wwwmgs""",2001,23,"yes",2001,2,45,"debut"
"MBDC0046",586,"SpliceDB","http://www.softberry.com/spldb/SpliceDB.html","yes","not_applicable","unknown","not_applicable",2001,137,"yes",2001,1,137,"debut"
"MBDC0047",564,"STRBase: Short Tandem Repeat DNA Internet Database ","http://www.cstl.nist.gov/biotech/strbase/","yes","not_applicable","2017","Provenance; Interface; crazy old interface but google form asking about website design upgrate…. Incredible history of updates",2001,142,"yes",2001,1,142,"debut"
"MBDC0048",423,"TransTerm","http://biochem.otago.ac.nz:800/Transterm/homepage.html","no","can't be reached","not_applicable","not_applicable",1999,23,"yes",1993,10,250,"update"
"MBDC0048",323,"TransTerm","http://biochem.otago.ac.nz:800/Transterm/html","no","can't be reached","not_applicable","not_applicable",1998,21,"yes",1993,10,250,"update"
"MBDC0048",56,"TransTerm","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,57,"yes",1993,10,250,"debut"
"MBDC0048",508,"TransTerm","http://biochem.otago.ac.nz/Transterm/","no","not found","not_applicable","not_applicable",2000,18,"yes",1993,10,250,"update"
"MBDC0048",1726,"TransTerm","http://mRNA.otago.ac.nz/Transterm.html","yes","not_applicable","unknown","not_applicable",2009,44,"yes",1993,10,250,"update"
"MBDC0048",1256,"TransTerm","http://uther.otago.ac.nz/Transterm.html","no","can't be reached","not_applicable","not_applicable",2006,20,"yes",1993,10,250,"update"
"MBDC0048",97,"TransTerm","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,17,"yes",1993,10,250,"update"
"MBDC0048",154,"TransTerm","http://biochem.otaga.ac.nz.800/","no","can't be reached","not_applicable","not_applicable",1996,16,"yes",1993,10,250,"update"
"MBDC0048",217,"TransTerm","http://biochem.otago.ac.nz:800/Transterm/homepage/html","no","can't be reached","not_applicable","not_applicable",1997,17,"yes",1993,10,250,"update"
"MBDC0048",672,"TransTerm","http://uther.otago.ac.nz/Transterm.html","no","can't be reached","not_applicable","not_applicable",2002,17,"yes",1993,10,250,"update"
"MBDC0049",769,"TRRD: Transcription Regulatory Regions Database","http://www.bionet.nsc.ru/trrd/","yes","not_applicable","unknown","not_applicable",2002,80,"yes",1999,3,141,"update"
"MBDC0049",393,"TRRD: Transcription Regulatory Regions Database","http://www.bionet.nsc.ru/trrd/","yes","not_applicable","unknown","not_applicable",1999,22,"yes",1999,3,141,"debut"
"MBDC0049",549,"TRRD: Transcription Regulatory Regions Database","http://wwwmgs.bionet.nsc.ru/mgs/dbases/trrd4/","yes","not_applicable","unknown","not_applicable",2000,39,"yes",1999,3,141,"update"
"MBDC0051",1186,"WormBase","http://wormbase.org","yes","not_applicable","2017","not_applicable",2006,66,"yes",2001,11,1142,"update"
"MBDC0051",1587,"WormBase","http://www.wormbase.org","yes","not_applicable","2017","not_applicable",2008,79,"yes",2001,11,1142,"update"
"MBDC0051",585,"WormBase","http://www.wormbase.org","yes","not_applicable","2017","not_applicable",2001,200,"yes",2001,11,1142,"debut"
"MBDC0051",1363,"WormBase","http://wormbase.org","yes","not_applicable","2017","not_applicable",2007,64,"yes",2001,11,1142,"update"
"MBDC0051",1952,"WormBase","http://www.wormbase.org","yes","not_applicable","2017","not_applicable",2010,198,"yes",2001,11,1142,"update"
"MBDC0051",1147,"WormBase","http://www.wormbase.org","yes","not_applicable","2017","not_applicable",2005,124,"yes",2001,11,1142,"update"
"MBDC0051",3010,"WormBase","www.wormbase.org","yes","not_applicable","2017","not_applicable",2016,9,"yes",2001,11,1142,"update"
"MBDC0051",2683,"WormBase","http://www.wormbase.org/","yes","not_applicable","2017","not_applicable",2014,72,"yes",2001,11,1142,"update"
"MBDC0051",1025,"WormBase","http://www.wormbase.org/","yes","not_applicable","2017","not_applicable",2004,115,"yes",2001,11,1142,"update"
"MBDC0051",880,"WormBase","http://www.wormbase.org/","yes","not_applicable","2017","not_applicable",2003,88,"yes",2001,11,1142,"update"
"MBDC0051",2326,"WormBase","http://www.wormbase.org/","yes","not_applicable","2017","not_applicable",2012,127,"yes",2001,11,1142,"update"
"MBDC0064",2382,"MitoZoa","http://www.caspur.it/mitozoa","no","not found","not_applicable","not_applicable",2012,25,"no",2012,1,25,"debut"
"MBDC0065",637,"ARKdb","www.thearkdb.org","yes","not_applicable","unknown","not_applicable",2001,50,"yes",2001,1,50,"debut"
"MBDC0067",443,"UK CropNet","http://synteny.nott.ac.uk/","no","can't be reached","not_applicable","not_applicable",2000,14,"no",2000,1,14,"debut"
"MBDC0068",289,"CyanoBase","http://www.kazusa.or.jp/cyano/","yes","not_applicable","2012","not_applicable",1998,138,"yes",1998,4,260,"debut"
"MBDC0068",2620,"CyanoBase","http://genome.microbedb.jp/cyanobase","yes","not_applicable","2012","not_applicable",2014,12,"yes",1998,4,260,"update"
"MBDC0068",512,"CyanoBase","http://www.kazusa.or.jp:8080/cyano/","no","can't be reached","not_applicable","not_applicable",2000,32,"yes",1998,4,260,"update"
"MBDC0068",1935,"CyanoBase","http://genome.kazusa.or.jp/cyanobase","yes","not_applicable","2012","not_applicable",2010,78,"yes",1998,4,260,"update"
"MBDC0069",2454,"EcoGene","http://ecogene.org","yes","not_applicable","unknown","not_applicable",2013,69,"yes",2000,2,258,"update"
"MBDC0069",463,"EcoGene","http://bmb.med.miami.edu/EcoGene/EcoWeb","yes","not_applicable","unknown","not_applicable",2000,189,"yes",2000,2,258,"debut"
"MBDC0071",1072,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2005,258,"yes",1994,17,2876,"update"
"MBDC0071",2904,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2015,103,"yes",1994,17,2876,"update"
"MBDC0071",371,"FlyBase","http://flybase.bio.indiana.edu/","yes","not_applicable","2016","Access - Transfer/Redirect; The FlyBase Drosophila genetics database and the public interfaces of the Berkeley Drosophila Genome Project (BDGP) and European Drosophila Genome Project (EDGP) are in the process of integrating.",1999,319,"yes",1994,17,2876,"update"
"MBDC0071",680,"FlyBase","http://flybase.bio.indiana.edu/","yes","not_applicable","2016","not_applicable",2002,78,"yes",1994,17,2876,"update"
"MBDC0071",285,"FlyBase","http://flybase.bio.indiana.edu/","yes","not_applicable","2016","not_applicable",1998,66,"yes",1994,17,2876,"update"
"MBDC0071",779,"FlyBase","http://flybase.bio.indiana.edu/","yes","not_applicable","2016","Access - Transfer/Redirect; http://flybase.bio.indiana.edu/ redirects to http://flybase.org",2003,333,"yes",1994,17,2876,"update"
"MBDC0071",2725,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2014,187,"yes",1994,17,2876,"update"
"MBDC0071",2333,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2012,252,"yes",1994,17,2876,"update"
"MBDC0071",3021,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2016,31,"yes",1994,17,2876,"update"
"MBDC0071",1557,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2008,114,"yes",1994,17,2876,"update"
"MBDC0071",1389,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2007,168,"yes",1994,17,2876,"update"
"MBDC0071",1758,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2009,528,"yes",1994,17,2876,"update"
"MBDC0071",2568,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2013,146,"yes",1994,17,2876,"update"
"MBDC0071",1197,"FlyBase","http://flybase.org","yes","not_applicable","2016","not_applicable",2006,160,"yes",1994,17,2876,"update"
"MBDC0071",126,"FlyBase","Physical","not_www","not_applicable","not_applicable","not_applicable",1996,21,"yes",1994,17,2876,"update"
"MBDC0071",85,"FlyBase","Server","not_www","not_applicable","not_applicable","not_applicable",1994,23,"yes",1994,17,2876,"debut"
"MBDC0071",228,"FlyBase","http://flybase.bio.indiana.edu/","yes","not_applicable","2016","Access - Other; many, many access mechanisms and URLs",1997,89,"yes",1994,17,2876,"update"
"MBDC0072",2043,"DB-AT: Database of Apicomplexan Transcriptomes","http://fullmal.hgc.jp/","yes","not_applicable","2014","not_applicable",2011,13,"yes",2001,5,73,"update"
"MBDC0072",2795,"DB-AT: Database of Apicomplexan Transcriptomes","http://fullmal.hgc.jp/","yes","not_applicable","2014","Naming; formerly Full Maleria",2015,2,"yes",2001,5,73,"update"
"MBDC0072",1000,"DB-AT: Database of Apicomplexan Transcriptomes","http://fullmal.ims.u‐tokyo.ac.jp","no","can't be reached","not_applicable","not_applicable",2004,22,"yes",2001,5,73,"update"
"MBDC0072",1863,"DB-AT: Database of Apicomplexan Transcriptomes","http://fullmal.hgc.jp/","yes","not_applicable","2014","not_applicable",2009,13,"yes",2001,5,73,"update"
"MBDC0072",613,"DB-AT: Database of Apicomplexan Transcriptomes","http://133.11.149.55/","no","can't be reached","not_applicable","not_applicable",2001,23,"yes",2001,5,73,"debut"
"MBDC0073",2102,"HGNC Genenames.org","www.genenames.org","yes","not_applicable","2017","not_applicable",2011,163,"yes",2002,7,857,"update"
"MBDC0073",1628,"HGNC Genenames.org","http://www.genenames.org","yes","not_applicable","2017","not_applicable",2008,144,"yes",2002,7,857,"update"
"MBDC0073",1007,"HGNC Genenames.org","http://www.gene.ucl.ac.uk/cgi-bin/nomenclature/searchgenes.pl","no","can't be reached","not_applicable","not_applicable",2004,97,"yes",2002,7,857,"update"
"MBDC0073",2446,"HGNC Genenames.org","http://www.genenames.org","yes","not_applicable","2017","not_applicable",2013,141,"yes",2002,7,857,"update"
"MBDC0073",1271,"HGNC Genenames.org","http://www.gene.ucl.ac.uk/cgi-bin/nomenclature/searchgenes.pl","no","can't be reached","not_applicable","not_applicable",2006,123,"yes",2002,7,857,"update"
"MBDC0073",2771,"HGNC Genenames.org","http://www.genenames.org","yes","not_applicable","2017","not_applicable",2015,97,"yes",2002,7,857,"update"
"MBDC0073",676,"HGNC Genenames.org","http://www.gene.ucl.ac.uk/cgi-bin/nomenclature/searchgenes.pl","no","can't be reached","not_applicable","not_applicable",2002,92,"yes",2002,7,857,"debut"
"MBDC0074",1196,"GOBASE","http://gobase.bcm.umontreal.ca/","yes","not_applicable","2010","not_applicable",2006,20,"yes",1998,5,140,"update"
"MBDC0074",1725,"GOBASE","http://gobase.bcm.umontreal.ca/","yes","not_applicable","2010","not_applicable",2009,43,"yes",1998,5,140,"update"
"MBDC0074",296,"GOBASE","http://megasun.bch.umontreal.ca/gobase/gobase.html","yes","not_applicable","2010","not_applicable",1998,37,"yes",1998,5,140,"debut"
"MBDC0074",622,"GOBASE","http://megasun.bch.umontreal.ca/gobase","yes","not_applicable","2010","not_applicable",2001,20,"yes",1998,5,140,"update"
"MBDC0074",874,"GOBASE","http://megasun.bch.umontreal.ca/gobase/gobase.html","yes","not_applicable","2010","not_applicable",2003,20,"yes",1998,5,140,"update"
"MBDC0075",562,"JGI GOLD: Genomes OnLine Database","http://igweb.integratedgenomics.com/GOLD/","no","can't be reached","not_applicable","not_applicable",2001,198,"yes",2001,6,1297,"debut"
"MBDC0075",2782,"JGI GOLD: Genomes OnLine Database","http://www.genomesonline.org/","yes","not_applicable","2017","not_applicable",2015,103,"yes",2001,6,1297,"update"
"MBDC0075",1930,"JGI GOLD: Genomes OnLine Database","http://www.genomesonline.org","yes","not_applicable","2017","not_applicable",2010,292,"yes",2001,6,1297,"update"
"MBDC0075",1302,"JGI GOLD: Genomes OnLine Database","http://www.genomesonline.org","yes","not_applicable","2017","not_applicable",2006,138,"yes",2001,6,1297,"update"
"MBDC0075",2217,"JGI GOLD: Genomes OnLine Database","http://www.genomesonline.org/","yes","not_applicable","2017","not_applicable",2012,291,"yes",2001,6,1297,"update"
"MBDC0075",1596,"JGI GOLD: Genomes OnLine Database","http://www.genomesonline.org","yes","not_applicable","2017","not_applicable",2008,275,"yes",2001,6,1297,"update"
"MBDC0077",552,"Human BAC Ends Database","http://www.tigr.org/tdb/humgen/bac_end_search/bac_end_intro.html","no","forbidden","not_applicable","not_applicable",2000,14,"no",2000,1,14,"debut"
"MBDC0080",1134,"LIS: Legume Information System","http://www.comparative-legumes.org","yes","not_applicable","2016","not_applicable",2005,59,"yes",2005,2,59,"debut"
"MBDC0080",2988,"LIS: Legume Information System","http://legumeinfo.org","yes","not_applicable","2016","not_applicable",2016,0,"yes",2005,2,59,"update"
"MBDC0084",136,"MITOMAP","http://www.gen.emory.edu/mitomap.html","no","can't be reached","not_applicable","not_applicable",1996,80,"yes",1996,5,814,"debut"
"MBDC0084",237,"MITOMAP","http://www.gen.emory.edu/mitomap.html","no","can't be reached","not_applicable","not_applicable",1997,27,"yes",1996,5,814,"update"
"MBDC0084",1438,"MITOMAP","http://www.mitomap.org","yes","not_applicable","unknown","not_applicable",2007,348,"yes",1996,5,814,"update"
"MBDC0084",1124,"MITOMAP","http://www.MITOMAP.org","yes","not_applicable","unknown","not_applicable",2005,238,"yes",1996,5,814,"update"
"MBDC0084",297,"MITOMAP","http://www.gen.emory.edu/MITOMAP","no","can't be reached","not_applicable","not_applicable",1998,121,"yes",1996,5,814,"update"
"MBDC0085",751,"MitoNuc","http://bighost.area.ba.cnr.it/mitochondriome","no","can't be reached","not_applicable","not_applicable",2002,10,"no",2000,2,13,"update"
"MBDC0085",527,"MitoNuc","http://bio-www.ba.cnr.it:8000/srs6/","no","can't be reached","not_applicable","not_applicable",2000,3,"no",2000,2,13,"debut"
"MBDC0087",2682,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2014,107,"yes",1997,20,1878,"update"
"MBDC0087",1112,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2005,167,"yes",1997,20,1878,"update"
"MBDC0087",557,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2000,91,"yes",1997,20,1878,"update"
"MBDC0087",665,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2002,90,"yes",1997,20,1878,"update"
"MBDC0087",2205,"MGD: Mouse Genome Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2011,171,"yes",1997,20,1878,"update"
"MBDC0087",2390,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2012,185,"yes",1997,20,1878,"update"
"MBDC0087",1671,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2008,278,"yes",1997,20,1878,"update"
"MBDC0087",588,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2001,52,"yes",1997,20,1878,"update"
"MBDC0087",1334,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2006,60,"yes",1997,20,1878,"update"
"MBDC0087",1427,"MGD: Mouse Genome Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2007,79,"yes",1997,20,1878,"update"
"MBDC0087",3051,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2016,8,"yes",1997,20,1878,"update"
"MBDC0087",195,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",1997,42,"yes",1997,20,1878,"debut"
"MBDC0087",2873,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2015,93,"yes",1997,20,1878,"update"
"MBDC0087",385,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",1999,45,"yes",1997,20,1878,"update"
"MBDC0087",947,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2004,51,"yes",1997,20,1878,"update"
"MBDC0087",1975,"MGD: Mouse Genome Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2010,50,"yes",1997,20,1878,"update"
"MBDC0087",1856,"MGD: Mouse Genome Database","http://www.informatics.jax.org/","yes","not_applicable","2016","not_applicable",2009,74,"yes",1997,20,1878,"update"
"MBDC0087",253,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",1998,26,"yes",1997,20,1878,"update"
"MBDC0087",2567,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2013,44,"yes",1997,20,1878,"update"
"MBDC0087",795,"MGD: Mouse Genome Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2003,165,"yes",1997,20,1878,"update"
"MBDC0091",614,"PlasmoDB","http://PlasmoDB.org","yes","not_applicable","2017","not_applicable",2001,55,"yes",2001,4,714,"debut"
"MBDC0091",1861,"PlasmoDB","http://PlasmoDB.org","yes","not_applicable","2017","not_applicable",2009,356,"yes",2001,4,714,"update"
"MBDC0091",856,"PlasmoDB","http://PlasmoDB.org","yes","not_applicable","2017","not_applicable",2003,217,"yes",2001,4,714,"update"
"MBDC0091",757,"PlasmoDB","http://PlasmoDB.org","yes","not_applicable","2017","not_applicable",2002,86,"yes",2001,4,714,"update"
"MBDC0093",1399,"RGD: Rat Genome Database","http://rgd.mcw.edu","yes","not_applicable","2017","not_applicable",2007,101,"yes",2002,5,292,"update"
"MBDC0093",697,"RGD: Rat Genome Database","http://rgd.mcw.edu","yes","not_applicable","2016","not_applicable",2002,67,"yes",2002,5,292,"debut"
"MBDC0093",2850,"RGD: Rat Genome Database","http://rgd.mcw.edu","yes","not_applicable","2017","not_applicable",2015,33,"yes",2002,5,292,"update"
"MBDC0093",1068,"RGD: Rat Genome Database","http://rgd.mcw.edu","yes","not_applicable","2017","not_applicable",2005,40,"yes",2002,5,292,"update"
"MBDC0093",1746,"RGD: Rat Genome Database","http://rgd.mcw.edu","yes","not_applicable","2017","not_applicable",2009,51,"yes",2002,5,292,"update"
"MBDC0096",671,"SubtiList","http://genolist.pasteur.fr/","yes","not_applicable","unknown","not_applicable",2002,88,"yes",2002,1,88,"debut"
"MBDC0097",1706,"TAIR: The Arabidopsis Information Resource","http://arabidopsis.org","yes","not_applicable","2017","not_applicable",2008,532,"yes",2001,4,1786,"update"
"MBDC0097",2336,"TAIR: The Arabidopsis Information Resource","http://arabidopsis.org","yes","not_applicable","2017","not_applicable",2012,535,"yes",2001,4,1786,"update"
"MBDC0097",886,"TAIR: The Arabidopsis Information Resource","http://arabidopsis.org","yes","not_applicable","2017","not_applicable",2003,479,"yes",2001,4,1786,"update"
"MBDC0097",603,"TAIR: The Arabidopsis Information Resource","www.arabidopsis.org","yes","not_applicable","2017","not_applicable",2001,240,"yes",2001,4,1786,"debut"
"MBDC0101",1550,"ZFIN: Zebrafish Information Network","http://zfin.org","yes","not_applicable","unknown","Indexing - link error; url wrong in the abstract",2008,108,"yes",2001,6,616,"update"
"MBDC0101",576,"ZFIN: Zebrafish Information Network","http://zfin.org/ZFIN/","yes","not_applicable","unknown","not_applicable",2001,81,"yes",2001,6,616,"debut"
"MBDC0101",868,"ZFIN: Zebrafish Information Network","http://zfin.org","yes","not_applicable","unknown","not_applicable",2003,81,"yes",2001,6,616,"update"
"MBDC0101",2498,"ZFIN: Zebrafish Information Network","http://zfin.org","yes","not_applicable","unknown","not_applicable",2013,40,"yes",2001,6,616,"update"
"MBDC0101",1303,"ZFIN: Zebrafish Information Network","http://zfin.org","yes","not_applicable","unknown","Examples dates; last newsletter is 2009 - the archives just looks like events",2006,159,"yes",2001,6,616,"update"
"MBDC0101",2152,"ZFIN: Zebrafish Information Network","http://zfin.org","yes","not_applicable","unknown","not_applicable",2011,147,"yes",2001,6,616,"update"
"MBDC0104",604,"DIP: Database of Interacting Proteins","http://dip.doe-mbi.ucla.edu","yes","not_applicable","2014","not_applicable",2001,139,"yes",2000,4,2825,"update"
"MBDC0104",521,"DIP: Database of Interacting Proteins","http://dip.doe-mbi.ucla.edu","yes","not_applicable","2014","not_applicable",2000,533,"yes",2000,4,2825,"debut"
"MBDC0104",933,"DIP: Database of Interacting Proteins","http://dip.doe-mbi.ucla.edu","yes","not_applicable","2014","not_applicable",2004,1160,"yes",2000,4,2825,"update"
"MBDC0104",729,"DIP: Database of Interacting Proteins","http://dip.doe-mbi.ucla.edu","yes","not_applicable","2014","not_applicable",2002,993,"yes",2000,4,2825,"update"
"MBDC0105",319,"DRC: Database of Ribosomal Crosslinks","http://Ribosome.Genebee.MSU.SU/DRC/","no","not found","not_applicable","not_applicable",1998,19,"no",1998,2,52,"debut"
"MBDC0105",406,"DRC: Database of Ribosomal Crosslinks","http://visitweb.com/database/","no","not found","not_applicable","Mirror fail; http://www.mpimg-berlin-dahlem.mpg.de/ag_ribo/~ag_brimacombe/drc/ can't be reached",1999,33,"no",1998,2,52,"update"
"MBDC0108",273,"EcoCyc","http://ecocyc.PangeaSystems.com/ecocyc/","no","can't be reached","not_applicable","not_applicable",1998,46,"yes",1996,10,1916,"update"
"MBDC0108",192,"EcoCyc","http://ecocyc.PangeaSystems.com/ecocyc/","no","can't be reached","not_applicable","not_applicable",1997,30,"yes",1996,10,1916,"update"
"MBDC0108",761,"EcoCyc","http://ecocyc.org/","yes","not_applicable","2016","not_applicable",2002,305,"yes",1996,10,1916,"update"
"MBDC0108",1777,"EcoCyc","http://EcoCyc.org/","yes","not_applicable","2016","not_applicable",2009,263,"yes",1996,10,1916,"update"
"MBDC0108",1046,"EcoCyc","http://EcoCyc.org/","yes","not_applicable","2016","not_applicable",2005,471,"yes",1996,10,1916,"update"
"MBDC0108",547,"EcoCyc","http://ecocyc.PangeaSystems.com/ecocyc/","no","can't be reached","not_applicable","not_applicable",2000,174,"yes",1996,10,1916,"update"
"MBDC0108",2443,"EcoCyc","http://EcoCyc.org/","yes","not_applicable","2016","not_applicable",2013,216,"yes",1996,10,1916,"update"
"MBDC0108",338,"EcoCyc","http://ecocyc.PangeaSystems.com/ecocyc/","no","can't be reached","not_applicable","not_applicable",1999,89,"yes",1996,10,1916,"update"
"MBDC0108",2086,"EcoCyc","http://EcoCyc.org/","yes","not_applicable","2016","not_applicable",2011,246,"yes",1996,10,1916,"update"
"MBDC0108",157,"EcoCyc","http://www.ai.sri.com/ecocyc/ecocyc.html","no","forbidden","not_applicable","not_applicable",1996,76,"yes",1996,10,1916,"debut"
"MBDC0109",123,"ENZYME Data Bank","http://expasy.hcuge.ch/","yes","not_applicable","2016","not_applicable",1996,47,"yes",1993,5,675,"update"
"MBDC0109",41,"ENZYME Data Bank","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,50,"yes",1993,5,675,"debut"
"MBDC0109",397,"ENZYME Data Bank","http://www.expasy.ch/","yes","not_applicable","2016","not_applicable",1999,32,"yes",1993,5,675,"update"
"MBDC0109",517,"ENZYME Data Bank","http://www.expasy.ch/enzyme/","yes","not_applicable","2016","not_applicable",2000,515,"yes",1993,5,675,"update"
"MBDC0109",86,"ENZYME Data Bank","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,31,"yes",1993,5,675,"update"
"MBDC0110",368,"EpoDB","http://www.cbil.upenn.edu/epodb","no","not found","not_applicable","not_applicable",1999,22,"no",1998,2,27,"update"
"MBDC0110",326,"EpoDB","http://cbil.humgen.upenn.edu/epodb","no","can't be reached","not_applicable","not_applicable",1998,5,"no",1998,2,27,"debut"
"MBDC0112",2349,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.kegg.jp/","yes","not_applicable","2017","not_applicable",2012,1635,"yes",1999,11,16832,"update"
"MBDC0112",1931,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.jp/kegg/","yes","not_applicable","2017","not_applicable",2010,1193,"yes",1999,11,16832,"update"
"MBDC0112",1311,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.jp/kegg/","yes","not_applicable","2017","not_applicable",2006,1655,"yes",1999,11,16832,"update"
"MBDC0112",2685,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.kegg.jp/","yes","not_applicable","2016","Other; alt good http://www.genome.jp/kegg/",2014,959,"yes",1999,11,16832,"update"
"MBDC0112",1586,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.jp/kegg/","yes","not_applicable","2017","not_applicable",2008,1821,"yes",1999,11,16832,"update"
"MBDC0112",948,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.ad.jp/kegg/","yes","not_applicable","2017","not_applicable",2004,1724,"yes",1999,11,16832,"update"
"MBDC0112",744,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.ad.jp","yes","not_applicable","2017","not_applicable",2002,746,"yes",1999,11,16832,"update"
"MBDC0112",2564,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.jp/kegg/","yes","not_applicable","2017","not_applicable",2013,35,"yes",1999,11,16832,"update"
"MBDC0112",430,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.ad.jp/kegg/","yes","not_applicable","2017","not_applicable",1999,1408,"yes",1999,11,16832,"debut"
"MBDC0112",456,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.genome.ad.jp/kegg/","yes","not_applicable","2017","not_applicable",2000,5558,"yes",1999,11,16832,"update"
"MBDC0112",2970,"KEGG: Kyoto Encyclopedia of Genes and Genomes","http://www.kegg.jp/","yes","not_applicable","2017","not_applicable",2016,98,"yes",1999,11,16832,"update"
"MBDC0114",1530,"MetaCyc","MetaCyc.org","yes","not_applicable","2016","not_applicable",2008,184,"yes",2002,8,1204,"update"
"MBDC0114",3062,"MetaCyc","MetaCyc.org","yes","not_applicable","2016","not_applicable",2016,5,"yes",2002,8,1204,"update"
"MBDC0114",2369,"MetaCyc","MetaCyc.org","yes","not_applicable","2016","not_applicable",2012,148,"yes",2002,8,1204,"update"
"MBDC0114",1954,"MetaCyc","MetaCyc.org","yes","not_applicable","2016","not_applicable",2010,155,"yes",2002,8,1204,"update"
"MBDC0114",693,"MetaCyc","http://ecocyc.org/ecocyc/metacyc.html","no","not found","not_applicable","not_applicable",2002,176,"yes",2002,8,1204,"debut"
"MBDC0114",2656,"MetaCyc","MetaCyc.org","yes","not_applicable","2016","not_applicable",2014,127,"yes",2002,8,1204,"update"
"MBDC0114",995,"MetaCyc","http://MetaCyc.org","yes","not_applicable","2016","not_applicable",2004,192,"yes",2002,8,1204,"update"
"MBDC0114",1332,"MetaCyc","http://MetaCyc.org/","yes","not_applicable","2016","not_applicable",2006,217,"yes",2002,8,1204,"update"
"MBDC0116",1564,"RegulonDB","http://regulondb.ccg.unam.mx/","yes","not_applicable","2016","not_applicable",2008,310,"yes",1998,10,1445,"update"
"MBDC0116",2499,"RegulonDB","http://regulondb.ccg.unam.mx/","yes","not_applicable","2016","not_applicable",2013,204,"yes",1998,10,1445,"update"
"MBDC0116",3083,"RegulonDB","http://regulondb.ccg.unam.mx","yes","not_applicable","2016","not_applicable",2016,4,"yes",1998,10,1445,"update"
"MBDC0116",1272,"RegulonDB","http://regulondb.ccg.unam.mx","yes","not_applicable","2016","not_applicable",2006,173,"yes",1998,10,1445,"update"
"MBDC0116",626,"RegulonDB","http://www.cifn.unam.mx/Computationalology/regulondb/","no","not found","not_applicable","Other; check out some granular versioning",2001,170,"yes",1998,10,1445,"update"
"MBDC0116",248,"RegulonDB","http://www.cifn.unam.mx/Computational_Biology/regulondb","no","not found","not_applicable","not_applicable",1998,115,"yes",1998,10,1445,"debut"
"MBDC0116",388,"RegulonDB","http://www.cifn.unam.mx/Computational_Biology/regulondb/","no","not found","not_applicable","not_applicable",1999,29,"yes",1998,10,1445,"update"
"MBDC0116",509,"RegulonDB","http://www.cifn.unam.mx/Computational_Biology/regulondb/","no","not found","not_applicable","not_applicable",2000,44,"yes",1998,10,1445,"update"
"MBDC0116",1035,"RegulonDB","http://www.cifn.unam.mx/Computationalology/regulondb/","no","not found","not_applicable","not_applicable",2004,179,"yes",1998,10,1445,"update"
"MBDC0116",2073,"RegulonDB","http://regulondb.ccg.unam.mx/","yes","not_applicable","2016","not_applicable",2011,217,"yes",1998,10,1445,"update"
"MBDC0117",1204,"University of Minnesota Biocatalysis/Biodegradation Database","http://umbbd.ahc.umn.edu/","no","can't be reached","not_applicable","not_applicable",2006,106,"no",1999,6,334,"update"
"MBDC0117",505,"University of Minnesota Biocatalysis/Biodegradation Database","http://www.labmed.umn.edu/umbbd/","no","can't be reached","not_applicable","not_applicable",2000,28,"no",1999,6,334,"update"
"MBDC0117",363,"University of Minnesota Biocatalysis/Biodegradation Database","http://www.labmed.umn.edu/umbbd/index.html","no","can't be reached","not_applicable","not_applicable",1999,25,"no",1999,6,334,"debut"
"MBDC0117",632,"University of Minnesota Biocatalysis/Biodegradation Database","http://umbbd.ahc.umn.edu/","no","can't be reached","not_applicable","not_applicable",2001,43,"no",1999,6,334,"update"
"MBDC0117",1956,"University of Minnesota Biocatalysis/Biodegradation Database","http://umbbd.msi.umn.edu/","no","can't be reached","not_applicable","not_applicable",2010,82,"no",1999,6,334,"update"
"MBDC0117",883,"University of Minnesota Biocatalysis/Biodegradation Database","http://umbbd.ahc.umn.edu/","no","can't be reached","not_applicable","not_applicable",2003,50,"no",1999,6,334,"update"
"MBDC0119",845,"ALFRED: Allele Frequency Database ","http://alfred.med.yale.edu","yes","not_applicable","unknown","not_applicable",2003,47,"yes",2000,4,144,"update"
"MBDC0119",595,"ALFRED: Allele Frequency Database ","https://alfred.med.yale.edu/alfred/index.asp","yes","not_applicable","unknown","not_applicable",2001,22,"yes",2000,4,144,"update"
"MBDC0119",519,"ALFRED: Allele Frequency Database ","http://info.med.yale.edu/genetics/kkidd","no","related generic reseach institution site redirect","not_applicable","not_applicable",2000,50,"yes",2000,4,144,"debut"
"MBDC0119",2366,"ALFRED: Allele Frequency Database ","http://alfred.med.yale.edu","yes","not_applicable","unknown","not_applicable",2012,25,"yes",2000,4,144,"update"
"MBDC0120",213,"Androgen Receptor Gene Mutations Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1997,43,"no",1994,4,241,"update"
"MBDC0120",328,"Androgen Receptor Gene Mutations Database","http://www.mcgill.ca/androgendb/","no","related generic reseach institution site redirect","not_applicable","not_applicable",1998,136,"no",1994,4,241,"update"
"MBDC0120",152,"Androgen Receptor Gene Mutations Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1996,27,"no",1994,4,241,"update"
"MBDC0120",95,"Androgen Receptor Gene Mutations Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,35,"no",1994,4,241,"debut"
"MBDC0122",812,"Atlas of Genetics and Cytogenetics in Oncology and Haematology","http://www.infobiogen.fr/services/chromcancer","no","can't be reached","not_applicable","not_applicable",2003,34,"yes",1999,5,121,"update"
"MBDC0122",542,"Atlas of Genetics and Cytogenetics in Oncology and Haematology","http://www.infobiogen.fr/services/chromcancer","no","can't be reached","not_applicable","not_applicable",2000,28,"yes",1999,5,121,"update"
"MBDC0122",577,"Atlas of Genetics and Cytogenetics in Oncology and Haematology","http://www.infobiogen.fr/services/chromcancer","no","can't be reached","not_applicable","not_applicable",2001,14,"yes",1999,5,121,"update"
"MBDC0122",356,"Atlas of Genetics and Cytogenetics in Oncology and Haematology","http://www.infobiogen.fr/services/chromcancer","no","can't be reached","not_applicable","not_applicable",1999,11,"yes",1999,5,121,"debut"
"MBDC0122",2407,"Atlas of Genetics and Cytogenetics in Oncology and Haematology","http://atlasgeneticsoncology.org/","yes","not_applicable","2016","Funding; donate now",2013,34,"yes",1999,5,121,"update"
"MBDC0123",308,"BTKbase: Bruton's agammaglobulinemia Tyrosine Kinase database","http://www.helsinki.fi/science/signal/btkbase.html","no","can't be reached","not_applicable","not_applicable",1998,66,"no",1996,3,126,"update"
"MBDC0123",227,"BTKbase: Bruton's agammaglobulinemia Tyrosine Kinase database","http://www.helsinki.fi/science/signal/btkbase.html","no","can't be reached","not_applicable","not_applicable",1997,32,"no",1996,3,126,"update"
"MBDC0123",133,"BTKbase: Bruton's agammaglobulinemia Tyrosine Kinase database","Server","not_www","not_applicable","not_applicable","not_applicable",1996,28,"no",1996,3,126,"debut"
"MBDC0126",313,"Germline p53 Mutations in Cancer Prone Families","http://www.If2.cuni.cz","no","can't be reached","not_applicable","not_applicable",1998,35,"no",1998,1,35,"debut"
"MBDC0128",1018,"FLAGdb++","http://genoplanteinfo.infobiogen.fr/FLAGdb/","no","can't be reached","not_applicable","not_applicable",2004,44,"no",2004,1,44,"debut"
"MBDC0130",66,"Haemophilia B","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,44,"no",1991,7,342,"update"
"MBDC0130",181,"Haemophilia B","http://www.umds.ac.uk/molgen/haemBdatabase","no","related generic reseach institution site redirect","not_applicable","Disambiguation; diff than Hamsters /A",1997,34,"no",1991,7,342,"update"
"MBDC0130",40,"Haemophilia B","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,48,"no",1991,7,342,"update"
"MBDC0130",9,"Haemophilia B","Physical","not_www","not_applicable","not_applicable","Access - Other; floppy discs written in Wordperfect 5.1 on an IBM PS2 computer. We hope to generate a new-style database by 1992 …",1991,29,"no",1991,7,342,"debut"
"MBDC0130",130,"Haemophilia B","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1996,43,"no",1991,7,342,"update"
"MBDC0130",19,"Haemophilia B","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,26,"no",1991,7,342,"update"
"MBDC0130",295,"Haemophilia B","http://www.umds.ac.uk/molgen/haemBdatabase.htm","no","related generic reseach institution site redirect","not_applicable","not_applicable",1998,118,"no",1991,7,342,"update"
"MBDC0131",1028,"GWAS Centeral ","http://hgvbase.cgb.ki.se","no","can't be reached","not_applicable","Provenance; formerly known as HGBASE and predecessor to GWAS Central",2004,58,"yes",2000,4,286,"update"
"MBDC0131",486,"GWAS Centeral ","http://hgbase.cgr.ki.se","no","can't be reached","not_applicable","Provenance; predecessor to HGVbase: Human Genome Variation database and GWAS Centeral ",2000,75,"yes",2000,4,286,"debut"
"MBDC0131",1835,"GWAS Centeral ","http://www.hgvbaseg2p.org","yes","not_applicable","2016","Access - Transfer/Redirect; redirect that says ""is now named GWAS Centeral""",2009,49,"yes",2000,4,286,"update"
"MBDC0131",712,"GWAS Centeral ","http://hgvbase.cgb.ki.se","no","can't be reached","not_applicable","Provenance; formerly known as HGBASE and predecessor to GWAS Central",2002,104,"yes",2000,4,286,"update"
"MBDC0136",271,"Human PAX6 Mutation Database","http://www.hgu.mrc.ac.uk/Softdata/PAX6/","no","related generic reseach institution site redirect","not_applicable","not_applicable",1998,57,"no",1998,1,57,"debut"
"MBDC0137",230,"Human Collagen Mutation Database","http://www.le.ac.uk/depts/ge/collagen/collagen.htm","yes","not_applicable","2016","not_applicable",1997,182,"yes",1997,2,326,"debut"
"MBDC0137",299,"Human Collagen Mutation Database","http://www.le.ac.uk/genetics/collagen/","yes","not_applicable","2016","Licensing; fascinating copyright notice",1998,144,"yes",1997,2,326,"update"
"MBDC0138",828,"KDBI: Kinetic Data of Biomolecular Interactions","http://xin.cz3.nus.edu.sg/group/kdbi/kdbi.asp","no","can't be reached","not_applicable","not_applicable",2003,25,"yes",2003,2,36,"debut"
"MBDC0138",1782,"KDBI: Kinetic Data of Biomolecular Interactions","http://bidd.nus.edu.sg/group/kdbi/kdbi.asp","yes","not_applicable","unknown","not_applicable",2009,11,"yes",2003,2,36,"update"
"MBDC0139",370,"KinMutBase","http://www.uta.fi/laitokset/imt/KinMutBase.htm","no","related generic reseach institution site redirect","not_applicable","not_applicable",1999,12,"no",1999,2,23,"debut"
"MBDC0139",467,"KinMutBase","http://www.uta.fi/imt/bioinfo/KinMutBas/","no","related generic reseach institution site redirect","not_applicable","not_applicable",2000,11,"no",1999,2,23,"update"
"MBDC0143",100,"OMIM: Online Mendelian Inheritance in Man","omim.gdb.org","no","can't be reached","not_applicable","not_applicable",1994,52,"yes",1994,5,1766,"debut"
"MBDC0143",695,"OMIM: Online Mendelian Inheritance in Man","www.ncbi.nlm.nih.gov/omim","yes","not_applicable","unknown","not_applicable",2002,286,"yes",1994,5,1766,"update"
"MBDC0143",1049,"OMIM: Online Mendelian Inheritance in Man","http://www.ncbi.nlm.nih.gov/omim/","yes","not_applicable","unknown","not_applicable",2005,966,"yes",1994,5,1766,"update"
"MBDC0143",1792,"OMIM: Online Mendelian Inheritance in Man","http://www.ncbi.nlm.nih.gov/omim","yes","not_applicable","2017","Funding; pop-up asking for support …at the request of NIH ",2009,374,"yes",1994,5,1766,"update"
"MBDC0143",2882,"OMIM: Online Mendelian Inheritance in Man","http://omim.org","yes","not_applicable","unknown","not_applicable",2015,88,"yes",1994,5,1766,"update"
"MBDC0144",332,"PAH Mutation Analysis Consortium Database","http://www.mcgill.ca/pahdb","no","can't be reached","not_applicable","not_applicable",1998,42,"no",1996,3,96,"update"
"MBDC0144",147,"PAH Mutation Analysis Consortium Database","http://www.mcgill.calpahdb","no","can't be reached","not_applicable","not_applicable",1996,27,"no",1996,3,96,"debut"
"MBDC0144",182,"PAH Mutation Analysis Consortium Database","http://www.mcgill.ca/pahdb","no","can't be reached","not_applicable","not_applicable",1997,27,"no",1996,3,96,"update"
"MBDC0146",342,"PMD: Protein Mutant Database","http://pmd.ddbj.nig.ac.jp","no","forbidden","not_applicable","not_applicable",1999,86,"no",1999,1,86,"debut"
"MBDC0152",492,"MTB: Mouse Tumor Biology Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2000,14,"yes",1999,5,67,"update"
"MBDC0152",2856,"MTB: Mouse Tumor Biology Database","http://tumor.informatics.jax.org","yes","not_applicable","2016","not_applicable",2015,9,"yes",1999,5,67,"update"
"MBDC0152",359,"MTB: Mouse Tumor Biology Database","http://tumor.informatics.jax.org","yes","not_applicable","2016","not_applicable",1999,18,"yes",1999,5,67,"debut"
"MBDC0152",1364,"MTB: Mouse Tumor Biology Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2007,14,"yes",1999,5,67,"update"
"MBDC0152",616,"MTB: Mouse Tumor Biology Database","http://www.informatics.jax.org","yes","not_applicable","2016","not_applicable",2001,12,"yes",1999,5,67,"update"
"MBDC0154",558,"PEDB: Prostate Expression Database","http://www.mbt.washington.edu/PEDB/","no","can't be reached","not_applicable","not_applicable",2000,17,"yes",1999,3,88,"update"
"MBDC0154",686,"PEDB: Prostate Expression Database","http://www.pedb.org","yes","not_applicable","2017","Examples dates; Text Last Modified: Thursday January 4, 2007; Data continuously updated.",2002,21,"yes",1999,3,88,"update"
"MBDC0154",383,"PEDB: Prostate Expression Database","http://www.mbt.washington.edu/PEDB/","no","can't be reached","not_applicable","not_applicable",1999,50,"yes",1999,3,88,"debut"
"MBDC0156",598,"AARSDB: Aminoacyl-tRNA Synthetase Data Bank","http://biobases.ibch.poznan.pl/aars/","yes","not_applicable","2003","not_applicable",2001,15,"yes",1999,3,30,"update"
"MBDC0156",490,"AARSDB: Aminoacyl-tRNA Synthetase Data Bank","http://rose.man.poznan.pl/aars/index.html","yes","not_applicable","2003","not_applicable",2000,11,"yes",1999,3,30,"update"
"MBDC0156",417,"AARSDB: Aminoacyl-tRNA Synthetase Data Bank","http://rose.man.poznan.pl/aars/index.html","yes","not_applicable","2003","not_applicable",1999,4,"yes",1999,3,30,"debut"
"MBDC0160",2105,"RNA Helicase Database","www.rnahelicase.org","yes","not_applicable","unknown","not_applicable",2011,23,"yes",2011,1,23,"debut"
"MBDC0162",321,"ESTHER: ESTerases, alpha-beta Hydrolase Enzymes and Relatives","http://www.ensam.inra.fr/cholinesterase","no","can't be reached","not_applicable","not_applicable",1998,55,"yes",1996,5,285,"update"
"MBDC0162",141,"ESTHER: ESTerases, alpha-beta Hydrolase Enzymes and Relatives","http://www.montpellier.inra.fr:70/cholinesterase","no","can't be reached","not_applicable","not_applicable",1996,30,"yes",1996,5,285,"debut"
"MBDC0162",2573,"ESTHER: ESTerases, alpha-beta Hydrolase Enzymes and Relatives","http://bioweb.ensam.inra.fr/esther","yes","not_applicable","2016","not_applicable",2013,54,"yes",1996,5,285,"update"
"MBDC0162",983,"ESTHER: ESTerases, alpha-beta Hydrolase Enzymes and Relatives","http://bioweb.ensam.inra.fr/esther","yes","not_applicable","2016","not_applicable",2004,107,"yes",1996,5,285,"update"
"MBDC0162",203,"ESTHER: ESTerases, alpha-beta Hydrolase Enzymes and Relatives","http://www.ensam.inra.fr/cholinesterase/","no","not found","not_applicable","not_applicable",1997,39,"yes",1996,5,285,"update"
"MBDC0163",657,"EXProt: EXperimentally verified PROTeins","http://www.cmbi.kun.nl/EXProt/","no","can't be reached","not_applicable","not_applicable",2002,5,"no",2002,1,5,"debut"
"MBDC0165",214,"GenProtEC: Genes and proteins of Escherichia coli K-12","http://mbl.edu/html/ecoli.html","no","not found","not_applicable","not_applicable",1997,23,"no",1996,4,148,"update"
"MBDC0165",275,"GenProtEC: Genes and proteins of Escherichia coli K-12","http://www.mbl.edu/html/ecoli.html","no","not found","not_applicable","not_applicable",1998,43,"no",1996,4,148,"update"
"MBDC0165",1019,"GenProtEC: Genes and proteins of Escherichia coli K-12","http://genprotec.mbl.edu/","no","discontinued notice","not_applicable","Service Status; Thank you for your interest, this website has been retired.",2004,73,"no",1996,4,148,"update"
"MBDC0165",140,"GenProtEC: Genes and proteins of Escherichia coli K-12","http://mbl.edu/html/ecoli.html","no","not found","not_applicable","Access - Transfer/Redirect; Genes and proteins of Escherichia coli; not the same as ECD",1996,9,"no",1996,4,148,"debut"
"MBDC0166",873,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcr.org/7tm/","yes","not_applicable","2016","not_applicable",2003,286,"yes",1998,6,854,"update"
"MBDC0166",306,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcr.org/7tm","yes","not_applicable","2016","not_applicable",1998,323,"yes",1998,6,854,"debut"
"MBDC0166",2999,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcrdb.org/","yes","not_applicable","2016","not_applicable",2016,9,"yes",1998,6,854,"update"
"MBDC0166",2748,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcr.org/7tm/","yes","not_applicable","2016","not_applicable",2014,51,"yes",1998,6,854,"update"
"MBDC0166",2077,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcr.org/7tm","yes","not_applicable","2016","not_applicable",2011,108,"yes",1998,6,854,"update"
"MBDC0166",569,"GPCRDB: G Protein-Coupled Receptor Database","http://www.gpcr.org/7tm/","yes","not_applicable","2016","not_applicable",2001,77,"yes",1998,6,854,"update"
"MBDC0167",135,"HDB: Histone Database","http://www.ncbi.nlm.nih.gov/Baxevani/HISTONES","no","not found","not_applicable","not_applicable",1996,24,"yes",1996,6,139,"debut"
"MBDC0167",461,"HDB: Histone Database","http://genome.nhgri.nih.gov/histones/","yes","not_applicable","unknown","not_applicable",2000,25,"yes",1996,6,139,"update"
"MBDC0167",206,"HDB: Histone Database","http://www.ncbi.nlm.nih.gov/Baxevani/HISTONES/","no","not found","not_applicable","not_applicable",1997,9,"yes",1996,6,139,"update"
"MBDC0167",278,"HDB: Histone Database","http://www.nhgri.nih.gov/DIR/GTB/HISTONES","no","not found","not_applicable","not_applicable",1998,27,"yes",1996,6,139,"update"
"MBDC0167",688,"HDB: Histone Database","http://genome.nhgri.nih.gov/histones","yes","not_applicable","unknown","not_applicable",2002,47,"yes",1996,6,139,"update"
"MBDC0167",414,"HDB: Histone Database","http://genome.nhgri.nih.gov/histones/","yes","not_applicable","unknown","not_applicable",1999,7,"yes",1996,6,139,"update"
"MBDC0170",866,"Homeodomain Resource","http://research.nhgri.nih.gov/homeodomain/","yes","not_applicable","2016","not_applicable",2003,19,"yes",1999,4,58,"update"
"MBDC0170",566,"Homeodomain Resource","http://genome.nhgri.nih.gov/homeodomain","no","not found","not_applicable","not_applicable",2001,16,"yes",1999,4,58,"update"
"MBDC0170",460,"Homeodomain Resource","http://genome.nhgri.nih.gov/homeodomain","no","not found","not_applicable","not_applicable",2000,12,"yes",1999,4,58,"update"
"MBDC0170",433,"Homeodomain Resource","http://genome.nhgri.nih.gov/homeodomain","no","not found","not_applicable","not_applicable",1999,11,"yes",1999,4,58,"debut"
"MBDC0171",466,"HUGE","http://www.kazusa.or.jp/huge","yes","not_applicable","2008","not_applicable",2000,36,"yes",1999,4,162,"update"
"MBDC0171",967,"HUGE","http://www.kazusa.or.jp/huge","yes","not_applicable","2008","not_applicable",2004,20,"yes",1999,4,162,"update"
"MBDC0171",666,"HUGE","http://www.kazusa.or.jp/huge","yes","not_applicable","2008","not_applicable",2002,77,"yes",1999,4,162,"update"
"MBDC0171",403,"HUGE","http://www.kazusa.or.jp/huge","yes","not_applicable","2008","not_applicable",1999,29,"yes",1999,4,162,"debut"
"MBDC0172",474,"IMGT: ImMunoGeneTics database","http://imgt.cines.fr:8104","no","can't be reached","not_applicable","not_applicable",2000,107,"yes",1997,9,1370,"update"
"MBDC0172",347,"IMGT: ImMunoGeneTics database","http://imgt.cnusc.fr:8104","no","can't be reached","not_applicable","not_applicable",1999,257,"yes",1997,9,1370,"update"
"MBDC0172",617,"IMGT: ImMunoGeneTics database","http://imgt.cines.fr:8104","no","can't be reached","not_applicable","not_applicable",2001,174,"yes",1997,9,1370,"update"
"MBDC0172",1707,"IMGT: ImMunoGeneTics database","http://www.imgt.org","yes","not_applicable","2016","not_applicable",2009,328,"yes",1997,9,1370,"update"
"MBDC0172",190,"IMGT: ImMunoGeneTics database","http://imgt.cnusc.fr:8104","no","can't be reached","not_applicable","Mirror fail; http://www.ebi.ac.uk/IMGT not found",1997,71,"yes",1997,9,1370,"debut"
"MBDC0172",1099,"IMGT: ImMunoGeneTics database","http://imgt.cines.fr","no","can't be reached","not_applicable","not_applicable",2005,198,"yes",1997,9,1370,"update"
"MBDC0172",2917,"IMGT: ImMunoGeneTics database","http://www.imgt.org","yes","not_applicable","2016","not_applicable",2015,29,"yes",1997,9,1370,"update"
"MBDC0172",861,"IMGT: ImMunoGeneTics database","http://imgt.cines.fr","no","can't be reached","not_applicable","not_applicable",2003,147,"yes",1997,9,1370,"update"
"MBDC0172",280,"IMGT: ImMunoGeneTics database","http://imgt.cnusc.fr:8104","no","can't be reached","not_applicable","not_applicable",1998,59,"yes",1997,9,1370,"update"
"MBDC0173",1713,"EMBL-EBI IPD IMGT/HLA","http://www.ebi.ac.uk/imgt/hla/","yes","not_applicable","2017","not_applicable",2009,126,"yes",2001,5,1251,"update"
"MBDC0173",642,"EMBL-EBI IPD IMGT/HLA","www.ebi.ac.uk/imgt/hla/","yes","not_applicable","2017","not_applicable",2001,140,"yes",2001,5,1251,"debut"
"MBDC0173",857,"EMBL-EBI IPD IMGT/HLA","http://www.ebi.ac.uk/imgt/hla","yes","not_applicable","2017","not_applicable",2003,339,"yes",2001,5,1251,"update"
"MBDC0173",2053,"EMBL-EBI IPD IMGT/HLA","http://www.ebi.ac.uk/imgt/hla/","yes","not_applicable","2017","not_applicable",2011,273,"yes",2001,5,1251,"update"
"MBDC0173",2512,"EMBL-EBI IPD IMGT/HLA","http://www.ebi.ac.uk/imgt/hla/","yes","not_applicable","2017","not_applicable",2013,373,"yes",2001,5,1251,"update"
"MBDC0174",536,"InBase: New England Biolabs Intein Database","http://www.neb.com/neb/inteins.html","no","not found","not_applicable","not_applicable",2000,65,"no",1999,3,339,"update"
"MBDC0174",416,"InBase: New England Biolabs Intein Database","http://www.neb.com/neb/inteins.html","no","not found","not_applicable","not_applicable",1999,25,"no",1999,3,339,"debut"
"MBDC0174",659,"InBase: New England Biolabs Intein Database","http://www.neb.com/neb/inteins.html","no","not found","not_applicable","not_applicable",2002,249,"no",1999,3,339,"update"
"MBDC0176",641,"LGICdb: Ligand Gated Ion Channel database ","http://www.pasteur.fr/recherche/banques/LGIC/LGIC.html","no","not found","not_applicable","not_applicable",2001,53,"yes",1999,3,142,"update"
"MBDC0176",425,"LGICdb: Ligand Gated Ion Channel database ","http://www.pasteur.fr/units/neubiomol/LGIC.html","no","not found","not_applicable","not_applicable",1999,73,"yes",1999,3,142,"debut"
"MBDC0176",1288,"LGICdb: Ligand Gated Ion Channel database ","http://www.ebi.ac.uk/compneur-srv/LGICdb/","yes","not_applicable","unknown","Service Status; Charming; Honest; very lovely no longer actively maintained notice",2006,16,"yes",1999,3,142,"update"
"MBDC0177",1308,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2006,394,"yes",1999,10,2774,"update"
"MBDC0177",2304,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2012,479,"yes",1999,10,2774,"update"
"MBDC0177",999,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2004,326,"yes",1999,10,2774,"update"
"MBDC0177",714,"MEROPS","http://www.merops.ac.uk","yes","not_applicable","2017","Naming; named aftered a Bee eating bird (Merops bullockoides) because it nests in colonies that are divided into families and clans",2002,153,"yes",1999,10,2774,"update"
"MBDC0177",2629,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2014,266,"yes",1999,10,2774,"update"
"MBDC0177",3034,"MEROPS","http://merops.sanger.ac.UK","yes","not_applicable","2017","not_applicable",2016,17,"yes",1999,10,2774,"update"
"MBDC0177",360,"MEROPS","http://www.bi.bbsrc.ac.uk/Merops/Merops.htm","no","can't be reached","not_applicable","not_applicable",1999,144,"yes",1999,10,2774,"debut"
"MBDC0177",1661,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2008,416,"yes",1999,10,2774,"update"
"MBDC0177",1908,"MEROPS","http://merops.sanger.ac.uk","yes","not_applicable","2017","not_applicable",2010,493,"yes",1999,10,2774,"update"
"MBDC0177",459,"MEROPS","http://www.bi.bbsrc.ac.uk/Merops/Merops.htm","no","can't be reached","not_applicable","not_applicable",2000,86,"yes",1999,10,2774,"update"
"MBDC0181",120,"MHCPEP: MHC-binding peptides","http://www.wehi.edu.au","no","related generic reseach institution site redirect","not_applicable","not_applicable",1996,19,"no",1994,4,249,"update"
"MBDC0181",249,"MHCPEP: MHC-binding peptides","http://wehih.wehi.edu.au/mhcpep/","no","related generic reseach institution site redirect","not_applicable","not_applicable",1998,169,"no",1994,4,249,"update"
"MBDC0181",191,"MHCPEP: MHC-binding peptides","http://wehih.wehi.edu.au/mhcpep/","no","related generic reseach institution site redirect","not_applicable","not_applicable",1997,20,"no",1994,4,249,"update"
"MBDC0181",87,"MHCPEP: MHC-binding peptides","Server","not_www","not_applicable","not_applicable","not_applicable",1994,41,"no",1994,4,249,"debut"
"MBDC0182",239,"NRR: Nuclear Receptor Resource","http://nrr.georgetown.edu/nrr.html.","no","can't be reached","not_applicable","not_applicable",1997,7,"no",1997,2,22,"debut"
"MBDC0182",281,"NRR: Nuclear Receptor Resource","http://nrr.georgetown.edu/nrr/nrr.html","no","can't be reached","not_applicable","not_applicable",1998,15,"no",1997,2,22,"update"
"MBDC0184",543,"ORDB: Olfactory Receptor Database","http://ycmi.med.yale.edu/senselab/ordb/","no","related generic reseach institution site redirect","not_applicable","not_applicable",2000,18,"yes",1999,3,84,"update"
"MBDC0184",376,"ORDB: Olfactory Receptor Database","http://crepe.med.yale.edu/ORDB/HTML","no","can't be reached","not_applicable","not_applicable",1999,17,"yes",1999,3,84,"debut"
"MBDC0184",669,"ORDB: Olfactory Receptor Database","http://senselab.med.yale.edu/senselab/ordb","yes","not_applicable","2015","not_applicable",2002,49,"yes",1999,3,84,"update"
"MBDC0185",411,"ooTFD: Object Oriented Transcription Factors Database","http://www.ifti.org/","yes","not_applicable","unknown","not_applicable",1999,8,"yes",1998,3,90,"update"
"MBDC0185",277,"ooTFD: Object Oriented Transcription Factors Database","http://www.isbi.net/","no","unrelated site redirect","not_applicable","not_applicable",1998,14,"yes",1998,3,90,"debut"
"MBDC0185",493,"ooTFD: Object Oriented Transcription Factors Database","http://www.ifti.org/","yes","not_applicable","unknown","not_applicable",2000,68,"yes",1998,3,90,"update"
"MBDC0186",920,"Peptaibol Database","http://www.cryst.bbk.ac.uk/peptaibol","yes","not_applicable","unknown","not_applicable",2004,79,"yes",2004,1,79,"debut"
"MBDC0187",1900,"ELM: Eukaryotic Linear Motif","http://elm.eu.org/","yes","not_applicable","2016","not_applicable",2010,162,"yes",2010,4,489,"debut"
"MBDC0187",2262,"ELM: Eukaryotic Linear Motif","http://elm.eu.org/","yes","not_applicable","2016","not_applicable",2012,176,"yes",2010,4,489,"update"
"MBDC0187",3001,"ELM: Eukaryotic Linear Motif","http://elm.eu.org/","yes","not_applicable","2016","not_applicable",2016,13,"yes",2010,4,489,"update"
"MBDC0187",2601,"ELM: Eukaryotic Linear Motif","http://elm.eu.org","yes","not_applicable","2016","not_applicable",2014,138,"yes",2010,4,489,"update"
"MBDC0189",716,"PLANT-Pls","http://bighost.area.ba.cnr.it/PLANT-Pls","no","can't be reached","not_applicable","not_applicable",2002,80,"no",2002,1,80,"debut"
"MBDC0194",16,"PIR: Protein Identification Resouce","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1991,21,"yes",1991,12,975,"debut"
"MBDC0194",122,"PIR: Protein Identification Resouce","http://www.mips.biochem.mpg.de/","no","can't be reached","not_applicable","not_applicable",1996,56,"yes",1991,12,975,"update"
"MBDC0194",361,"PIR: Protein Identification Resouce","http://www-nbrf.georgetown.edu/pir/","no","not found","not_applicable","not_applicable",1999,64,"yes",1991,12,975,"update"
"MBDC0194",817,"PIR: Protein Identification Resouce","http://pir.georgetown.edu","yes","not_applicable","unknown","not_applicable",2003,284,"yes",1991,12,975,"update"
"MBDC0194",624,"PIR: Protein Identification Resouce","http://pir.georgetown.edu/","yes","not_applicable","unknown","Provenance; little bit of a different histroy here but useful http://pir.georgetown.edu/pirwww/about/",2001,46,"yes",1991,12,975,"update"
"MBDC0194",288,"PIR: Protein Identification Resouce","http://www-nbrf.georgetown.edu/pir/","no","not found","not_applicable","not_applicable",1998,64,"yes",1991,12,975,"update"
"MBDC0194",699,"PIR: Protein Identification Resouce","http://pir.georgetown.edu/","yes","not_applicable","unknown","not_applicable",2002,164,"yes",1991,12,975,"update"
"MBDC0194",471,"PIR: Protein Identification Resouce","http://pir.georgetown.edu","yes","not_applicable","unknown","Mirror fail; http://www.mips.biochem.mpg.de can't be reached",2000,130,"yes",1991,12,975,"update"
"MBDC0194",58,"PIR: Protein Identification Resouce","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,50,"yes",1991,12,975,"update"
"MBDC0194",30,"PIR: Protein Identification Resouce","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,17,"yes",1991,12,975,"update"
"MBDC0194",102,"PIR: Protein Identification Resouce","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,39,"yes",1991,12,975,"update"
"MBDC0194",185,"PIR: Protein Identification Resouce","Physical; Server","not_www","not_applicable","not_applicable","Other; Provenance; Section on ""DATABASE INTEROPERABILITY""and also ... esource originated with the pioneering work of the late Margaret O. Dayhoff in the early 1960s. Since 1988, the Protein Sequence Database has been maintained collaboratively by PIR-International",1997,40,"yes",1991,12,975,"update"
"MBDC0195",340,"Ribonuclease P Database","http://www.mbio.ncsu.edu/RNaseP/home.html","yes","not_applicable","2005","not_applicable",1999,267,"yes",1994,5,360,"update"
"MBDC0195",241,"Ribonuclease P Database","http://www.mbio.ncsu.edu/RNaseP/home.html","yes","not_applicable","2005","Examples dates; example of last update on homepage is 2013 but database update is 2005 (news)",1997,11,"yes",1994,5,360,"update"
"MBDC0195",107,"Ribonuclease P Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1996,4,"yes",1994,5,360,"update"
"MBDC0195",244,"Ribonuclease P Database","http://www.mbio.ncsu.edu/RNaseP/home.html","yes","not_applicable","2005","not_applicable",1998,55,"yes",1994,5,360,"update"
"MBDC0195",76,"Ribonuclease P Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,23,"yes",1994,5,360,"debut"
"MBDC0196",495,"SENTRA","http://wit.mcs.anl.gov/WIT2/Sentra/","no","can't be reached","not_applicable","not_applicable",2000,6,"no",2000,3,43,"debut"
"MBDC0196",734,"SENTRA","http://www-wit.mcs.anl.gov/sentra","no","not found","not_applicable","not_applicable",2002,16,"no",2000,3,43,"update"
"MBDC0196",1439,"SENTRA","http://compbio.mcs.anl.gov/sentra","no","can't be reached","not_applicable","not_applicable",2007,21,"no",2000,3,43,"update"
"MBDC0199",2534,"TIGRFAMs","http://www.jcvi.org/tigrfams","yes","not_applicable","2014","not_applicable",2013,38,"yes",2001,4,617,"update"
"MBDC0199",623,"TIGRFAMs","www.tigr.org/TIGRFAMs","yes","not_applicable","2014","not_applicable",2001,153,"yes",2001,4,617,"debut"
"MBDC0199",804,"TIGRFAMs","www.tigr.org/TIGRFAMs","yes","not_applicable","2014","not_applicable",2003,352,"yes",2001,4,617,"update"
"MBDC0199",1523,"TIGRFAMs","http://www.tigr.org/TIGRFAMs","yes","not_applicable","2014","not_applicable",2007,74,"yes",2001,4,617,"update"
"MBDC0200",651,"Hits","http://hits.isb-sib.ch","yes","not_applicable","2017","not_applicable",2001,27,"yes",2001,1,27,"debut"
"MBDC0201",643,"VIDA","http://www.biochem.ucl.ac.uk/bsm/virus⊣tabase/VIDA.html","no","not found","not_applicable","not_applicable",2001,32,"no",2001,1,32,"debut"
"MBDC0203",303,"Blocks database","http://www.blocks.fhcrc.org","yes","not_applicable","2007","not_applicable",1998,50,"yes",1996,5,497,"update"
"MBDC0203",401,"Blocks database","http://www.blocks.fhcrc.org","yes","not_applicable","2007","not_applicable",1999,79,"yes",1996,5,497,"update"
"MBDC0203",524,"Blocks database","http://www.blocks.fhcrc.org","yes","not_applicable","2007","not_applicable",2000,253,"yes",1996,5,497,"update"
"MBDC0203",229,"Blocks database","http://blocks.fhcrc.org/","yes","not_applicable","2007","Funding; Service Status; This is the final release of the Blocks Database. The first release of the Blocks Database was made in 1990. Our current funding expires in July 2007 and we have decided not to pursue additional funding as our lab has moved on to other projects and there are now many excellent resources for protein family identification. We recommend starting with the InterPro server which has links to other protein family collections.",1997,39,"yes",1996,5,497,"update"
"MBDC0203",112,"Blocks database","http://blocks.fhcrc.org/help","yes","not_applicable","2007","not_applicable",1996,76,"yes",1996,5,497,"debut"
"MBDC0204",768,"NCBI CDD: Conserved Domain Database","https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml","yes","not_applicable","unknown","not_applicable",2002,446,"yes",2002,8,5537,"debut"
"MBDC0204",1888,"NCBI CDD: Conserved Domain Database","https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml","yes","not_applicable","unknown","not_applicable",2009,778,"yes",2002,8,5537,"update"
"MBDC0204",2208,"NCBI CDD: Conserved Domain Database","http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml","yes","not_applicable","unknown","not_applicable",2011,1474,"yes",2002,8,5537,"update"
"MBDC0204",2851,"NCBI CDD: Conserved Domain Database","http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml","yes","not_applicable","unknown","not_applicable",2015,397,"yes",2002,8,5537,"update"
"MBDC0204",2493,"NCBI CDD: Conserved Domain Database","https://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml","yes","not_applicable","unknown","not_applicable",2013,453,"yes",2002,8,5537,"update"
"MBDC0204",790,"NCBI CDD: Conserved Domain Database","http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=cdd","yes","not_applicable","unknown","not_applicable",2003,595,"yes",2002,8,5537,"update"
"MBDC0204",1132,"NCBI CDD: Conserved Domain Database","http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=cdd","yes","not_applicable","unknown","not_applicable",2005,819,"yes",2002,8,5537,"update"
"MBDC0204",1496,"NCBI CDD: Conserved Domain Database","http://www.ncbi.nlm.nih.gov/Entrez","yes","not_applicable","unknown","not_applicable",2007,575,"yes",2002,8,5537,"update"
"MBDC0205",784,"CluSTr","http://www.ebi.ac.uk/clustr/","no","not found","not_applicable","not_applicable",2003,30,"no",2003,1,30,"debut"
"MBDC0207",1155,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro","yes","not_applicable","2016","not_applicable",2005,376,"yes",2001,7,3743,"update"
"MBDC0207",649,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro/","yes","not_applicable","2016","Provenance; amalgamates the efforts of the PROSITE, PRINTS, Pfam and ProDom database projects",2001,681,"yes",2001,7,3743,"debut"
"MBDC0207",1834,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro/","yes","not_applicable","2016","not_applicable",2009,890,"yes",2001,7,3743,"update"
"MBDC0207",805,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro","yes","not_applicable","2016","not_applicable",2003,551,"yes",2001,7,3743,"update"
"MBDC0207",1474,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro","yes","not_applicable","2017","not_applicable",2007,342,"yes",2001,7,3743,"update"
"MBDC0207",2271,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro/","yes","not_applicable","2016","not_applicable",2012,637,"yes",2001,7,3743,"update"
"MBDC0207",2829,"EMBL-EBI InterPro","http://www.ebi.ac.uk/interpro/","yes","not_applicable","2016","not_applicable",2015,266,"yes",2001,7,3743,"update"
"MBDC0208",432,"PIR IProClass","http://diana.uthct.edu/proclass.html","no","can't be reached","not_applicable","not_applicable",1999,8,"yes",1999,4,85,"debut"
"MBDC0208",838,"PIR IProClass","http://pir.georgetown.edu/iproclass/","yes","not_applicable","2016","not_applicable",2003,39,"yes",1999,4,85,"update"
"MBDC0208",525,"PIR IProClass","http://pir.georgetown.edu/gfserver/proclass.html","no","not found","not_applicable","not_applicable",2000,12,"yes",1999,4,85,"update"
"MBDC0208",590,"PIR IProClass","http://pir.georgetown.edu/iproclass/","yes","not_applicable","2016","not_applicable",2001,26,"yes",1999,4,85,"update"
"MBDC0209",151,"O-GLYCBASE","http://www.cbs.dtu.dk/netOglyc/cbsnetOglyc.html","no","not found","not_applicable","not_applicable",1996,23,"yes",1996,4,255,"debut"
"MBDC0209",279,"O-GLYCBASE","http://www.cbs.dtu.dk/databases/OGLYCBASE/","yes","not_applicable","unknown","not_applicable",1998,18,"yes",1996,4,255,"update"
"MBDC0209",441,"O-GLYCBASE","http://www.cbs.dtu.dk/databases/OGLYCBASE/","yes","not_applicable","unknown","not_applicable",1999,113,"yes",1996,4,255,"update"
"MBDC0209",180,"O-GLYCBASE","http://www.cbs.dtu.dk/netOglyc/cbsnetOglyc.html","no","not found","not_applicable","not_applicable",1997,101,"yes",1996,4,255,"update"
"MBDC0210",681,"Pfam","http://www.sanger.ac.uk/Software/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; ; http://www.cgb.ki.se/Pfam/; http://pfam.jouy.inra.fr/; http:// pfam.wustl.edu/ both can't be reached",2002,1790,"yes",1998,11,14408,"update"
"MBDC0210",550,"Pfam","http://www.sanger.ac.uk/Software/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; http://www.cgr.ki.se/Pfam/; http://pfam.wustl.edu/ can't be reached",2000,1094,"yes",1998,11,14408,"update"
"MBDC0210",311,"Pfam","http://www.sanger.ac.uk/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; http://genome.wustl.edu/Pfam/ not found",1998,449,"yes",1998,11,14408,"debut"
"MBDC0210",1568,"Pfam","http://pfam.sanger.ac.uk/","yes","not_applicable","2016","Other; alt but fail; http://pfam.janelia.org/; http://pfam.sbc.su.se/; http://pfam.jouy.inra.fr/; http://pfam.ccbb.re.kr/",2008,1563,"yes",1998,11,14408,"update"
"MBDC0210",337,"Pfam","http://www.sanger.ac.uk/Software/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; http://www.cgr.ki.se/Pfam/; http://pfam.wustl.edu/ both can't be reached",1999,432,"yes",1998,11,14408,"update"
"MBDC0210",1906,"Pfam","http://pfam.sanger.ac.uk/","yes","not_applicable","2016","Other; alt fail ; http://pfam.janelia.org/; http://pfam.sbc.su.se/",2010,1980,"yes",1998,11,14408,"update"
"MBDC0210",2383,"Pfam","http://pfam.sanger.ac.uk/","yes","not_applicable","2016","Other; alt fail ; http://pfam.janelia.org/; http://pfam.sbc.su.se/ can't be reached",2012,1943,"yes",1998,11,14408,"update"
"MBDC0210",962,"Pfam","http:/www.sanger.ac.uk/Software/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; http://pfam.wustl.edu/; http://pfam.jouy.inra.fr/; http://Pfam.cgb.ki.se/ both can't be reached",2004,2193,"yes",1998,11,14408,"update"
"MBDC0210",1344,"Pfam","http://www.sanger.ac.uk/Software/Pfam/","no","related generic reseach institution site redirect","not_applicable","Mirror fail; http://pfam.wustl.edu/; http://pfam.jouy.inra.fr/; http://pfam.cgb.ki.se/ can't be reached",2006,1489,"yes",1998,11,14408,"update"
"MBDC0210",3085,"Pfam","http://pfam.xfam.org","yes","not_applicable","2016","Other; read this paper about Pfam",2016,116,"yes",1998,11,14408,"update"
"MBDC0210",2632,"Pfam","http://pfam.sanger.ac.uk/","yes","not_applicable","2016","Other; alt fail http://pfam.janelia.org/ can't be reached; Service Status; Access - Transfer/Redirect; The pfam.sanger.ac.uk website is no longer supported at The Wellcome Trust Sanger Institute. … moved to Xfam via EBI",2014,1359,"yes",1998,11,14408,"update"
"MBDC0212",314,"PRINTS","http://www.biochem.ucl.ac.uk/bsm/dbbrowser/","yes","not_applicable","2009","not_applicable",1998,82,"yes",1994,8,837,"update"
"MBDC0212",220,"PRINTS","http://www.biochem.ucl.ac.uk/bsm/dbbrowser/","yes","not_applicable","2009","not_applicable",1997,45,"yes",1994,8,837,"update"
"MBDC0212",137,"PRINTS","http://www.biochem.ucl.ac.uk/bsm/dbbrowser","yes","not_applicable","2009","Access - Transfer/Redirect; redirect and can see here http://130.88.97.239/PRINTS/relnotes.php",1996,22,"yes",1994,8,837,"update"
"MBDC0212",764,"PRINTS","http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/","yes","not_applicable","2009","not_applicable",2002,73,"yes",1994,8,837,"update"
"MBDC0212",65,"PRINTS","Physical; Server","not_www","not_applicable","not_applicable","Naming; name comes from fingerPRINTS",1994,98,"yes",1994,8,837,"debut"
"MBDC0212",470,"PRINTS","http://www.bioinf.man.ac.uk/dbbrowser/PRINTS","yes","not_applicable","2009","Naming; Charming; The database formerly known as PRINTS",2000,164,"yes",1994,8,837,"update"
"MBDC0212",402,"PRINTS","http://www.biochem.ucl.ac.uk/bsm/dbbrowser/","yes","not_applicable","2009","not_applicable",1999,92,"yes",1994,8,837,"update"
"MBDC0212",836,"PRINTS","http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/","yes","not_applicable","2009","not_applicable",2003,261,"yes",1994,8,837,"update"
"MBDC0214",424,"ProDom","http://www.toulouse.inra.fr/prodomCG.html","no","not found","not_applicable","not_applicable",1999,132,"no",1998,4,590,"update"
"MBDC0214",500,"ProDom","http://www.toulouse.inra.fr/prodom.html","no","not found","not_applicable","not_applicable",2000,139,"no",1998,4,590,"update"
"MBDC0214",1082,"ProDom","http://www.toulouse.inra.fr/prodom.html","no","not found","not_applicable","not_applicable",2005,161,"no",1998,4,590,"update"
"MBDC0214",307,"ProDom","http://protein.toulouse.inra.fr/prodom.html","no","not found","not_applicable","not_applicable",1998,158,"no",1998,4,590,"debut"
"MBDC0215",1343,"PROSITE","http://www.expasy.org/prosite/","yes","not_applicable","2017","not_applicable",2006,517,"yes",1991,13,5812,"update"
"MBDC0215",2531,"PROSITE","http://prosite.expasy.org/","yes","not_applicable","2017","not_applicable",2013,219,"yes",1991,13,5812,"update"
"MBDC0215",1899,"PROSITE","http://www.expasy.org/prosite/","yes","not_applicable","2017","not_applicable",2010,414,"yes",1991,13,5812,"update"
"MBDC0215",3,"PROSITE","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1991,440,"yes",1991,13,5812,"debut"
"MBDC0215",1034,"PROSITE","http://www.expasy.org/prosite/","yes","not_applicable","2017","not_applicable",2004,302,"yes",1991,13,5812,"update"
"MBDC0215",745,"PROSITE","http://www.expasy.org/prosite/","yes","not_applicable","2017","not_applicable",2002,857,"yes",1991,13,5812,"update"
"MBDC0215",81,"PROSITE","http://expasy.hcuge.ch/","yes","not_applicable","2017","not_applicable",1994,183,"yes",1991,13,5812,"update"
"MBDC0215",1562,"PROSITE","http://www.expasy.org/prosite/","yes","not_applicable","2017","not_applicable",2008,310,"yes",1991,13,5812,"update"
"MBDC0215",43,"PROSITE","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,263,"yes",1991,13,5812,"update"
"MBDC0215",21,"PROSITE","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,366,"yes",1991,13,5812,"update"
"MBDC0215",125,"PROSITE","http://expasy.hcuge.ch/","yes","not_applicable","2017","not_applicable",1996,261,"yes",1991,13,5812,"update"
"MBDC0215",189,"PROSITE","http://expasy.hcuge.ch/","yes","not_applicable","2017","not_applicable",1997,722,"yes",1991,13,5812,"update"
"MBDC0215",365,"PROSITE","http://www.expasy.ch/sprot/prosite.html","no","related generic reseach institution site redirect","not_applicable","Access - Transfer/Redirect; goes to UniProtKB/Swiss-Prot",1999,958,"yes",1991,13,5812,"update"
"MBDC0217",198,"SBASE","http://www.icgeb.trieste.it/sbase/","yes","not_applicable","2006","not_applicable",1997,19,"yes",1993,10,170,"update"
"MBDC0217",50,"SBASE","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,14,"yes",1993,10,170,"debut"
"MBDC0217",898,"SBASE","http://www.icgeb.trieste.it/sbase","yes","not_applicable","2006","not_applicable",2003,8,"yes",1993,10,170,"update"
"MBDC0217",707,"SBASE","http://www.icgeb.trieste.it/sbase","yes","not_applicable","2006","not_applicable",2002,17,"yes",1993,10,170,"update"
"MBDC0217",484,"SBASE","http://www.icgeb.trieste.it/sbase/","yes","not_applicable","2006","not_applicable",2000,16,"yes",1993,10,170,"update"
"MBDC0217",1050,"SBASE","http://www.icgeb.trieste.it/sbase","yes","not_applicable","2006","not_applicable",2005,22,"yes",1993,10,170,"update"
"MBDC0217",116,"SBASE","http://www.icgeb.trieste.it","no","related generic reseach institution site redirect","not_applicable","not_applicable",1996,12,"yes",1993,10,170,"update"
"MBDC0217",89,"SBASE","http://www.icgeb.trieste.it","no","related generic reseach institution site redirect","not_applicable","not_applicable",1994,29,"yes",1993,10,170,"update"
"MBDC0217",591,"SBASE","http://www.icgeb.trieste.it/sbase/","yes","not_applicable","2006","not_applicable",2001,22,"yes",1993,10,170,"update"
"MBDC0217",398,"SBASE","http://www.icgeb.trieste.it/sbase","yes","not_applicable","2006","not_applicable",1999,11,"yes",1993,10,170,"update"
"MBDC0218",477,"SMART: Simple Modular Architecture Research Tool","http://SMART.embl-heidelberg.de","yes","not_applicable","unknown","not_applicable",2000,834,"yes",1999,8,4606,"update"
"MBDC0218",431,"SMART: Simple Modular Architecture Research Tool","http://coot.embl-heidelberg.de/SMART","no","can't be reached","not_applicable","not_applicable",1999,192,"yes",1999,8,4606,"debut"
"MBDC0218",2809,"SMART: Simple Modular Architecture Research Tool","http://smart.embl.de/","yes","not_applicable","unknown","not_applicable",2015,195,"yes",1999,8,4606,"update"
"MBDC0218",1879,"SMART: Simple Modular Architecture Research Tool","http://smart.embl.de/","yes","not_applicable","unknown","not_applicable",2009,669,"yes",1999,8,4606,"update"
"MBDC0218",2341,"SMART: Simple Modular Architecture Research Tool","http://smart.embl.de/","yes","not_applicable","unknown","not_applicable",2012,755,"yes",1999,8,4606,"update"
"MBDC0218",1242,"SMART: Simple Modular Architecture Research Tool","http://smart.embl.de/","yes","not_applicable","unknown","not_applicable",2006,724,"yes",1999,8,4606,"update"
"MBDC0218",911,"SMART: Simple Modular Architecture Research Tool","http://smart.embl.de/","yes","not_applicable","unknown","not_applicable",2004,693,"yes",1999,8,4606,"update"
"MBDC0218",735,"SMART: Simple Modular Architecture Research Tool","http://smart.embl-heidelberg.de","yes","not_applicable","unknown","not_applicable",2002,544,"yes",1999,8,4606,"update"
"MBDC0219",663,"SUPFAM","http://pauling.mbu.iisc.ernet.in/~supfam","no","not found","not_applicable","not_applicable",2002,37,"no",2002,1,37,"debut"
"MBDC0220",658,"SYSTERS: SYSTEmatic Re-Searching","http://cmb.molgen.mpg.de","no","related generic reseach institution site redirect","not_applicable","not_applicable",2002,51,"no",2000,3,149,"update"
"MBDC0220",1148,"SYSTERS: SYSTEmatic Re-Searching","http://systers.molgen.mpg.de","no","related generic reseach institution site redirect","not_applicable","not_applicable",2005,33,"no",2000,3,149,"update"
"MBDC0220",446,"SYSTERS: SYSTEmatic Re-Searching","http://www.dkfz-heidelberg.de/tbi/services/cluster/systersform","no","service unavailable","not_applicable","Link; example of link changing three times in 5 yr - different with each publication",2000,65,"no",2000,3,149,"debut"
"MBDC0221",452,"AAIndex: Amino Acid Index Database","http://www.genome.ad.jp/aaindex/","yes","not_applicable","2008","not_applicable",2000,358,"yes",1999,3,748,"update"
"MBDC0221",1654,"AAIndex: Amino Acid Index Database","http://www.genome.jp/dbget-bin/www_bfind?aaindex","yes","not_applicable","2006","not_applicable",2008,149,"yes",1999,3,748,"update"
"MBDC0221",345,"AAIndex: Amino Acid Index Database","http://www.genome.ad.jp/dbget/","yes","not_applicable","2006","not_applicable",1999,241,"yes",1999,3,748,"debut"
"MBDC0222",1023,"GELBANK","http://gelbank.anl.gov","no","can't be reached","not_applicable","not_applicable",2004,31,"no",2004,1,31,"debut"
"MBDC0223",1070,"EMBL-EBI Integr8","http://www.ebi.ac.uk/integr8","yes","not_applicable","2013","Access - Archived; Integr8 has now closed. The last release is archived at ftp://ftp.ebi.ac.uk/pub/databases/integr8.",2005,125,"yes",2005,1,125,"debut"
"MBDC0224",13,"REBASE: Restriction Enzymes and methylases dataBASE","Server","not_www","not_applicable","not_applicable","not_applicable",1991,34,"yes",1991,15,1202,"debut"
"MBDC0224",1473,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com/rebase/rebase.ftp.html","yes","not_applicable","2017","not_applicable",2007,163,"yes",1991,15,1202,"update"
"MBDC0224",889,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com/rebase/rebase.htm","no","not found","not_applicable","Link; terrible URL but that's what's in paper",2003,100,"yes",1991,15,1202,"update"
"MBDC0224",36,"REBASE: Restriction Enzymes and methylases dataBASE","Server","not_www","not_applicable","not_applicable","not_applicable",1992,43,"yes",1991,15,1202,"update"
"MBDC0224",226,"REBASE: Restriction Enzymes and methylases dataBASE","http://www.neb.com/rebase","no","not found","not_applicable","not_applicable",1997,36,"yes",1991,15,1202,"update"
"MBDC0224",155,"REBASE: Restriction Enzymes and methylases dataBASE","http://www.neb.com/rebase","no","not found","not_applicable","not_applicable",1996,46,"yes",1991,15,1202,"update"
"MBDC0224",286,"REBASE: Restriction Enzymes and methylases dataBASE","http://www.neb.com/rebase","no","not found","not_applicable","not_applicable",1998,44,"yes",1991,15,1202,"update"
"MBDC0224",78,"REBASE: Restriction Enzymes and methylases dataBASE","Server","not_www","not_applicable","not_applicable","not_applicable",1994,33,"yes",1991,15,1202,"update"
"MBDC0224",476,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com","yes","not_applicable","2017","not_applicable",2000,57,"yes",1991,15,1202,"update"
"MBDC0224",609,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com","yes","not_applicable","2017","not_applicable",2001,104,"yes",1991,15,1202,"update"
"MBDC0224",429,"REBASE: Restriction Enzymes and methylases dataBASE","http://www.neb.com/rebase","no","not found","not_applicable","not_applicable",1999,37,"yes",1991,15,1202,"update"
"MBDC0224",1909,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com","yes","not_applicable","2017","not_applicable",2010,282,"yes",1991,15,1202,"update"
"MBDC0224",2806,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com","yes","not_applicable","2017","not_applicable",2015,57,"yes",1991,15,1202,"update"
"MBDC0224",60,"REBASE: Restriction Enzymes and methylases dataBASE","Server","not_www","not_applicable","not_applicable","not_applicable",1993,44,"yes",1991,15,1202,"update"
"MBDC0224",1078,"REBASE: Restriction Enzymes and methylases dataBASE","http://rebase.neb.com/rebase/rebase.html","yes","not_applicable","2017","not_applicable",2005,122,"yes",1991,15,1202,"update"
"MBDC0225",434,"SWISS-2DPAGE","http://www.expasy.ch/ch2d/","yes","not_applicable","2011","not_applicable",1999,12,"yes",1994,5,151,"update"
"MBDC0225",132,"SWISS-2DPAGE","http://expasy.hcuge.ch/","yes","not_applicable","2011","not_applicable",1996,14,"yes",1994,5,151,"update"
"MBDC0225",489,"SWISS-2DPAGE","http://www.expasy.ch/ch2d/","yes","not_applicable","2011","not_applicable",2000,87,"yes",1994,5,151,"update"
"MBDC0225",71,"SWISS-2DPAGE","http://expasy.hcuge.ch/","yes","not_applicable","2011","not_applicable",1994,17,"yes",1994,5,151,"debut"
"MBDC0225",282,"SWISS-2DPAGE","http://www.expasy.ch/ch2d/ch2d-top.html","yes","not_applicable","2011","not_applicable",1998,21,"yes",1994,5,151,"update"
"MBDC0226",875,"MitoDrome","http://bighost.area.ba.cnr.it/BIG/MitoDrome","no","can't be reached","not_applicable","not_applicable",2003,33,"no",2003,1,33,"debut"
"MBDC0229",207,"RNA Mutations (Triman Database)","http://www.fandm.edu/Departments/Biology/Databases/RNA.html","yes","not_applicable","unknown","not_applicable",1997,10,"yes",1994,5,46,"update"
"MBDC0229",159,"RNA Mutations (Triman Database)","http://www.fandm.edu/Departments/Biology/Databases/RNA.html","yes","not_applicable","unknown","indexing - other; title in scopus index is NOT correct; CORRECTED HERE",1996,8,"yes",1994,5,46,"update"
"MBDC0229",68,"RNA Mutations (Triman Database)","Server","not_www","not_applicable","not_applicable","not_applicable",1994,6,"yes",1994,5,46,"debut"
"MBDC0229",119,"RNA Mutations (Triman Database)","http://www.fandm.edu/Departments/Biology/Databases/RNA.html","yes","not_applicable","unknown","not_applicable",1996,6,"yes",1994,5,46,"update"
"MBDC0229",284,"RNA Mutations (Triman Database)","http://www.fandm.edu/Departments/Biology/Databases/RNA.html","yes","not_applicable","unknown","not_applicable",1998,16,"yes",1994,5,46,"update"
"MBDC0230",450,"5S rRNA Data Bank (Erdmann)","http://rose.man/poznan.pl/5SData/index.htm","no","can't be reached","not_applicable","not_applicable",2000,49,"yes",1991,7,254,"update"
"MBDC0230",692,"5S rRNA Data Bank (Erdmann)","http://biobases.ibch.poznan.pl/5SData","yes","not_applicable","unknown","not_applicable",2002,112,"yes",1991,7,254,"update"
"MBDC0230",8,"5S rRNA Data Bank (Erdmann)","Physical","not_www","not_applicable","not_applicable","not_applicable",1991,32,"yes",1991,7,254,"debut"
"MBDC0230",2964,"5S rRNA Data Bank (Erdmann)","http://www.combio.pl/rrna/","yes","not_applicable","unknown","not_applicable",2016,0,"yes",1991,7,254,"update"
"MBDC0230",233,"5S rRNA Data Bank (Erdmann)","http://www.//rose.man.poznan.pl/5SData/5SRNA.html","no","can't be reached","not_applicable","Mirror fail; http://www.chemie.fu-berlin.de/fb/agerdmann/5S_rRNA.html not found",1997,14,"yes",1991,7,254,"update"
"MBDC0230",396,"5S rRNA Data Bank (Erdmann)","http://www.//rose.man.poznan.pl/5SData/5SRNA.html","no","can't be reached","not_applicable","Mirror fail; http://www.chemie.fu-berlin.de/fb/agerdmann/5S_rRNA.html not found",1999,16,"yes",1991,7,254,"update"
"MBDC0230",305,"5S rRNA Data Bank (Erdmann)","http://www.//rose.man.poznan.pl/5SData/5SRNA.html","no","can't be reached","not_applicable","Mirror fail; http://www.chemie.fu-berlin.de/fb/agerdmann/5S_rRNA.html not found",1998,31,"yes",1991,7,254,"update"
"MBDC0231",584,"ACTIVITY","http://wwwmgs.bionet.nsc.ru/systems/Activity/","no","unrelated site redirect","not_applicable","not_applicable",2001,18,"no",2001,1,18,"debut"
"MBDC0232",1684,"ARED: Adenylate uridylate-Rich Elements Database","http://brp.kfshrc.edu.sa/ARED","yes","not_applicable","2013","not_applicable",2008,70,"yes",2001,4,711,"update"
"MBDC0232",1314,"ARED: Adenylate uridylate-Rich Elements Database","http://rc.kfshrc.edu.sa/ared/","no","related generic reseach institution site redirect","not_applicable","not_applicable",2006,214,"yes",2001,4,711,"update"
"MBDC0232",631,"ARED: Adenylate uridylate-Rich Elements Database","http://rc.kfshrc.edu.sa/ared","no","related generic reseach institution site redirect","not_applicable","not_applicable",2001,296,"yes",2001,4,711,"debut"
"MBDC0232",844,"ARED: Adenylate uridylate-Rich Elements Database","http://rc.kfshrc.edu.sa/ared","no","related generic reseach institution site redirect","not_applicable","not_applicable",2003,131,"yes",2001,4,711,"update"
"MBDC0242",497,"PseudoBase","http://wwwbio.LeidenUniv.nl/~Batenburg/PKB.html","no","can't be reached","not_applicable","Link; that is the URL as reported in the paper",2000,105,"no",2000,2,175,"debut"
"MBDC0242",608,"PseudoBase","http://wwwbio.LeidenUniv.nl/-Batenburg/PKB.html","no","can't be reached","not_applicable","not_applicable",2001,70,"no",2000,2,175,"update"
"MBDC0243",1057,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2005,946,"yes",1991,14,10183,"update"
"MBDC0243",412,"RDP: Ribosomal Database Project","http://www.cme.msu.edu/RDP","no","not found","not_applicable","Naming; on changing host institutions it became RPD II but data carried over…",1999,788,"yes",1991,14,10183,"update"
"MBDC0243",1518,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2007,712,"yes",1991,14,10183,"update"
"MBDC0243",491,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; Provenance; nice history and also on changing host institutions it became RPD II but data carried over…",2000,450,"yes",1991,14,10183,"update"
"MBDC0243",17,"RDP: Ribosomal Database Project","Not Available","not_www","not_applicable","not_applicable","Access - very first anspirational?",1991,101,"yes",1991,14,10183,"debut"
"MBDC0243",42,"RDP: Ribosomal Database Project","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,391,"yes",1991,14,10183,"update"
"MBDC0243",64,"RDP: Ribosomal Database Project","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,604,"yes",1991,14,10183,"update"
"MBDC0243",853,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2003,1054,"yes",1991,14,10183,"update"
"MBDC0243",121,"RDP: Ribosomal Database Project","http://rdpwww.life.uiuc.edu/","no","can't be reached","not_applicable","not_applicable",1996,428,"yes",1991,14,10183,"update"
"MBDC0243",597,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2001,1083,"yes",1991,14,10183,"update"
"MBDC0243",193,"RDP: Ribosomal Database Project","http://rdpwww.life.uiuc.edu/","no","can't be reached","not_applicable","not_applicable",1997,703,"yes",1991,14,10183,"update"
"MBDC0243",29,"RDP: Ribosomal Database Project","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,139,"yes",1991,14,10183,"update"
"MBDC0243",1813,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2009,2421,"yes",1991,14,10183,"update"
"MBDC0243",2756,"RDP: Ribosomal Database Project","http://rdp.cme.msu.edu/","yes","not_applicable","2016","Naming; on changing host institutions it became RPD II but data carried over…",2014,363,"yes",1991,14,10183,"update"
"MBDC0245",236,"RNAMDB: RNA Modification Database","http://www-medlib.med.utah.edu/RNAmods/RNAmods.html","no","can't be reached","not_applicable","not_applicable",1997,15,"no",1996,5,621,"update"
"MBDC0245",150,"RNAMDB: RNA Modification Database","http://www-medlib.med.utah.edu/RNAmods/RNAmods.html","no","can't be reached","not_applicable","not_applicable",1996,7,"no",1996,5,621,"debut"
"MBDC0245",246,"RNAMDB: RNA Modification Database","http://www-medlib.med.utah/RNAmods/RNAmods.html","no","can't be reached","not_applicable","not_applicable",1998,66,"no",1996,5,621,"update"
"MBDC0245",2193,"RNAMDB: RNA Modification Database","http://rna-mdb.cas.albany.edu/RNAmods/","no","can't be reached","not_applicable","not_applicable",2011,226,"no",1996,5,621,"update"
"MBDC0245",418,"RNAMDB: RNA Modification Database","http://medlib.med.utah.edu/RNAmods/","no","can't be reached","not_applicable","not_applicable",1999,307,"no",1996,5,621,"update"
"MBDC0246",556,"SELEX-DB","http://wwwmgs.bionet.nsc.ru/mgs/systems/selex/","yes","not_applicable","unknown","not_applicable",2000,14,"yes",2000,2,30,"debut"
"MBDC0246",660,"SELEX-DB","http://wwwmgs.bionet.nsc.ru/mgs/systems/selex/","yes","not_applicable","unknown","not_applicable",2002,16,"yes",2000,2,30,"update"
"MBDC0248",831,"SRPDB: Signal Recognition Particle Database","http://bio.lundberg.gu.se/dbs/SRPDB/SRPDB.html","yes","not_applicable","unknown","Access - Failure Notes; just this very last mirror site still up",2003,89,"yes",1992,11,296,"update"
"MBDC0248",494,"SRPDB: Signal Recognition Particle Database","http://psyche.uthct.edu/dbs/SRPDB/SRPDB.html","no","can't be reached","not_applicable","Mirror fail; http://www.medkem.gu.se/dbs/SRPDB/SRPDB.html not found",2000,26,"yes",1992,11,296,"update"
"MBDC0248",69,"SRPDB: Signal Recognition Particle Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1994,5,"yes",1992,11,296,"update"
"MBDC0248",53,"SRPDB: Signal Recognition Particle Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1993,18,"yes",1992,11,296,"update"
"MBDC0248",26,"SRPDB: Signal Recognition Particle Database","Physical; Server","not_www","not_applicable","not_applicable","not_applicable",1992,8,"yes",1992,11,296,"debut"
"MBDC0248",335,"SRPDB: Signal Recognition Particle Database","http://pegasus.uthct.edu/SRPDB/SRPDB.html","no","can't be reached","not_applicable","not_applicable",1998,29,"yes",1992,11,296,"update"
"MBDC0248",1305,"SRPDB: Signal Recognition Particle Database","http://srpdb.kvl.dk/","yes","not_applicable","unknown","not_applicable",2006,38,"yes",1992,11,296,"update"
"MBDC0248",232,"SRPDB: Signal Recognition Particle Database","http://pegasus.uthct.edu/SRPDB/SRPDB.html","no","can't be reached","not_applicable","not_applicable",1997,12,"yes",1992,11,296,"update"
"MBDC0248",143,"SRPDB: Signal Recognition Particle Database","http://pegasus.uthct.edu/SRPDB/SRPDB.html","no","can't be reached","not_applicable","not_applicable",1996,15,"yes",1992,11,296,"update"
"MBDC0248",606,"SRPDB: Signal Recognition Particle Database","http://psyche.uthct.edu/dbs/SRPDB/SRPDB.html","no","can't be reached","not_applicable","Mirror fail; http://www.medkem.gu.se/dbs/SRPDB/SRPDB.html not found",2001,44,"yes",1992,11,296,"update"
"MBDC0248",346,"SRPDB: Signal Recognition Particle Database","http://psyche.uthct.edu/dbs/SRPDB/SRPDB.html","no","can't be reached","not_applicable","not_applicable",1999,12,"yes",1992,11,296,"update"
"MBDC0250",437,"tmRDB: tmRNA database","http://psyche.uthct.edu/dbs/tmRDB/tmRDB.html","no","not found","not_applicable","not_applicable",1999,9,"yes",1998,6,147,"update"
"MBDC0250",627,"tmRDB: tmRNA database","http://www.ag.auburn.edu/mirror/tmRDB/","yes","not_applicable","unknown","not_applicable",2001,29,"yes",1998,6,147,"update"
"MBDC0250",1305,"tmRDB: tmRNA database","http://tmrdb.kvl.dk/","yes","not_applicable","unknown","not_applicable",2006,38,"yes",1998,6,147,"update"
"MBDC0250",824,"tmRDB: tmRNA database","http://www.ag.auburn.edu/mirror/tmRDB/","yes","not_applicable","unknown","not_applicable",2003,52,"yes",1998,6,147,"update"
"MBDC0250",293,"tmRDB: tmRNA database","http://www.uthct.edu/tmRDB/tmRDB.html","no","not found","not_applicable","Disambiguation; Note: different than the tmRNA website (Williams)",1998,5,"yes",1998,6,147,"debut"
"MBDC0250",513,"tmRDB: tmRNA database","http://www.ag.auburn.edu/mirror/tmRDB/","yes","not_applicable","unknown","not_applicable",2000,14,"yes",1998,6,147,"update"
"MBDC0251",1887,"tRNAdb","http://trnadb.bioinf.uni-leipzig.de","yes","not_applicable","unknown","not_applicable",2009,304,"yes",2009,1,304,"debut"
"MBDC0252",1174,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://www.ba.itb.cnr.it/UTR/","no","not found","not_applicable","Other; not considering UTRsite separate",2005,115,"yes",1998,6,539,"update"
"MBDC0252",274,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://bio-www.ba.cnr.it:8000/srs5/","no","can't be reached","not_applicable","not_applicable",1998,15,"yes",1998,6,539,"debut"
"MBDC0252",670,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://bighost.area.ba.cnr.it/BIG/UTRHome/","no","can't be reached","not_applicable","Other; not considering UTRsite separate",2002,168,"yes",1998,6,539,"update"
"MBDC0252",2001,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://utrdb.ba.itb.cnr.it/","yes","not_applicable","2010","not_applicable",2010,143,"yes",1998,6,539,"update"
"MBDC0252",511,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://bigarea.area.ba.cnr.it:8000/EmbIT/UTRHome/","no","can't be reached","not_applicable","Other; not considering UTRsite separate",2000,63,"yes",1998,6,539,"update"
"MBDC0252",369,"UTRdb: UnTranslated Regions of eukaryotic mRNAs database","http://bigarea.area.ba.cnr.it:8000/Biowww/#UTRdb","no","can't be reached","not_applicable","not_applicable",1999,35,"yes",1998,6,539,"update"
"MBDC0255",2684,"SCOPe","http://scop.berkeley.edu","yes","not_applicable","2015","Funding; Honest; SCOPe Funding Alert: SCOPe support from the NIH ended in April 2016. John-Marc Chandonia is the primary maintainer and has continued to develop SCOPe using vacation time. Three proposals to the NIH for continued funding have been unsuccessful. If our current NIH proposal is not funded, SCOPe will shut down permanently in Summer 2017 as Dr. Chandonia will need to seek a new position.",2014,97,"yes",2014,1,97,"debut"
"MBDC0257",1534,"BioMagResBank","http://www.bmrb.wisc.edu/","yes","not_applicable","2016","not_applicable",2008,542,"yes",2008,1,542,"debut"
"MBDC0258",855,"CATH: Class, Architecture, Topology, Homology","http://www.biochem.ucl.ac.uk/bsm/cath","yes","not_applicable","2016","not_applicable",2003,143,"yes",1999,10,1187,"update"
"MBDC0258",378,"CATH: Class, Architecture, Topology, Homology","http://www.biochem.ucl.ac.uk/bsm/cath","yes","not_applicable","2016","not_applicable",1999,121,"yes",1999,10,1187,"debut"
"MBDC0258",1408,"CATH: Class, Architecture, Topology, Homology","http://www.cathdb.info","yes","not_applicable","2016","not_applicable",2007,198,"yes",1999,10,1187,"update"
"MBDC0258",2483,"CATH: Class, Architecture, Topology, Homology","http://www.cathdb.info/","yes","not_applicable","2017","not_applicable",2013,135,"yes",1999,10,1187,"update"
"MBDC0258",2106,"CATH: Class, Architecture, Topology, Homology","http://www.cathdb.info/sfam/membrane/","no","not found","not_applicable","Access - Other; actually link direclty to CATH homepage not given in article ",2011,97,"yes",1999,10,1187,"update"
"MBDC0258",1849,"CATH: Class, Architecture, Topology, Homology","http://www.cathdb.info","yes","not_applicable","2016","not_applicable",2009,135,"yes",1999,10,1187,"update"
"MBDC0258",468,"CATH: Class, Architecture, Topology, Homology","http://www.biochem.ucl.ac.uk/bsm/cath","yes","not_applicable","2016","not_applicable",2000,165,"yes",1999,10,1187,"update"
"MBDC0258",636,"CATH: Class, Architecture, Topology, Homology","http://www.biochem.ucl.ac.uk/bsm/cath","yes","not_applicable","2016","not_applicable",2001,47,"yes",1999,10,1187,"update"
"MBDC0258",1130,"CATH: Class, Architecture, Topology, Homology","http://www.biochem.ucl.ac.uk/bsm/cath/","yes","not_applicable","2016","not_applicable",2005,69,"yes",1999,10,1187,"update"
"MBDC0258",2909,"CATH: Class, Architecture, Topology, Homology","http://www.cathdb.info","yes","not_applicable","2016","not_applicable",2015,77,"yes",1999,10,1187,"update"
"MBDC0259",581,"CE: Combinatorial Extension","http://cl.sdsc.edu/ce.html","no","not found","not_applicable","not_applicable",2001,76,"no",2001,1,76,"debut"
"MBDC0262",807,"MolMovDB: Database of Macromolecular Motions","http://molmovdb.org/","no","can't be reached","not_applicable","not_applicable",2003,130,"yes",2003,2,235,"debut"
"MBDC0262",1325,"MolMovDB: Database of Macromolecular Motions","http://molmovdb.org","yes","not_applicable","unknown","not_applicable",2006,105,"yes",2003,2,235,"update"
"MBDC0264",956,"DSDBASE","http://www.ncbs.res.in/~faculty/mini/dsdbase/dsdbase.html","no","not found","not_applicable","Disambiguation; maybe DiSulfide DataBASE?",2004,21,"no",2004,1,21,"debut"
"MBDC0267",465,"IMB Jena Image Library of Biological Macromolecules","http://www.imb-jena.de/IMAGE.html","no","not found","not_applicable","not_applicable",2000,16,"no",2000,2,53,"debut"
"MBDC0267",750,"IMB Jena Image Library of Biological Macromolecules","http://www.imb-jena.de/IMAGE.html","no","not found","not_applicable","not_applicable",2002,37,"no",2000,2,53,"update"
"MBDC0268",2839,"CMBI PDB related databases","http://swift.cmbi.ru.nl/gv/facilities/","yes","not_applicable","unknown","not_applicable",2015,49,"yes",2011,2,280,"update"
"MBDC0268",2172,"CMBI PDB related databases","http://swift.cmbi.ru.nl/gv/facilities/","yes","not_applicable","unknown","not_applicable",2011,231,"yes",2011,2,280,"debut"
"MBDC0270",2290,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/structure","yes","not_applicable","2016","not_applicable",2012,59,"yes",1999,7,407,"update"
"MBDC0270",727,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=Structure","yes","not_applicable","2016","not_applicable",2002,32,"yes",1999,7,407,"update"
"MBDC0270",1388,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=structure","yes","not_applicable","2016","not_applicable",2007,76,"yes",1999,7,407,"update"
"MBDC0270",775,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/Entrez/structure.html","no","not found","not_applicable","not_applicable",2003,136,"yes",1999,7,407,"update"
"MBDC0270",428,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/Entrez","no","related generic government site redirect","not_applicable","not_applicable",1999,32,"yes",1999,7,407,"debut"
"MBDC0270",2761,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/Structure","yes","not_applicable","2016","not_applicable",2014,34,"yes",1999,7,407,"update"
"MBDC0270",535,"NCBI MMDB: Molecular Modeling DataBase","http://www.ncbi.nlm.nih.gov/Entrez/structure.html","no","not found","not_applicable","not_applicable",2000,38,"yes",1999,7,407,"update"
"MBDC0272",2719,"NDB: Nucleic Acid Database","http://ndbserver.rutgers.edu","yes","not_applicable","unknown","not_applicable",2014,23,"yes",2014,1,23,"debut"
"MBDC0274",650,"PALI","http://pauling.mbu.iisc.ernet.in/~pali","no","not found","not_applicable","not_applicable",2001,74,"no",2001,2,111,"debut"
"MBDC0274",840,"PALI","http://pauling.mbu.iisc.ernet.in/~pali","no","not found","not_applicable","not_applicable",2003,37,"no",2001,2,111,"update"
"MBDC0275",668,"PASS2: Protein Alignments organised as Structural Superfamilies","http://www.ncbs.res.in/7Efaculty/mini/campass/pass.html","no","not found","not_applicable","not_applicable",2002,16,"yes",2002,3,26,"debut"
"MBDC0275",2959,"PASS2: Protein Alignments organised as Structural Superfamilies","http://caps.ncbs.res.in/pass2/","yes","not_applicable","unknown","not_applicable",2016,1,"yes",2002,3,26,"update"
"MBDC0275",2282,"PASS2: Protein Alignments organised as Structural Superfamilies","http://caps.ncbs.res.in/pass2/","yes","not_applicable","unknown","not_applicable",2012,9,"yes",2002,3,26,"update"
"MBDC0276",533,"RCSB PDB: Protein Data Bank","http://www.rcsb.org/pdb/","yes","not_applicable","2017","not_applicable",2000,16498,"yes",2000,9,17915,"debut"
"MBDC0276",2779,"RCSB PDB: Protein Data Bank","http://www.rcsb.org","yes","not_applicable","2017","not_applicable",2015,94,"yes",2000,9,17915,"update"
"MBDC0276",1069,"RCSB PDB: Protein Data Bank","http://www.pdb.org","yes","not_applicable","2017","not_applicable",2005,227,"yes",2000,9,17915,"update"
"MBDC0276",583,"RCSB PDB: Protein Data Bank","http://www.rcsb.org/pdb/","yes","not_applicable","2017","not_applicable",2001,67,"yes",2000,9,17915,"update"
"MBDC0276",736,"RCSB PDB: Protein Data Bank","http://www.pdb.org/","yes","not_applicable","2017","not_applicable",2002,163,"yes",2000,9,17915,"update"
"MBDC0276",941,"RCSB PDB: Protein Data Bank","http://www.pdb.org","yes","not_applicable","2017","not_applicable",2004,91,"yes",2000,9,17915,"update"
"MBDC0276",2442,"RCSB PDB: Protein Data Bank","http://www.rcsb.org","yes","not_applicable","2017","not_applicable",2013,224,"yes",2000,9,17915,"update"
"MBDC0276",877,"RCSB PDB: Protein Data Bank","http://www.pdb.org/","yes","not_applicable","2017","not_applicable",2003,250,"yes",2000,9,17915,"update"
"MBDC0276",2058,"RCSB PDB: Protein Data Bank","http://www.pdb.org","yes","not_applicable","2017","not_applicable",2011,301,"yes",2000,9,17915,"update"
"MBDC0277",605,"PDB-REPRDB","http://www.rwcp.or.jp/papia/","no","can't be reached","not_applicable","not_applicable",2001,57,"no",2001,2,127,"debut"
"MBDC0277",870,"PDB-REPRDB","http://www.cbrc.jp/pdbreprdb/","no","can't be reached","not_applicable","not_applicable",2003,70,"no",2001,2,127,"update"
"MBDC0278",2759,"EMBL-EBI PDBsum","http://www.ebi.ac.uk/pdbsum","yes","not_applicable","2017","not_applicable",2014,96,"yes",2001,4,945,"update"
"MBDC0278",610,"EMBL-EBI PDBsum","http://www.biochem.ucl.ac.uk/bsm/pdbsum","yes","not_applicable","2017","not_applicable",2001,300,"yes",2001,4,945,"debut"
"MBDC0278",1819,"EMBL-EBI PDBsum","http://www.ebi.ac.uk/pdbsum","yes","not_applicable","2017","not_applicable",2009,276,"yes",2001,4,945,"update"
"MBDC0278",1083,"EMBL-EBI PDBsum","http://www.ebi.ac.uk/thornton-srv/databases/pdbsum","yes","not_applicable","2017","not_applicable",2005,273,"yes",2001,4,945,"update"
"MBDC0280",1008,"ProTherm","http://gibk26.bse.kyutech.ac.jp/jouhou/Protherm/protherm.html","no","can't be reached","not_applicable","not_applicable",2004,149,"no",1999,5,403,"update"
"MBDC0280",447,"ProTherm","http://www.rtc.riken.go.jp/protherm.html","no","can't be reached","not_applicable","not_applicable",2000,46,"no",1999,5,403,"update"
"MBDC0280",1194,"ProTherm","http://gibk26.bse.kyutech.ac.jp/jouhou/Protherm/protherm.html","no","can't be reached","not_applicable","not_applicable",2006,88,"no",1999,5,403,"update"
"MBDC0280",375,"ProTherm","http://www.rtc.riken.go.jp/protherm.html","no","can't be reached","not_applicable","not_applicable",1999,83,"no",1999,5,403,"debut"
"MBDC0280",753,"ProTherm","http://www.rtc.riken.go.jp/jouhou/protherm/protherm.html","no","can't be reached","not_applicable","not_applicable",2002,37,"no",1999,5,403,"update"
"MBDC0281",834,"PIR RESID","http://pir.georgetown.edu/pirwww/dbinfo/resid.html","no","not found","not_applicable","not_applicable",2003,32,"no",1999,4,57,"update"
"MBDC0281",589,"PIR RESID","http://pir.georgetown.edu/pirwww/dbinfo/resid.html","no","not found","not_applicable","not_applicable",2001,9,"no",1999,4,57,"update"
"MBDC0281",399,"PIR RESID","http://www-nbrf.georgetown.edu/pir/searchdb.html","no","not found","not_applicable","not_applicable",1999,4,"no",1999,4,57,"debut"
"MBDC0281",488,"PIR RESID","http://pir.georgetown.edu/pirwww/dbinfo/resid.html","no","not found","not_applicable","not_applicable",2000,12,"no",1999,4,57,"update"
"MBDC0282",700,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop","yes","not_applicable","2009","not_applicable",2002,384,"yes",1997,7,2578,"update"
"MBDC0282",2599,"SCOP: Structural Classification of Proteins","http://scop2.mrc-lmb.cam.ac.uk/","yes","not_applicable","2013","Naming; harmonized with scop since expending and replacing "" SCOP2 is a successor to the Structural Classification of Proteins … SCOP""",2014,57,"yes",1997,7,2578,"update"
"MBDC0282",1030,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop","yes","not_applicable","2009","not_applicable",2004,696,"yes",1997,7,2578,"update"
"MBDC0282",1704,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop","yes","not_applicable","2009","not_applicable",2008,657,"yes",1997,7,2578,"update"
"MBDC0282",197,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop/","yes","not_applicable","2009","not_applicable",1997,182,"yes",1997,7,2578,"debut"
"MBDC0282",348,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop/","yes","not_applicable","2009","not_applicable",1999,163,"yes",1997,7,2578,"update"
"MBDC0282",522,"SCOP: Structural Classification of Proteins","http://scop.mrc-lmb.cam.ac.uk/scop/","yes","not_applicable","2009","not_applicable",2000,439,"yes",1997,7,2578,"update"
"MBDC0285",2147,"SUPERFAMILY","http://supfam.org","yes","not_applicable","unknown","not_applicable",2011,74,"yes",2002,6,770,"update"
"MBDC0285",724,"SUPERFAMILY","http://supfam.org","yes","not_applicable","unknown","not_applicable",2002,180,"yes",2002,6,770,"debut"
"MBDC0285",1038,"SUPERFAMILY","http://supfam.org","yes","not_applicable","unknown","not_applicable",2004,168,"yes",2002,6,770,"update"
"MBDC0285",2931,"SUPERFAMILY","http://supfam.org","yes","not_applicable","unknown","not_applicable",2015,17,"yes",2002,6,770,"update"
"MBDC0285",1383,"SUPERFAMILY","http://supfam.org","yes","not_applicable","unknown","not_applicable",2007,149,"yes",2002,6,770,"update"
"MBDC0285",1757,"SUPERFAMILY","http://supfam.org/","yes","not_applicable","unknown","not_applicable",2009,182,"yes",2002,6,770,"update"
"MBDC0288",656,"BAliBASE: Benchmark Alignment dataBASE","http://www-igbmc.u-strasbg.fr/BioInfo/BAliBASE2/index.html","no","not found","not_applicable","not_applicable",2001,106,"no",2001,1,106,"debut"
"MBDC0292",2587,"UniCarbKB","http://unicarbkb.org","yes","not_applicable","unknown","not_applicable",2014,40,"yes",2014,1,40,"debut"
"MBDC0293",749,"HOX Pro DB","http://www.iephb.nw.ru/hoxpro","yes","not_applicable","unknown","not_applicable",2002,17,"yes",2000,2,34,"update"
"MBDC0293",480,"HOX Pro DB","http://www.mssm.edu/molbio/hoxpro","no","related generic reseach institution site redirect","not_applicable","not_applicable",2000,17,"yes",2000,2,34,"debut"
"MBDC0294",1264,"IGC: Imprinted Gene Catalogue","www.otago.ac.nz/IGC","yes","not_applicable","unknown","not_applicable",2006,45,"yes",2001,2,218,"update"
"MBDC0294",633,"IGC: Imprinted Gene Catalogue","http://www.otago.ac.nz/IGC","yes","not_applicable","unknown","not_applicable",2001,173,"yes",2001,2,218,"debut"
"MBDC0296",309,"MPDB: Molecular Probe Data Base","http://www.biotech.ist.unige.it/interlab/mpdb.html","no","can't be reached","not_applicable","not_applicable",1998,2,"no",1992,6,19,"update"
"MBDC0296",45,"MPDB: Molecular Probe Data Base","Server","not_www","not_applicable","not_applicable","not_applicable",1993,3,"no",1992,6,19,"update"
"MBDC0296",77,"MPDB: Molecular Probe Data Base","Server","not_www","not_applicable","not_applicable","not_applicable",1994,4,"no",1992,6,19,"update"
"MBDC0296",153,"MPDB: Molecular Probe Data Base","http://www.ist.unige.it/interlab/mpdb.html","no","can't be reached","not_applicable","not_applicable",1996,2,"no",1992,6,19,"update"
"MBDC0296",27,"MPDB: Molecular Probe Data Base","Server","not_www","not_applicable","not_applicable","not_applicable",1992,4,"no",1992,6,19,"debut"
"MBDC0296",200,"MPDB: Molecular Probe Data Base","http://www.biotech.ist.unige.it/interlab/mpdb.html","no","can't be reached","not_applicable","not_applicable",1997,4,"no",1992,6,19,"update"
"MBDC0297",2775,"NCBI Taxonomy","http://www.ncbi.nlm.nih.gov/taxonomy","yes","not_applicable","unknown","not_applicable",2015,18,"yes",2012,2,177,"update"
"MBDC0297",2258,"NCBI Taxonomy","http://www.ncbi.nlm.nih.gov/taxonomy","yes","not_applicable","unknown","not_applicable",2012,159,"yes",2012,2,177,"debut"
"MBDC0299",713,"RIDOM","http://www.ridom.de/","yes","not_applicable","2016","not_applicable",2002,96,"yes",2002,1,96,"debut"
"MBDC0300",662,"SWEET-DB","http://www.dkfz.de/spec2/sweetdb/nar/","no","not found","not_applicable","not_applicable",2002,62,"no",2002,1,62,"debut"
"MBDC0303",690,"VirOligo","http://viroligo.okstate.edu/","yes","not_applicable","2015","not_applicable",2002,14,"yes",2002,1,14,"debut"
"MBDC0304",826,"WorfDB: Worm ORFeome DataBase","http://worfdb.dfci.harvard.edu","yes","not_applicable","unknown","not_applicable",2003,30,"yes",2003,1,30,"debut"
"MBDC0307",723,"yMGV: yeast Microarray Global Viewer","http://transcriptome.ens.fr/ymgv","no","related generic reseach institution site redirect","not_applicable","not_applicable",2002,23,"no",2002,2,29,"debut"
"MBDC0307",930,"yMGV: yeast Microarray Global Viewer","http://transcriptome.ens.fr/ymgv","no","related generic reseach institution site redirect","not_applicable","not_applicable",2004,6,"no",2002,2,29,"update"
"MBDC0309",719,"S/MARt DB","http://transfac.gbf.de/SMARtDB/","no","can't be reached","not_applicable","not_applicable",2002,47,"no",2002,1,47,"debut"
"MBDC0311",1467,"TransportDB","http://www.membranetransport.org/","yes","not_applicable","unknown","not_applicable",2007,208,"yes",2004,2,353,"update"
"MBDC0311",944,"TransportDB","http://www.membranetransport.org","yes","not_applicable","unknown","not_applicable",2004,145,"yes",2004,2,353,"debut"
"MBDC0312",1002,"trome","http://www.ch.embnet.org/software/fetch.html","yes","not_applicable","not_applicable","not_applicable",2004,5,"yes",2004,1,5,"debut"
"MBDC0313",2516,"TropGENE-DB","http://tropgenedb.cirad.fr","yes","not_applicable","unknown","not_applicable",2013,8,"yes",2004,2,24,"update"
"MBDC0313",984,"TropGENE-DB","http://tropgenedb.cirad.fr","yes","not_applicable","unknown","not_applicable",2004,16,"yes",2004,2,24,"debut"
"MBDC0314",1033,"TrSDB: TranScout Database","http://ibb.uab.es/trsdb","yes","not_applicable","2004","not_applicable",2004,11,"yes",2004,1,11,"debut"
"MBDC0315",2997,"TTD: Therapeutic Target Database","http://bidd.nus.edu.sg/group/ttd/ttd.asp","no","service unavailable","not_applicable","not_applicable",2016,4,"yes",2002,5,496,"update"
"MBDC0315",2007,"TTD: Therapeutic Target Database","http://bidd.nus.edu.sg/group/cjttd/TTD.asp","yes","not_applicable","unknown","not_applicable",2010,96,"yes",2002,5,496,"update"
"MBDC0315",2245,"TTD: Therapeutic Target Database","http://bidd.nus.edu.sg/group/ttd/ttd.asp","no","service unavailable","not_applicable","not_applicable",2012,179,"yes",2002,5,496,"update"
"MBDC0315",2679,"TTD: Therapeutic Target Database","http://bidd.nus.edu.sg/group/ttd/ttd.asp","no","service unavailable","not_applicable","not_applicable",2014,42,"yes",2002,5,496,"update"
"MBDC0315",715,"TTD: Therapeutic Target Database","http://xin.cz3.nus.edu.sg/group/ttd/ttd.asp","no","can't be reached","not_applicable","not_applicable",2002,175,"yes",2002,5,496,"debut"
"MBDC0316",1650,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2008,393,"yes",2003,13,4500,"update"
"MBDC0316",1298,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2006,346,"yes",2003,13,4500,"update"
"MBDC0316",1378,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2007,16,"yes",2003,13,4500,"update"
"MBDC0316",2893,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2015,145,"yes",2003,13,4500,"update"
"MBDC0316",1836,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2009,266,"yes",2003,13,4500,"update"
"MBDC0316",2131,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2011,694,"yes",2003,13,4500,"update"
"MBDC0316",803,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2003,995,"yes",2003,13,4500,"debut"
"MBDC0316",2721,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2014,332,"yes",2003,13,4500,"update"
"MBDC0316",3119,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2016,10,"yes",2003,13,4500,"update"
"MBDC0316",1385,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2007,219,"yes",2003,13,4500,"update"
"MBDC0316",2410,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2013,425,"yes",2003,13,4500,"update"
"MBDC0316",2329,"UCSC Genome Browser Database","http://genome.ucsc.edu","yes","not_applicable","2017","not_applicable",2012,220,"yes",2003,13,4500,"update"
"MBDC0316",1979,"UCSC Genome Browser Database","http://genome.ucsc.edu/","yes","not_applicable","2017","not_applicable",2010,439,"yes",2003,13,4500,"update"
"MBDC0318",1896,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2010,727,"yes",2004,12,7709,"update"
"MBDC0318",1188,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2006,637,"yes",2004,12,7709,"update"
"MBDC0318",1026,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2004,1058,"yes",2004,12,7709,"debut"
"MBDC0318",2900,"Uniprot: Universal Protein Resource","http://www.uniprot.org/","yes","not_applicable","2017","not_applicable",2015,638,"yes",2004,12,7709,"update"
"MBDC0318",1360,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2007,350,"yes",2004,12,7709,"update"
"MBDC0318",1642,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2008,531,"yes",2004,12,7709,"update"
"MBDC0318",2424,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2013,399,"yes",2004,12,7709,"update"
"MBDC0318",1091,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2005,1081,"yes",2004,12,7709,"update"
"MBDC0318",1784,"Uniprot: Universal Protein Resource","www.uniprot.org","yes","not_applicable","2017","not_applicable",2009,402,"yes",2004,12,7709,"update"
"MBDC0318",2712,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2014,657,"yes",2004,12,7709,"update"
"MBDC0318",2107,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2011,431,"yes",2004,12,7709,"update"
"MBDC0318",2404,"Uniprot: Universal Protein Resource","http://www.uniprot.org","yes","not_applicable","2017","not_applicable",2012,798,"yes",2004,12,7709,"update"
"MBDC0322",1708,"GTOP: Genomes TO Protein","http://spock.genes.nig.ac.jp/~genome/gtop.html","yes","not_applicable","2010","not_applicable",2009,22,"yes",2002,2,79,"update"
"MBDC0322",667,"GTOP: Genomes TO Protein","http://spock.genes.nig.ac.jp/~genome/gtop.html","yes","not_applicable","2010","not_applicable",2002,57,"yes",2002,2,79,"debut"
"MBDC0324",683,"HOWDY","http://www-alis.tokyo.jst.go.jp/HOWDY/","no","can't be reached","not_applicable","not_applicable",2002,6,"no",2002,1,6,"debut"
"MBDC0328",2277,"GeneDB","http://www.genedb.org/","yes","not_applicable","unknown","not_applicable",2012,96,"yes",2004,2,274,"update"
"MBDC0328",964,"GeneDB","http://www.genedb.org/","yes","not_applicable","unknown","not_applicable",2004,178,"yes",2004,2,274,"debut"
"MBDC0329",1081,"GeneNet","http://wwwmgs.bionet.nsc.ru/mgs/gnw/genenet/","yes","not_applicable","unknown","not_applicable",2005,16,"yes",2002,2,32,"update"
"MBDC0329",687,"GeneNet","http://wwwmgs.bionet.nsc.ru/mgs/systems/genenet/","yes","not_applicable","unknown","not_applicable",2002,16,"yes",2002,2,32,"debut"
"MBDC0330",1032,"GenePaint.org","http://www.genepaint.org","yes","not_applicable","2016","not_applicable",2004,289,"yes",2004,1,289,"debut"
"MBDC0331",1241,"MODBASE","http://salilab.org/modbase","yes","not_applicable","2013","not_applicable",2006,169,"yes",2000,7,802,"update"
"MBDC0331",2716,"MODBASE","http://salilab.org/modbase","yes","not_applicable","2013","not_applicable",2014,39,"yes",2000,7,802,"update"
"MBDC0331",2065,"MODBASE","http://salilab.org/modbase","yes","not_applicable","2013","not_applicable",2011,167,"yes",2000,7,802,"update"
"MBDC0331",453,"MODBASE","http://guitar.rockefeller.edu/modbase/","no","can't be reached","not_applicable","not_applicable",2000,58,"yes",2000,7,802,"debut"
"MBDC0331",945,"MODBASE","http://salilab.org/modbase","yes","not_applicable","2013","not_applicable",2004,170,"yes",2000,7,802,"update"
"MBDC0331",730,"MODBASE","http://guitar.rockefeller.edu/modbase","no","can't be reached","not_applicable","not_applicable",2002,78,"yes",2000,7,802,"update"
"MBDC0331",1865,"MODBASE","http://salilab.org/modbase","yes","not_applicable","2013","not_applicable",2009,121,"yes",2000,7,802,"update"
"MBDC0336",678,"RiceGAAS","http://RiceGAAS.dna.affrc.go.jp/","yes","not_applicable","unknown","Service Status; THIS WEB SITE WILL BE CLOSED IN MARCH, 2017.",2002,102,"yes",2002,1,102,"debut"
"MBDC0337",843,"CORG: Comparative Regulatory Genomics","http://corg.molgen.mpg.de","no","can't be reached","not_applicable","not_applicable",2003,57,"no",2003,2,58,"debut"
"MBDC0337",1450,"CORG: Comparative Regulatory Genomics","http://corg.eb.tuebingen.mpg.de","no","can't be reached","not_applicable","not_applicable",2007,1,"no",2003,2,58,"update"
"MBDC0338",781,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2003,523,"yes",2003,7,1868,"debut"
"MBDC0338",1156,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2005,235,"yes",2003,7,1868,"update"
"MBDC0338",1764,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2009,310,"yes",2003,7,1868,"update"
"MBDC0338",2913,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2015,71,"yes",2003,7,1868,"update"
"MBDC0338",2576,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2013,201,"yes",2003,7,1868,"update"
"MBDC0338",1512,"EMBL-EBI ArrayExpress","www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2007,316,"yes",2003,7,1868,"update"
"MBDC0338",2161,"EMBL-EBI ArrayExpress","http://www.ebi.ac.uk/arrayexpress","yes","not_applicable","2016","not_applicable",2011,212,"yes",2003,7,1868,"update"
"MBDC0339",850,"MEPD: Medaka Expression Pattern Database ","http://medaka.dsp.jst.go.jp/MEPD","no","can't be reached","not_applicable","not_applicable",2003,18,"yes",2003,2,19,"debut"
"MBDC0339",3081,"MEPD: Medaka Expression Pattern Database ","http://mepd.cos.uni-heidelberg.de/","yes","not_applicable","unknown","not_applicable",2016,1,"yes",2003,2,19,"update"
"MBDC0340",339,"TRANSFAC","http://transfac.gbf.de/","no","can't be reached","not_applicable","not_applicable",1999,263,"yes",1996,8,6114,"update"
"MBDC0340",475,"TRANSFAC","http://transfac.gbf.de/TRANSFAC/","no","can't be reached","not_applicable","not_applicable",2000,911,"yes",1996,8,6114,"update"
"MBDC0340",879,"TRANSFAC","http://www.gene-regulation.com","yes","not_applicable","unknown","Service Status; Funding; commerical veriosn + free version that requires an account",2003,1313,"yes",1996,8,6114,"update"
"MBDC0340",264,"TRANSFAC","http://transfac.gbf.de/TRANSFAC","no","can't be reached","not_applicable","not_applicable",1998,1236,"yes",1996,8,6114,"update"
"MBDC0340",219,"TRANSFAC","http://transfac.gbf-braunschweig.de","no","can't be reached","not_applicable","not_applicable",1997,122,"yes",1996,8,6114,"update"
"MBDC0340",640,"TRANSFAC","http://www.gene-regulation.de/","no","unrelated site redirect","not_applicable","not_applicable",2001,510,"yes",1996,8,6114,"update"
"MBDC0340",145,"TRANSFAC","http://transfac.gbf-braunschweig.de","no","can't be reached","not_applicable","not_applicable",1996,627,"yes",1996,8,6114,"debut"
"MBDC0340",1236,"TRANSFAC","http://www.gene-regulation.com/pub/databases.html","yes","not_applicable","unknown","not_applicable",2006,1132,"yes",1996,8,6114,"update"
"MBDC0341",1201,"TRANSPATH","http://www.gene-regulation.com/pub/databases.html","yes","not_applicable","unknown","not_applicable",2006,82,"yes",2003,2,146,"update"
"MBDC0341",791,"TRANSPATH","http://www.biobase.de/pages/products/databases.html","yes","not_applicable","unknown","Service Status; Funding; commerical veriosn + free version that requires an account",2003,64,"yes",2003,2,146,"debut"
"MBDC0342",449,"YIDB: Yeast Intron DataBase","http://www.embl-heidelberg.de/Externallnfo/seraphin/yidb.html","no","not found","not_applicable","not_applicable",2000,34,"no",2000,1,34,"debut"
"MBDC0345",682,"TRANSCompel","http://www.gene-regulation.com/pub/databases.html#transcompel","yes","not_applicable","2005","not_applicable",2002,88,"yes",2002,1,88,"debut"
"MBDC0350",789,"GeneCards","http://bioinfo.weizmann.ac.il/cards/","no","not found","not_applicable","not_applicable",2003,24,"no",2003,1,24,"debut"
"MBDC0351",808,"GPI: GenoPlante-Info","http://genoplante-info.infobiogen.fr/","no","can't be reached","not_applicable","not_applicable",2003,24,"no",2003,1,24,"debut"
"MBDC0352",867,"HGT-DB: Horizontal Gene Transfer DataBase","http://www.fut.es/~debb/HGT","no","service unavailable","not_applicable","not_applicable",2003,168,"no",2003,1,168,"debut"
"MBDC0354",818,"PEDANT","http://pedant-gsf.de","no","can't be reached","not_applicable","not_applicable",2003,94,"no",2003,4,215,"debut"
"MBDC0354",1799,"PEDANT","http://pedant.gsf.de","no","can't be reached","not_applicable","not_applicable",2009,60,"no",2003,4,215,"update"
"MBDC0354",1142,"PEDANT","http://pedant.gsf.de","no","can't be reached","not_applicable","not_applicable",2005,43,"no",2003,4,215,"update"
"MBDC0354",1403,"PEDANT","http://pedant.gsf.de","no","can't be reached","not_applicable","not_applicable",2007,18,"no",2003,4,215,"update"
"MBDC0355",1696,"PlantGDB: Genome DataBase","http://www.plantgdb.org/","yes","not_applicable","2012","Funding; “PlantGDB's NSF funding has ended and the website is no longer being updated. However, you can check out a related project from the Brendel Lab, xGDBvm …”",2008,131,"yes",2004,2,227,"update"
"MBDC0355",935,"PlantGDB: Genome DataBase","http://www.plantgdb.org/","yes","not_applicable","2012","not_applicable",2004,96,"yes",2004,2,227,"debut"
"MBDC0356",798,"RTPrimerDB","http://www.realtimeprimerdatabase.ht.st","no","can't be reached","not_applicable","not_applicable",2003,164,"yes",2003,3,332,"debut"
"MBDC0356",1802,"RTPrimerDB","http://www.rtprimerdb.org","yes","not_applicable","2006","not_applicable",2009,83,"yes",2003,3,332,"update"
"MBDC0356",1312,"RTPrimerDB","http://medgen.ugent.be/rtprimerdb","no","forbidden","not_applicable","not_applicable",2006,85,"yes",2003,3,332,"update"
"MBDC0357",596,"SGD: Saccharomyces Genome Database","genome-www.stanford.edu/Saccharomyces/","yes","not_applicable","2017","Link; that is the correct URL as in PDF and it does redirect properly",2001,48,"yes",1998,14,2094,"update"
"MBDC0357",718,"SGD: Saccharomyces Genome Database","http://genome-www.stanford.edu/Saccharomyces","yes","not_applicable","2017","not_applicable",2002,262,"yes",1998,14,2094,"update"
"MBDC0357",532,"SGD: Saccharomyces Genome Database","http://genome-www.stanford.edu/Saccharomyces/","yes","not_applicable","2017","not_applicable",2000,69,"yes",1998,14,2094,"update"
"MBDC0357",1045,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org/","yes","not_applicable","2017","not_applicable",2005,32,"yes",1998,14,2094,"update"
"MBDC0357",2347,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org","yes","not_applicable","2017","not_applicable",2012,463,"yes",1998,14,2094,"update"
"MBDC0357",1444,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org/","yes","not_applicable","2016","not_applicable",2007,59,"yes",1998,14,2094,"update"
"MBDC0357",1020,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org/","yes","not_applicable","2017","not_applicable",2004,194,"yes",1998,14,2094,"update"
"MBDC0357",258,"SGD: Saccharomyces Genome Database","http://genome-www.stanford.edu/Saccharomyces/","yes","not_applicable","2017","not_applicable",1998,588,"yes",1998,14,2094,"debut"
"MBDC0357",1662,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org","yes","not_applicable","2016","not_applicable",2008,167,"yes",1998,14,2094,"update"
"MBDC0357",858,"SGD: Saccharomyces Genome Database","http://genome-www.stanford.edu/Saccharomyces/","yes","not_applicable","2017","not_applicable",2003,46,"yes",1998,14,2094,"update"
"MBDC0357",3033,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org","yes","not_applicable","2017","not_applicable",2016,1,"yes",1998,14,2094,"update"
"MBDC0357",343,"SGD: Saccharomyces Genome Database","http://genome-www.stanford.edu/Saccharomyces","yes","not_applicable","2017","not_applicable",1999,45,"yes",1998,14,2094,"update"
"MBDC0357",1945,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org","yes","not_applicable","2017","not_applicable",2010,86,"yes",1998,14,2094,"update"
"MBDC0357",2593,"SGD: Saccharomyces Genome Database","http://www.yeastgenome.org","yes","not_applicable","2017","not_applicable",2014,34,"yes",1998,14,2094,"update"
"MBDC0358",774,"SOURCE","http://source.stanford.edu","yes","not_applicable","2015","not_applicable",2003,333,"yes",2003,1,333,"debut"
"MBDC0359",1633,"ToxoDB","http://ToxoDB.org","yes","not_applicable","2017","not_applicable",2008,200,"yes",2003,2,326,"update"
"MBDC0359",848,"ToxoDB","http://ToxoDB.org","yes","not_applicable","2017","not_applicable",2003,126,"yes",2003,2,326,"debut"
"MBDC0362",255,"IARC p53 Database","http://www.iarc.fr/p53/homepage.htm","no","not found","not_applicable","Provenance; database of these mutations was initiated by M. Hollstein and C. C. Harris in 1990",1998,379,"no",1998,1,379,"debut"
"MBDC0364",717,"CSDBase: Cold Shock Domain","http://www.chemie.uni-marburg.de/∼csdbase/","no","related generic reseach institution site redirect","not_applicable","not_applicable",2002,12,"no",2002,1,12,"debut"
"MBDC0365",516,"HIVdb: HIV Drug Resistance Database","http://hivdb.stanford.edu","yes","not_applicable","2016","not_applicable",2000,62,"yes",1999,4,655,"update"
"MBDC0365",357,"HIVdb: HIV Drug Resistance Database","http://hivdb.stanford.edu","yes","not_applicable","2016","Naming; reourse name in paper title is more elaborate but website is what's in colum G",1999,107,"yes",1999,4,655,"debut"
"MBDC0365",635,"HIVdb: HIV Drug Resistance Database","http://hivdb.stanford.edu","yes","not_applicable","2016","not_applicable",2001,79,"yes",1999,4,655,"update"
"MBDC0365",890,"HIVdb: HIV Drug Resistance Database","http://hivdb.stanford.edu","yes","not_applicable","2016","not_applicable",2003,407,"yes",1999,4,655,"update"
"MBDC0366",789,"HORDE: Human Olfactory Receptor Data Explora-torium","http://bioinfo.weizmann.ac.il/HORDE","no","not found","not_applicable","not_applicable",2003,24,"no",2003,1,24,"debut"
"MBDC0367",2815,"EMBL-EBI IPD: Immuno Polymorphism Database","http://www.ebi.ac.uk/ipd/","yes","not_applicable","unknown","not_applicable",2015,219,"yes",2005,4,518,"update"
"MBDC0367",2523,"EMBL-EBI IPD: Immuno Polymorphism Database","http://www.ebi.ac.uk/ipd/","yes","not_applicable","unknown","not_applicable",2013,81,"yes",2005,4,518,"update"
"MBDC0367",1097,"EMBL-EBI IPD: Immuno Polymorphism Database","http://www.ebi.ac.uk/ipd/","yes","not_applicable","unknown","not_applicable",2005,116,"yes",2005,4,518,"debut"
"MBDC0367",2020,"EMBL-EBI IPD: Immuno Polymorphism Database","http://www.ebi.ac.uk/ipd/","yes","not_applicable","unknown","not_applicable",2010,102,"yes",2005,4,518,"update"
"MBDC0368",785,"Lipase Engineering Database","http://www.led.uni-stuttgart.de","yes","not_applicable","2009","not_applicable",2003,111,"yes",2003,1,111,"debut"
"MBDC0369",814,"NPD: Nuclear Protein Database","http://npd.hgu.mrc.ac.uk","yes","not_applicable","unknown","not_applicable",2003,67,"yes",2003,1,67,"debut"
"MBDC0371",560,"PlantsP","http://PlantsP.sdsc.edu","yes","not_applicable","2011","not_applicable",2001,47,"yes",2001,2,70,"debut"
"MBDC0371",876,"PlantsP","http://plantsp.sdsc.edu","yes","not_applicable","2011","not_applicable",2003,23,"yes",2001,2,70,"update"
"MBDC0372",822,"SDAP: Structural Database of Allergenic Proteins","http://fermi.utmb.edu/SDAP","yes","not_applicable","unknown","not_applicable",2003,125,"yes",2003,1,125,"debut"
"MBDC0374",835,"ASC: Active Sequences Collection","http://crisceb.unina2.it/ASC/","no","blank page","not_applicable","not_applicable",2003,22,"no",2003,1,22,"debut"
"MBDC0375",800,"NESbase: Nuclear Export Signal database ","http://www.cbs.dtu.dk/databases/NESbase/","yes","not_applicable","2016","not_applicable",2003,155,"yes",2003,1,155,"debut"
"MBDC0376",842,"NLSdb: Nuclear Localization Signals Database","http://cubic.bioc.columbia.edu/db/NLSdb/","no","can't be reached","not_applicable","not_applicable",2003,107,"no",2003,1,107,"debut"
"MBDC0378",2214,"Database for Bacterial Group II Introns","http://webapps2.ucalgary.ca/~groupii/index.html#","no","not found","not_applicable","Access - Failure Notes; page has 6 linkes for tables that 404 when clicked",2012,37,"no",2012,1,37,"debut"
"MBDC0380",555,"NCIR: Non-Canonical Interactions in known RNA structures","http://prion.bchs.uh.edu/","no","can't be reached","not_applicable","not_applicable",2000,77,"no",2000,2,160,"debut"
"MBDC0380",743,"NCIR: Non-Canonical Interactions in known RNA structures","http://prion.bchs.uh.edu/bppe/","no","can't be reached","not_applicable","not_applicable",2002,83,"no",2000,2,160,"update"
"MBDC0381",366,"ncRNAdb: Noncoding RNAs database","http://www.man.poznan.pl/5SData/ncRNA/index.html","yes","not_applicable","unknown","not_applicable",1999,54,"yes",1999,5,285,"debut"
"MBDC0381",1475,"ncRNAdb: Noncoding RNAs database","http://biobases.ibch.poznan.pl/ncRNA/","yes","not_applicable","unknown","not_applicable",2007,26,"yes",1999,5,285,"update"
"MBDC0381",647,"ncRNAdb: Noncoding RNAs database","http://biobases.ibch.poznan.pl/ncRNA/","yes","not_applicable","unknown","not_applicable",2001,100,"yes",1999,5,285,"update"
"MBDC0381",846,"ncRNAdb: Noncoding RNAs database","http://biobases.ibch.poznan.pl/ncRNA/","yes","not_applicable","unknown","not_applicable",2003,39,"yes",1999,5,285,"update"
"MBDC0381",510,"ncRNAdb: Noncoding RNAs database","http://www.man.poznan.pl/5SData/ncRNA/index.html","yes","not_applicable","unknown","not_applicable",2000,66,"yes",1999,5,285,"update"
"MBDC0382",1125,"Rfam","http://www.sanger.ac.uk/Software/Rfam/","yes","not_applicable","2017","not_applicable",2005,740,"yes",2003,6,2519,"update"
"MBDC0382",2162,"Rfam","http://rfam.sanger.ac.uk","no","discontinued notice","not_applicable","not_applicable",2011,257,"yes",2003,6,2519,"update"
"MBDC0382",2804,"Rfam","http://rfam.xfam.org","yes","not_applicable","2017","not_applicable",2015,96,"yes",2003,6,2519,"update"
"MBDC0382",1842,"Rfam","http://rfam.sanger.ac.uk/","no","discontinued notice","not_applicable","not_applicable",2009,444,"yes",2003,6,2519,"update"
"MBDC0382",862,"Rfam","http://www.sanger.ac.uk/Software/Rfam/","yes","not_applicable","2017","not_applicable",2003,653,"yes",2003,6,2519,"debut"
"MBDC0382",2507,"Rfam","http://rfam.sanger.ac.uk","no","discontinued notice","not_applicable","not_applicable",2013,329,"yes",2003,6,2519,"update"
"MBDC0383",864,"SubViral RNA","http://penelope.med.usherb.ca/subviral","no","can't be reached","not_applicable","not_applicable",2003,23,"no",2003,1,23,"debut"
"MBDC0384",827,"CADB: Confrontation Angles Database","http://144.16.71.148/cadb/","no","can't be reached","not_applicable","not_applicable",2003,10,"no",2003,1,10,"debut"
"MBDC0386",813,"DSMM: Database of Simulated Molecular Motions","http://projects.villa-bosch.de/mcm/database/dsmm","yes","not_applicable","unknown","Service Status; This database is for reference only and no longer maintained.",2003,9,"yes",2003,1,9,"debut"
"MBDC0389",1818,"EMBL-EBI GOA: Gene Ontology Annotation Database","http://www.ebi.ac.uk/goa","yes","not_applicable","2016","not_applicable",2009,355,"yes",2004,3,954,"update"
"MBDC0389",2798,"EMBL-EBI GOA: Gene Ontology Annotation Database","http://www.ebi.ac.uk/GOA","yes","not_applicable","2016","not_applicable",2015,55,"yes",2004,3,954,"update"
"MBDC0389",963,"EMBL-EBI GOA: Gene Ontology Annotation Database","http://www.ebi.ac.uk/GOA","yes","not_applicable","2016","not_applicable",2004,544,"yes",2004,3,954,"debut"
"MBDC0390",833,"ProbeBase","http://www.probebase.net","yes","not_applicable","unknown","not_applicable",2003,313,"yes",2003,3,637,"debut"
"MBDC0390",3040,"ProbeBase","http://www.probebase.net","yes","not_applicable","unknown","not_applicable",2016,4,"yes",2003,3,637,"update"
"MBDC0390",1371,"ProbeBase","http://www.microbial-ecology.net/probebase","yes","not_applicable","unknown","not_applicable",2007,320,"yes",2003,3,637,"update"
"MBDC0391",3037,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/refseq/","yes","not_applicable","2017","not_applicable",2016,17,"yes",2003,9,3655,"update"
"MBDC0391",2802,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/genome","yes","not_applicable","2017","not_applicable",2015,26,"yes",2003,9,3655,"update"
"MBDC0391",1386,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/RefSeq/","yes","not_applicable","2017","not_applicable",2007,1237,"yes",2003,9,3655,"update"
"MBDC0391",2728,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/refseq/","yes","not_applicable","2017","not_applicable",2014,312,"yes",2003,9,3655,"update"
"MBDC0391",1111,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/RefSeq/","yes","not_applicable","2017","not_applicable",2005,799,"yes",2003,9,3655,"update"
"MBDC0391",899,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nih.gov/RefSeq/","yes","not_applicable","2017","not_applicable",2003,136,"yes",2003,9,3655,"debut"
"MBDC0391",2276,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/RefSeq/","yes","not_applicable","2017","not_applicable",2012,539,"yes",2003,9,3655,"update"
"MBDC0391",1878,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/RefSeq/","yes","not_applicable","2017","not_applicable",2009,492,"yes",2003,9,3655,"update"
"MBDC0391",2757,"NCBI Reference Sequences: RefSeq","http://www.ncbi.nlm.nih.gov/genome","yes","not_applicable","unknown","not_applicable",2014,97,"yes",2003,9,3655,"update"
"MBDC0392",1665,"PharmGKB","www.pharmgkb.org","yes","not_applicable","unknown","not_applicable",2008,51,"yes",2002,2,220,"update"
"MBDC0392",760,"PharmGKB","http://www.pharmgkb.org/","yes","not_applicable","unknown","not_applicable",2002,169,"yes",2002,2,220,"debut"
"MBDC0395",974,"STCDB: Signal Transduction Classification Database","http://www.techfak.uni-bielefeld.de/~mchen/STCDB","no","not found","not_applicable","not_applicable",2004,5,"no",2004,1,5,"debut"
"MBDC0396",754,"euGenes","http://iubio.bio.indiana.edu/eugenes/","yes","not_applicable","2012","not_applicable",2002,36,"yes",2002,1,36,"debut"
"MBDC0399",2125,"VKCDB: Voltage-gated K+ Channel DataBase","http://vkcdb.biology.ualberta.ca","yes","not_applicable","unknown","not_applicable",2011,10,"yes",2011,1,10,"debut"
"MBDC0403",937,"ACLAME: A CLAssification of Mobile genetic Elements","http://aclame.ulb.ac.be","yes","not_applicable","2009","not_applicable",2004,102,"yes",2004,2,180,"debut"
"MBDC0403",1972,"ACLAME: A CLAssification of Mobile genetic Elements","http://aclame.ulb.ac.be","yes","not_applicable","2013","not_applicable",2010,78,"yes",2004,2,180,"update"
"MBDC0408",3025,"APD: Antimicrobial Peptide Database","http://aps.unmc.edu/AP/","yes","not_applicable","2016","not_applicable",2016,12,"yes",2004,3,861,"update"
"MBDC0408",970,"APD: Antimicrobial Peptide Database","http://aps.unmc.edu/AP/main.html","yes","not_applicable","2016","not_applicable",2004,369,"yes",2004,3,861,"debut"
"MBDC0408",1870,"APD: Antimicrobial Peptide Database","http://aps.unmc.edu/AP/main.html","yes","not_applicable","2016","not_applicable",2009,480,"yes",2004,3,861,"update"
"MBDC0409",1029,"ApiEST-DB","http://www.cbil.upenn.edu/paradbsservlet/","no","related generic reseach institution site redirect","not_applicable","not_applicable",2004,24,"no",2004,1,24,"debut"
"MBDC0410",965,"AppaDB","http://appadb.eb.tuebingen.mpg.de","no","related generic reseach institution site redirect","not_applicable","not_applicable",2004,4,"no",2004,1,4,"debut"
"MBDC0411",951,"Aptamer database","http://aptamer.icmb.utexas.edu","no","can't be reached","not_applicable","not_applicable",2004,129,"no",2004,1,129,"debut"
"MBDC0413",2753,"ArchDB","http://sbi.imim.es/archdb","yes","not_applicable","2014","not_applicable",2014,12,"yes",2004,2,66,"update"
"MBDC0413",927,"ArchDB","http://sbi.imim.es/archdb","yes","not_applicable","2014","not_applicable",2004,54,"yes",2004,2,66,"debut"
"MBDC0415",1208,"ASAP: A Systematic Annotation Package","https://asap.ahabs.wisc.edu/asap/logon.php","yes","not_applicable","unknown","not_applicable",2006,45,"yes",2003,2,165,"update"
"MBDC0415",884,"ASAP: A Systematic Annotation Package","https://asap.ahabs.wisc.edu/annotation/php/ASAP1.htm","no","not found","not_applicable","not_applicable",2003,120,"yes",2003,2,165,"debut"
"MBDC0418",979,"BGI-RIS: Beijing Genomics Institute Rice Information System","http://rise.genomics.org.cn/","yes","not_applicable","2010","not_applicable",2004,79,"yes",2004,1,79,"debut"
"MBDC0420",3062,"BioCyc","BioCyc.org","yes","not_applicable","2016","not_applicable",2016,5,"yes",2008,5,619,"update"
"MBDC0420",1530,"BioCyc","BioCyc.org","yes","not_applicable","2016","Funding; Service Status; BioCyc... effort requires large financial resources that -- despite numerous attempts over numerous years -- have not been forthcoming from government funding agencies. Thus, we plan to transition BioCyc to a community-supported non-profit subscription model in the coming months.",2008,184,"yes",2008,5,619,"debut"
"MBDC0420",1954,"BioCyc","BioCyc.org","yes","not_applicable","2016","not_applicable",2010,155,"yes",2008,5,619,"update"
"MBDC0420",2656,"BioCyc","BioCyc.org","yes","not_applicable","2016","not_applicable",2014,127,"yes",2008,5,619,"update"
"MBDC0420",2369,"BioCyc","BioCyc.org","yes","not_applicable","2016","not_applicable",2012,148,"yes",2008,5,619,"update"
"MBDC0421",2066,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda-enzymes.org","yes","not_applicable","2016","not_applicable",2011,249,"yes",2002,7,1407,"update"
"MBDC0421",770,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda.uni-koeln.de","yes","not_applicable","2016","not_applicable",2002,231,"yes",2002,7,1407,"debut"
"MBDC0421",2441,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda-enzymes.org","yes","not_applicable","2016","not_applicable",2013,189,"yes",2002,7,1407,"update"
"MBDC0421",2854,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda-enzymes.org","yes","not_applicable","2016","not_applicable",2015,39,"yes",2002,7,1407,"update"
"MBDC0421",924,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda.uni-koeln.de","yes","not_applicable","2016","not_applicable",2004,341,"yes",2002,7,1407,"update"
"MBDC0421",1877,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda-enzymes.org","yes","not_applicable","2016","DB Content; also AMENDA; FRENDA but counting only Brenda with single URL",2009,252,"yes",2002,7,1407,"update"
"MBDC0421",1488,"BRENDA: BRaunschweig ENzyme Database","http://www.brenda.uni-koeln.de","yes","not_applicable","2016","DB Content; also AMENDA; FRENDA but counting only Brenda with single URL",2007,106,"yes",2002,7,1407,"update"
"MBDC0425",2295,"CADRE: Central Aspergillus Data Repository","http://www.cadre-genomes.org.uk","yes","not_applicable","2011","not_applicable",2012,24,"yes",2004,2,76,"update"
"MBDC0425",1042,"CADRE: Central Aspergillus Data Repository","http://www.cadre.man.ac.uk","no","can't be reached","not_applicable","not_applicable",2004,52,"yes",2004,2,76,"debut"
"MBDC0427",888,"CATMA: Complete Arabidopsis Transcriptome MicroArray","http://www.catma.org/","yes","not_applicable","unknown","Disambiguation; related but different from CATdb: Complete Arabidopsis Transcriptome Database",2003,121,"yes",2003,1,121,"debut"
"MBDC0428",980,"CCDB: CyberCell Database","http://redpoll.pharmacy.ualberta-ca/CCDB","no","can't be reached","not_applicable","not_applicable",2004,131,"no",2004,1,131,"debut"
"MBDC0431",1116,"CGED: Cancer Gene Expression Database","http://cged.hgc.jp","no","can't be reached","not_applicable","not_applicable",2005,29,"no",2005,1,29,"debut"
"MBDC0432",1021,"CleanEx","http://www.cleanex.isb-sib.ch/","no","can't be reached","not_applicable","not_applicable",2004,26,"no",2004,2,33,"debut"
"MBDC0432",1871,"CleanEx","http://www.cleanex.isb-sib.ch","no","can't be reached","not_applicable","not_applicable",2009,7,"no",2004,2,33,"update"
"MBDC0434",895,"CnidBase","http://cnidbase.bu.edu/","no","can't be reached","not_applicable","not_applicable",2003,13,"no",2003,1,13,"debut"
"MBDC0436",950,"coliBASE","http://colibase.bham.ac.uk","no","can't be reached","not_applicable","not_applicable",2004,52,"no",2004,1,52,"debut"
"MBDC0439",1257,"CryptoDB: Cryptosporidium Genomics Resource","http://CryptoDB.org","yes","not_applicable","2016","not_applicable",2006,70,"yes",2004,2,108,"update"
"MBDC0439",910,"CryptoDB: Cryptosporidium Genomics Resource","http://CryptoDB.org","yes","not_applicable","2016","not_applicable",2004,38,"yes",2004,2,108,"debut"
"MBDC0440",975,"EMBL-EBI CSA: Catalytic Site Atlas","http://www.ebi.ac.uk/thornton-srv/databases/CSA","yes","not_applicable","2013","not_applicable",2004,444,"yes",2004,2,494,"debut"
"MBDC0440",2612,"EMBL-EBI CSA: Catalytic Site Atlas","http://www.ebi.ac.uk/thornton-srv/databases/CSA","yes","not_applicable","unknown","not_applicable",2014,50,"yes",2004,2,494,"update"
"MBDC0441",1123,"CYGD: Comprehensive Yeast Genome Database","http://mips.gsf.de/genre/proj/yeast/","no","not found","not_applicable","not_applicable",2005,217,"no",2005,1,217,"debut"
"MBDC0442",571,"EMBL-EBI Dali","http://www.ebi.ac.uk/dali/domain","yes","not_applicable","unknown","Access - Transfer/Redirect; redirected to EBI PDBeFold",2001,120,"yes",1997,4,1184,"update"
"MBDC0442",186,"EMBL-EBI Dali","http://www.embl-heidelberg.de/dali/fssp/","no","not found","not_applicable","not_applicable",1997,334,"yes",1997,4,1184,"debut"
"MBDC0442",245,"EMBL-EBI Dali","www.embl-ebi.ac.uk/dali","yes","not_applicable","unknown","Access - Transfer/Redirect; redirected to EBI PDBeFold",1998,563,"yes",1997,4,1184,"update"
"MBDC0442",419,"EMBL-EBI Dali","http://www.embl-ebi.ac.uk/dali/","yes","not_applicable","unknown","Access - Transfer/Redirect; redirected to EBI PDBeFold",1999,167,"yes",1997,4,1184,"update"
"MBDC0444",1017,"DBSubLoc: Database of protein subcellular localization","http://www.bioinfo.tsinghua.edu.cn/dbsubloc.html","no","can't be reached","not_applicable","not_applicable",2004,41,"no",2004,1,41,"debut"
"MBDC0445",2604,"DEG: Database of Essential Genes","http://tubic.tju.edu.cn/deg/","yes","not_applicable","2016","not_applicable",2014,81,"yes",2004,3,489,"update"
"MBDC0445",996,"DEG: Database of Essential Genes","http://tubic.tju.edu.cn/deg/","yes","not_applicable","2016","not_applicable",2004,178,"yes",2004,3,489,"debut"
"MBDC0445",1794,"DEG: Database of Essential Genes","http://tubic.tju.edu.cn/deg","yes","not_applicable","2016","Other; alt good http://www.essentialgene.org",2009,230,"yes",2004,3,489,"update"
"MBDC0446",1750,"dictyBase","http://dictybase.org","yes","not_applicable","2016","not_applicable",2009,41,"yes",2002,6,235,"update"
"MBDC0446",2085,"dictyBase","http://dictybase.org","yes","not_applicable","2016","not_applicable",2011,26,"yes",2002,6,235,"update"
"MBDC0446",1292,"dictyBase","http://dictybase.org","yes","not_applicable","2016","not_applicable",2006,71,"yes",2002,6,235,"update"
"MBDC0446",976,"dictyBase","http://dictybase.org","yes","not_applicable","2016","not_applicable",2004,48,"yes",2002,6,235,"update"
"MBDC0446",755,"dictyBase","http://dictybase.org/","yes","not_applicable","2017","not_applicable",2002,14,"yes",2002,6,235,"debut"
"MBDC0446",2539,"dictyBase","http://dictybase.org","yes","not_applicable","2016","not_applicable",2013,35,"yes",2002,6,235,"update"
"MBDC0447",1412,"DisProt: Database of Protein Disorder ","http://www.disprot.org","yes","not_applicable","2016","not_applicable",2007,473,"yes",2007,1,473,"debut"
"MBDC0448",1010,"Domlns: DOMain INSertion","http://stash.mrc-lmb.cam.ac.uk/Domlns","no","can't be reached","not_applicable","not_applicable",2004,13,"no",2004,1,13,"debut"
"MBDC0456",3059,"PDBe: Protein Data Bank in Europe","http://pdbe.org","yes","not_applicable","2017","not_applicable",2016,6,"yes",2010,5,211,"update"
"MBDC0456",2120,"PDBe: Protein Data Bank in Europe","pdbe.org","yes","not_applicable","2017","not_applicable",2011,29,"yes",2010,5,211,"update"
"MBDC0456",2666,"PDBe: Protein Data Bank in Europe","pdbe.org","yes","not_applicable","2017","not_applicable",2014,63,"yes",2010,5,211,"update"
"MBDC0456",1922,"PDBe: Protein Data Bank in Europe","http://www.ebi.ac.uk/pdbe","yes","not_applicable","2017","not_applicable",2010,58,"yes",2010,5,211,"debut"
"MBDC0456",2255,"PDBe: Protein Data Bank in Europe","pdbe.org","yes","not_applicable","2017","not_applicable",2012,55,"yes",2010,5,211,"update"
"MBDC0460",1036,"ERGDB: Estrogen Responsive Genes Database","http://sdmc.i2r.a-star.edu.sg/ergdb/cgi-bin/explore.pl","no","can't be reached","not_applicable","not_applicable",2004,63,"no",2004,1,63,"debut"
"MBDC0461",815,"ERGO","http://ergo.integratedgenomics.com/ERGO/","yes","not_applicable","2014","Access - Other; ERGO is provided only under subscription",2003,171,"yes",2003,1,171,"debut"
"MBDC0463",420,"European Ribosomal RNA Database","http://rrna.uia.ac.be/","no","can't be reached","not_applicable","Naming; large ribosomal subunit RNA database (De Wachter)",1999,64,"yes",1991,17,2134,"update"
"MBDC0463",28,"European Ribosomal RNA Database","Physical; Server","not_www","not_applicable","not_applicable","Naming; Charming; Honest; small ribosomal subunit RNA (De Wachter); Due to the increasing volume of the database, copying it onto diskettes is getting cumbersome.",1992,109,"yes",1991,17,2134,"update"
"MBDC0463",320,"European Ribosomal RNA Database","http://rrna.uia.ac.be/ssu/","no","can't be reached","not_applicable","not_applicable",1998,99,"yes",1991,17,2134,"update"
"MBDC0463",315,"European Ribosomal RNA Database","http://rrna.uia.ac.be/","yes","not_applicable","unknown","Naming; large ribosomal subunit RNA database (De Wachter)",1998,43,"yes",1991,17,2134,"update"
"MBDC0463",618,"European Ribosomal RNA Database","http://rrna.uia.ac.be/lsu/","no","can't be reached","not_applicable","not_applicable",2001,142,"yes",1991,17,2134,"update"
"MBDC0463",223,"European Ribosomal RNA Database","http://rma.uia.ac.be/ssu/","no","can't be reached","not_applicable","Naming; small ribosomal subunit RNA (De Wachter) ",1997,123,"yes",1991,17,2134,"update"
"MBDC0463",440,"European Ribosomal RNA Database","http://rrna.uia.ac.be/ssu/","no","can't be reached","not_applicable","Naming; small ribosomal subunit RNA (De Wachter) ",1999,77,"yes",1991,17,2134,"update"
"MBDC0463",455,"European Ribosomal RNA Database","http://rrna.uia.ac.be/ssu/","no","can't be reached","not_applicable","not_applicable",2000,173,"yes",1991,17,2134,"update"
"MBDC0463",93,"European Ribosomal RNA Database","Server","not_www","not_applicable","not_applicable","Naming; small ribosomal subunit RNA (De Wachter); Users of the database are requested to cite this paper.",1994,155,"yes",1991,17,2134,"update"
"MBDC0463",710,"European Ribosomal RNA Database","http://rrna.uia.ac.be/ssu/","no","can't be reached","not_applicable","not_applicable",2002,202,"yes",1991,17,2134,"update"
"MBDC0463",49,"European Ribosomal RNA Database","Physical; Server","not_www","not_applicable","not_applicable","Naming; small ribosomal subunit RNA (De Wachter) ",1993,362,"yes",1991,17,2134,"update"
"MBDC0463",215,"European Ribosomal RNA Database","http://rrna.uia.ac.be/","no","can't be reached","not_applicable","Naming; large ribosomal subunit RNA database (De Wachter)",1997,28,"yes",1991,17,2134,"update"
"MBDC0463",88,"European Ribosomal RNA Database","Server","not_www","not_applicable","not_applicable","Naming; large ribosomal subunit RNA database (De Wachter)",1994,80,"yes",1991,17,2134,"update"
"MBDC0463",907,"European Ribosomal RNA Database","http://www.psb.ugent.be/rRNA/","yes","not_applicable","2007","Provenance; excellent history - contains large and small and also update information",2004,210,"yes",1991,17,2134,"update"
"MBDC0463",464,"European Ribosomal RNA Database","http://rrna.uia.ac.be/lsu/","no","can't be reached","not_applicable","not_applicable",2000,54,"yes",1991,17,2134,"update"
"MBDC0463",129,"European Ribosomal RNA Database","http://rrna.uia.ac.be/rrna/lsuform.html","no","can't be reached","not_applicable","Naming; large ribosomal subunit RNA database (De Wachter)",1996,33,"yes",1991,17,2134,"update"
"MBDC0463",11,"European Ribosomal RNA Database","Physical; Server","not_www","not_applicable","not_applicable","Naming; small ribosomal subunit RNA (De Wachter) ",1991,180,"yes",1991,17,2134,"debut"
"MBDC0464",1024,"EyeSite","http://eyesite.cryst.bbk.ac.uk/","yes","not_applicable","unknown","not_applicable",2004,4,"yes",2004,1,4,"debut"
"MBDC0465",2188,"FANTOM DB","http://fantom.gsc.riken.jp/4/","yes","not_applicable","2010","not_applicable",2011,28,"yes",2002,2,68,"update"
"MBDC0465",674,"FANTOM DB","http://fantom.gsc.riken.go.jp/db/","yes","not_applicable","unknown","not_applicable",2002,40,"yes",2002,2,68,"debut"
"MBDC0467",957,"Flytrap","http://flytrap.med.yale.edu","no","discontinued notice","not_applicable","Service Status; Provenance; Access - Transfer/Redirect; The original FlyTrap web database has retired after long service. All internet traffic to the original FlyTrap database now directs here. Below you will find information about the Project and lists of the FlyTrap stocks that are still available from stock centers. If you need more information about the lines or specific FlyTrap images, please contact the Cooley lab with your questions: [email protected] ",2004,85,"no",2004,1,85,"debut"
"MBDC0472",3065,"Gene3D","http://gene3d.biochem.ucl.ac.uk","yes","not_applicable","2016","not_applicable",2016,0,"yes",2003,8,280,"update"
"MBDC0472",2269,"Gene3D","http://gene3d.biochem.ucl.ac.uk","yes","not_applicable","2016","not_applicable",2012,37,"yes",2003,8,280,"update"
"MBDC0472",1130,"Gene3D","http://www.biochem.ucl.ac.uk/bsm/cath/Gene3D/","no","not found","not_applicable","not_applicable",2005,69,"yes",2003,8,280,"update"
"MBDC0472",865,"Gene3D","http://www.biochem.ucl.ac.uk/bsm/cath_new/Gene3D/","yes","not_applicable","2016","not_applicable",2003,23,"yes",2003,8,280,"debut"
"MBDC0472",1920,"Gene3D","http://gene3d.biochem.ucl.ac.uk/","yes","not_applicable","2016","not_applicable",2010,36,"yes",2003,8,280,"update"