-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtigrfams.sql
More file actions
4500 lines (4498 loc) · 408 KB
/
tigrfams.sql
File metadata and controls
4500 lines (4498 loc) · 408 KB
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
CREATE TABLE antismash.tigrfams (
tigrfam_id text PRIMARY KEY,
name text NOT NULL,
description text NOT NULL,
trusted_cutoff float8
);
COMMENT ON TABLE antismash.tigrfams IS
'tigrfam domain metadata.';
INSERT INTO antismash.tigrfams (tigrfam_id, name, description, trusted_cutoff)
VALUES
('TIGR00001', 'TIGR00001', 'rpmI_bact: ribosomal protein bL35', 51.20),
('TIGR00002', 'TIGR00002', 'S16: ribosomal protein bS16', 45.30),
('TIGR00003', 'TIGR00003', 'TIGR00003: copper ion binding protein', 62.00),
('TIGR00004', 'TIGR00004', 'TIGR00004: reactive intermediate/imine deaminase', 106.25),
('TIGR00005', 'TIGR00005', 'rluA_subfam: pseudouridine synthase, RluA family', 192.70),
('TIGR00006', 'TIGR00006', 'TIGR00006: 16S rRNA (cytosine(1402)-N(4))-methyltransferase', 154.30),
('TIGR00007', 'TIGR00007', 'TIGR00007: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase', 228.95),
('TIGR00008', 'TIGR00008', 'infA: translation initiation factor IF-1', 61.15),
('TIGR00009', 'TIGR00009', 'L28: ribosomal protein bL28', 48.30),
('TIGR00010', 'TIGR00010', 'TIGR00010: hydrolase, TatD family', 206.00),
('TIGR00011', 'TIGR00011', 'YbaK_EbsC: Cys-tRNA(Pro) deacylase', 153.25),
('TIGR00012', 'TIGR00012', 'L29: ribosomal protein uL29', 22.60),
('TIGR00013', 'TIGR00013', 'taut: 4-oxalocrotonate tautomerase family enzyme', 56.90),
('TIGR00014', 'TIGR00014', 'arsC: arsenate reductase (glutaredoxin)', 106.05),
('TIGR00016', 'TIGR00016', 'ackA: acetate kinase', 293.40),
('TIGR00017', 'TIGR00017', 'cmk: cytidylate kinase', 135.55),
('TIGR00018', 'TIGR00018', 'panC: pantoate--beta-alanine ligase', 212.75),
('TIGR00019', 'TIGR00019', 'prfA: peptide chain release factor 1', 423.25),
('TIGR00020', 'TIGR00020', 'prfB: peptide chain release factor 2', 383.15),
('TIGR00021', 'TIGR00021', 'rpiA: ribose 5-phosphate isomerase A', 126.40),
('TIGR00022', 'TIGR00022', 'TIGR00022: YhcH/YjgK/YiaL family protein', 45.50),
('TIGR00023', 'TIGR00023', 'TIGR00023: acyl-phosphate glycerol 3-phosphate acyltransferase', 137.20),
('TIGR00024', 'TIGR00024', 'SbcD_rel_arch: putative phosphoesterase', 115.20),
('TIGR00025', 'TIGR00025', 'Mtu_efflux: ABC transporter efflux protein, DrrB family', 146.90),
('TIGR00026', 'TIGR00026', 'hi_GC_TIGR00026: deazaflavin-dependent oxidoreductase, nitroreductase family', 46.35),
('TIGR00027', 'TIGR00027', 'mthyl_TIGR00027: methyltransferase, TIGR00027 family', 93.55),
('TIGR00028', 'TIGR00028', 'Mtu_PIN_fam: toxin-antitoxin system PIN domain toxin', 73.60),
('TIGR00029', 'TIGR00029', 'S20: ribosomal protein bS20', 52.90),
('TIGR00030', 'TIGR00030', 'S21p: ribosomal protein bS21', 28.95),
('TIGR00031', 'TIGR00031', 'UDP-GALP_mutase: UDP-galactopyranose mutase', 303.75),
('TIGR00032', 'TIGR00032', 'argG: argininosuccinate synthase', 268.20),
('TIGR00033', 'TIGR00033', 'aroC: chorismate synthase', 212.20),
('TIGR00034', 'TIGR00034', 'aroFGH: 3-deoxy-7-phosphoheptulonate synthase', 173.20),
('TIGR00035', 'TIGR00035', 'asp_race: aspartate racemase', 93.10),
('TIGR00036', 'TIGR00036', 'dapB: 4-hydroxy-tetrahydrodipicolinate reductase', 122.00),
('TIGR00037', 'TIGR00037', 'eIF_5A: translation elongation factor IF5A', 75.45),
('TIGR00038', 'TIGR00038', 'efp: translation elongation factor P', 185.80),
('TIGR00039', 'TIGR00039', '6PTHBS: 6-pyruvoyl tetrahydropterin synthase/QueD family protein', 125.50),
('TIGR00040', 'TIGR00040', 'yfcE: phosphodiesterase, MJ0936 family', 56.25),
('TIGR00041', 'TIGR00041', 'DTMP_kinase: dTMP kinase', 83.25),
('TIGR00042', 'TIGR00042', 'TIGR00042: non-canonical purine NTP pyrophosphatase, RdgB/HAM1 family', 145.35),
('TIGR00043', 'TIGR00043', 'TIGR00043: rRNA maturation RNase YbeY', 42.05),
('TIGR00044', 'TIGR00044', 'TIGR00044: pyridoxal phosphate enzyme, YggS family', 106.25),
('TIGR00045', 'TIGR00045', 'TIGR00045: glycerate kinase', 168.45),
('TIGR00046', 'TIGR00046', 'TIGR00046: RNA methyltransferase, RsmE family', 41.00),
('TIGR00048', 'TIGR00048', 'rRNA_mod_RlmN: 23S rRNA (adenine(2503)-C(2))-methyltransferase', 290.00),
('TIGR00049', 'TIGR00049', 'TIGR00049: iron-sulfur cluster assembly accessory protein', 58.80),
('TIGR00050', 'TIGR00050', 'rRNA_methyl_1: RNA methyltransferase, TrmH family, group 1', 167.15),
('TIGR00051', 'TIGR00051', 'TIGR00051: acyl-CoA thioester hydrolase, YbgC/YbaW family', 68.70),
('TIGR00052', 'TIGR00052', 'TIGR00052: nudix-type nucleoside diphosphatase, YffH/AdpP family', 79.55),
('TIGR00053', 'TIGR00053', 'TIGR00053: addiction module toxin component, YafQ family', 87.25),
('TIGR00054', 'TIGR00054', 'TIGR00054: RIP metalloprotease RseP', 147.55),
('TIGR00055', 'TIGR00055', 'uppS: di-trans,poly-cis-decaprenylcistransferase', 109.55),
('TIGR00056', 'TIGR00056', 'TIGR00056: ABC transport permease subunit', 212.20),
('TIGR00057', 'TIGR00057', 'TIGR00057: tRNA threonylcarbamoyl adenosine modification protein, Sua5/YciO/YrdC/YwlC family', 123.20),
('TIGR00058', 'TIGR00058', 'Hemerythrin: hemerythrin family non-heme iron protein', 131.85),
('TIGR00059', 'TIGR00059', 'L17: ribosomal protein bL17', 70.05),
('TIGR00060', 'TIGR00060', 'L18_bact: ribosomal protein uL18', 87.85),
('TIGR00061', 'TIGR00061', 'L21: ribosomal protein bL21', 43.70),
('TIGR00062', 'TIGR00062', 'L27: ribosomal protein bL27', 90.35),
('TIGR00063', 'TIGR00063', 'folE: GTP cyclohydrolase I', 181.60),
('TIGR00064', 'TIGR00064', 'ftsY: signal recognition particle-docking protein FtsY', 260.70),
('TIGR00065', 'TIGR00065', 'ftsZ: cell division protein FtsZ', 295.20),
('TIGR00066', 'TIGR00066', 'g_glut_trans: gamma-glutamyltransferase', 357.85),
('TIGR00067', 'TIGR00067', 'glut_race: glutamate racemase', 146.65),
('TIGR00068', 'TIGR00068', 'glyox_I: lactoylglutathione lyase', 122.45),
('TIGR00069', 'TIGR00069', 'hisD: histidinol dehydrogenase', 243.80),
('TIGR00070', 'TIGR00070', 'hisG: ATP phosphoribosyltransferase', 75.75),
('TIGR00071', 'TIGR00071', 'hisT_truA: tRNA pseudouridine(38-40) synthase', 142.85),
('TIGR00072', 'TIGR00072', 'hydrog_prot: hydrogenase maturation protease', 47.45),
('TIGR00073', 'TIGR00073', 'hypB: hydrogenase accessory protein HypB', 121.20),
('TIGR00074', 'TIGR00074', 'hypC_hupF: hydrogenase assembly chaperone HypC/HupF', 48.00),
('TIGR00075', 'TIGR00075', 'hypD: hydrogenase expression/formation protein HypD', 192.80),
('TIGR00077', 'TIGR00077', 'lspA: signal peptidase II', 73.95),
('TIGR00078', 'TIGR00078', 'nadC: nicotinate-nucleotide diphosphorylase (carboxylating)', 198.40),
('TIGR00079', 'TIGR00079', 'pept_deformyl: peptide deformylase', 103.95),
('TIGR00080', 'TIGR00080', 'pimt: protein-L-isoaspartate O-methyltransferase', 159.05),
('TIGR00081', 'TIGR00081', 'purC: phosphoribosylaminoimidazolesuccinocarboxamide synthase', 189.90),
('TIGR00082', 'TIGR00082', 'rbfA: ribosome-binding factor A', 51.15),
('TIGR00083', 'TIGR00083', 'ribF: riboflavin biosynthesis protein RibF', 184.35),
('TIGR00084', 'TIGR00084', 'ruvA: Holliday junction DNA helicase RuvA', 116.45),
('TIGR00086', 'TIGR00086', 'smpB: SsrA-binding protein', 119.10),
('TIGR00087', 'TIGR00087', 'surE: 5''/3''-nucleotidase SurE', 135.10),
('TIGR00088', 'TIGR00088', 'trmD: tRNA (guanine(37)-N(1))-methyltransferase', 195.00),
('TIGR00089', 'TIGR00089', 'TIGR00089: radical SAM methylthiotransferase, MiaB/RimO family', 251.00),
('TIGR00090', 'TIGR00090', 'rsfS_iojap_ybeB: ribosome silencing factor', 56.90),
('TIGR00091', 'TIGR00091', 'TIGR00091: tRNA (guanine-N(7)-)-methyltransferase', 112.65),
('TIGR00092', 'TIGR00092', 'TIGR00092: GTP-binding protein YchF', 279.20),
('TIGR00093', 'TIGR00093', 'TIGR00093: pseudouridine synthase', 109.30),
('TIGR00094', 'TIGR00094', 'tRNA_TruD_broad: tRNA pseudouridine synthase, TruD family', 172.20),
('TIGR00095', 'TIGR00095', 'TIGR00095: 16S rRNA (guanine(966)-N(2))-methyltransferase RsmD', 117.50),
('TIGR00096', 'TIGR00096', 'TIGR00096: 16S rRNA (cytidine(1402)-2''-O)-methyltransferase', 167.90),
('TIGR00097', 'TIGR00097', 'HMP-P_kinase: hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase', 204.95),
('TIGR00099', 'TIGR00099', 'Cof-subfamily: Cof-like hydrolase', 137.00),
('TIGR00100', 'TIGR00100', 'hypA: hydrogenase nickel insertion protein HypA', 88.10),
('TIGR00101', 'TIGR00101', 'ureG: urease accessory protein UreG', 204.20),
('TIGR00103', 'TIGR00103', 'DNA_YbaB_EbfC: DNA-binding protein, YbaB/EbfC family', 49.45),
('TIGR00104', 'TIGR00104', 'tRNA_TsaA: tRNA-Thr(GGU) m(6)t(6)A37 methyltransferase TsaA', 93.25),
('TIGR00105', 'TIGR00105', 'L31: ribosomal protein bL31', 38.35),
('TIGR00106', 'TIGR00106', 'TIGR00106: uncharacterized protein, MTH1187 family', 54.70),
('TIGR00107', 'TIGR00107', 'deoD: purine nucleoside phosphorylase', 232.25),
('TIGR00109', 'TIGR00109', 'hemH: ferrochelatase', 124.60),
('TIGR00110', 'TIGR00110', 'ilvD: dihydroxy-acid dehydratase', 618.15),
('TIGR00111', 'TIGR00111', 'pelota: mRNA surveillance protein pelota', 177.65),
('TIGR00112', 'TIGR00112', 'proC: pyrroline-5-carboxylate reductase', 196.75),
('TIGR00113', 'TIGR00113', 'queA: S-adenosylmethionine:tRNA ribosyltransferase-isomerase', 267.45),
('TIGR00114', 'TIGR00114', 'lumazine-synth: 6,7-dimethyl-8-ribityllumazine synthase', 84.60),
('TIGR00115', 'TIGR00115', 'tig: trigger factor', 180.20),
('TIGR00116', 'TIGR00116', 'tsf: translation elongation factor Ts', 104.05),
('TIGR00117', 'TIGR00117', 'acnB: aconitate hydratase 2', 1287.20),
('TIGR00118', 'TIGR00118', 'acolac_lg: acetolactate synthase, large subunit, biosynthetic type', 538.35),
('TIGR00119', 'TIGR00119', 'acolac_sm: acetolactate synthase, small subunit', 56.90),
('TIGR00120', 'TIGR00120', 'ArgJ: glutamate N-acetyltransferase/amino-acid acetyltransferase', 298.00),
('TIGR00121', 'TIGR00121', 'birA_ligase: biotin--[acetyl-CoA-carboxylase] ligase', 83.10),
('TIGR00122', 'TIGR00122', 'birA_repr_reg: biotin operon repressor', 70.00),
('TIGR00123', 'TIGR00123', 'cbiM: cobalamin biosynthesis protein CbiM', 184.15),
('TIGR00124', 'TIGR00124', 'cit_ly_ligase: [citrate (pro-3S)-lyase] ligase', 262.10),
('TIGR00125', 'TIGR00125', 'cyt_tran_rel: cytidyltransferase-like domain', 27.70),
('TIGR00126', 'TIGR00126', 'deoC: deoxyribose-phosphate aldolase', 117.30),
('TIGR00127', 'TIGR00127', 'nadp_idh_euk: isocitrate dehydrogenase, NADP-dependent', 397.15),
('TIGR00128', 'TIGR00128', 'fabD: malonyl CoA-acyl carrier protein transacylase', 260.90),
('TIGR00129', 'TIGR00129', 'fdhD_narQ: formate dehydrogenase family accessory protein FdhD', 140.90),
('TIGR00130', 'TIGR00130', 'frhD: coenzyme F420-reducing hydrogenase, FrhD protein', 134.95),
('TIGR00131', 'TIGR00131', 'gal_kin: galactokinase', 226.65),
('TIGR00132', 'TIGR00132', 'gatA: aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase, A subunit', 481.10),
('TIGR00133', 'TIGR00133', 'gatB: aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase, B subunit', 314.80),
('TIGR00134', 'TIGR00134', 'gatE_arch: glutamyl-tRNA(Gln) amidotransferase, subunit E', 319.55),
('TIGR00135', 'TIGR00135', 'gatC: aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase, C subunit', 47.10),
('TIGR00136', 'TIGR00136', 'gidA: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA', 524.85),
('TIGR00137', 'TIGR00137', 'gid_trmFO: tRNA:m(5)U-54 methyltransferase', 428.65),
('TIGR00138', 'TIGR00138', 'rsmG_gidB: 16S rRNA (guanine(527)-N(7))-methyltransferase RsmG', 99.50),
('TIGR00139', 'TIGR00139', 'h_aconitase: homoaconitase', 529.90),
('TIGR00140', 'TIGR00140', 'hupD: hydrogenase expression/formation protein', 151.80),
('TIGR00142', 'TIGR00142', 'hycI: hydrogenase maturation peptidase HycI', 119.10),
('TIGR00143', 'TIGR00143', 'hypF: carbamoyltransferase HypF', 466.10),
('TIGR00144', 'TIGR00144', 'beta_RFAP_syn: beta-ribofuranosylaminobenzene 5''-phosphate synthase family', 113.50),
('TIGR00145', 'TIGR00145', 'TIGR00145: FTR1 family protein', 303.80),
('TIGR00147', 'TIGR00147', 'TIGR00147: lipid kinase, YegS/Rv2252/BmrU family', 118.65),
('TIGR00148', 'TIGR00148', 'TIGR00148: decarboxylase, UbiD family', 244.85),
('TIGR00149', 'TIGR00149', 'TIGR00149_YjbQ: secondary thiamine-phosphate synthase enzyme', 67.75),
('TIGR00150', 'TIGR00150', 'T6A_YjeE: tRNA threonylcarbamoyl adenosine modification protein YjeE', 60.10),
('TIGR00151', 'TIGR00151', 'ispF: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase', 116.45),
('TIGR00152', 'TIGR00152', 'TIGR00152: dephospho-CoA kinase', 65.55),
('TIGR00153', 'TIGR00153', 'TIGR00153: TIGR00153 family protein', 104.30),
('TIGR00154', 'TIGR00154', 'ispE: 4-(cytidine 5''-diphospho)-2-C-methyl-D-erythritol kinase', 138.70),
('TIGR00155', 'TIGR00155', 'pqiA_fam: integral membrane protein, PqiA family', 260.35),
('TIGR00156', 'TIGR00156', 'TIGR00156: TIGR00156 family protein', 108.15),
('TIGR00157', 'TIGR00157', 'TIGR00157: ribosome small subunit-dependent GTPase A', 100.00),
('TIGR00158', 'TIGR00158', 'L9: ribosomal protein bL9', 58.60),
('TIGR00159', 'TIGR00159', 'TIGR00159: TIGR00159 family protein', 188.80),
('TIGR00160', 'TIGR00160', 'MGSA: methylglyoxal synthase', 146.90),
('TIGR00161', 'TIGR00161', 'TIGR00161: TIGR00161 family protein', 199.25),
('TIGR00162', 'TIGR00162', 'TIGR00162: TIGR00162 family protein', 200.00),
('TIGR00163', 'TIGR00163', 'PS_decarb: phosphatidylserine decarboxylase', 111.75),
('TIGR00164', 'TIGR00164', 'PS_decarb_rel: phosphatidylserine decarboxylase homolog', 144.75),
('TIGR00165', 'TIGR00165', 'S18: ribosomal protein bS18', 38.75),
('TIGR00166', 'TIGR00166', 'S6: ribosomal protein bS6', 42.90),
('TIGR00167', 'TIGR00167', 'cbbA: ketose-bisphosphate aldolase', 215.60),
('TIGR00168', 'TIGR00168', 'infC: translation initiation factor IF-3', 69.25),
('TIGR00169', 'TIGR00169', 'leuB: 3-isopropylmalate dehydrogenase', 353.20),
('TIGR00170', 'TIGR00170', 'leuC: 3-isopropylmalate dehydratase, large subunit', 560.25),
('TIGR00171', 'TIGR00171', 'leuD: 3-isopropylmalate dehydratase, small subunit', 116.25),
('TIGR00172', 'TIGR00172', 'maf: septum formation protein Maf', 117.15),
('TIGR00173', 'TIGR00173', 'menD: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylic-acid synthase', 244.20),
('TIGR00174', 'TIGR00174', 'miaA: tRNA dimethylallyltransferase', 148.65),
('TIGR00175', 'TIGR00175', 'mito_nad_idh: isocitrate dehydrogenase, NAD-dependent', 432.40),
('TIGR00176', 'TIGR00176', 'mobB: molybdopterin-guanine dinucleotide biosynthesis protein B', 76.20),
('TIGR00177', 'TIGR00177', 'molyb_syn: molybdenum cofactor synthesis domain', 85.35),
('TIGR00178', 'TIGR00178', 'monomer_idh: isocitrate dehydrogenase, NADP-dependent', 950.00),
('TIGR00179', 'TIGR00179', 'murB: UDP-N-acetylenolpyruvoylglucosamine reductase', 144.50),
('TIGR00180', 'TIGR00180', 'parB_part: ParB/RepB/Spo0J family partition protein', 58.45),
('TIGR00181', 'TIGR00181', 'pepF: oligoendopeptidase F', 490.55),
('TIGR00182', 'TIGR00182', 'plsX: fatty acid/phospholipid synthesis protein PlsX', 243.40),
('TIGR00183', 'TIGR00183', 'prok_nadp_idh: isocitrate dehydrogenase, NADP-dependent', 567.30),
('TIGR00184', 'TIGR00184', 'purA: adenylosuccinate synthase', 395.55),
('TIGR00185', 'TIGR00185', 'tRNA_yibK_trmL: tRNA (cytidine(34)-2''-O)-methyltransferase', 190.60),
('TIGR00186', 'TIGR00186', 'rRNA_methyl_3: RNA methyltransferase, TrmH family, group 3', 160.15),
('TIGR00187', 'TIGR00187', 'ribE: riboflavin synthase, alpha subunit', 156.60),
('TIGR00188', 'TIGR00188', 'rnpA: ribonuclease P protein component', 38.35),
('TIGR00189', 'TIGR00189', 'tesB: acyl-CoA thioesterase II', 292.85),
('TIGR00190', 'TIGR00190', 'thiC: phosphomethylpyrimidine synthase', 460.00),
('TIGR00191', 'TIGR00191', 'thrB: homoserine kinase', 168.25),
('TIGR00192', 'TIGR00192', 'urease_beta: urease, beta subunit', 90.30),
('TIGR00193', 'TIGR00193', 'urease_gam: urease, gamma subunit', 82.30),
('TIGR00194', 'TIGR00194', 'uvrC: excinuclease ABC subunit C', 285.45),
('TIGR00195', 'TIGR00195', 'exoDNase_III: exodeoxyribonuclease III', 182.55),
('TIGR00196', 'TIGR00196', 'yjeF_cterm: YjeF family C-terminal domain', 129.85),
('TIGR00197', 'TIGR00197', 'yjeF_nterm: YjeF family N-terminal domain', 88.60),
('TIGR00198', 'TIGR00198', 'cat_per_HPI: catalase/peroxidase HPI', 770.25),
('TIGR00199', 'TIGR00199', 'PncC_domain: amidohydrolase, PncC family', 68.90),
('TIGR00200', 'TIGR00200', 'cinA_nterm: competence/damage-inducible protein CinA N-terminal domain', 243.15),
('TIGR00201', 'TIGR00201', 'comF: comF family protein', 233.55),
('TIGR00202', 'TIGR00202', 'csrA: carbon storage regulator', 70.10),
('TIGR00203', 'TIGR00203', 'cydB: cytochrome d ubiquinol oxidase, subunit II', 117.30),
('TIGR00204', 'TIGR00204', 'dxs: 1-deoxy-D-xylulose-5-phosphate synthase', 465.95),
('TIGR00205', 'TIGR00205', 'fliE: flagellar hook-basal body complex protein FliE', 48.10),
('TIGR00206', 'TIGR00206', 'fliF: flagellar M-ring protein FliF', 129.75),
('TIGR00207', 'TIGR00207', 'fliG: flagellar motor switch protein FliG', 226.70),
('TIGR00208', 'TIGR00208', 'fliS: flagellar protein FliS', 53.75),
('TIGR00209', 'TIGR00209', 'galT_1: galactose-1-phosphate uridylyltransferase', 102.10),
('TIGR00210', 'TIGR00210', 'gltS: sodium/glutamate symporter', 310.75),
('TIGR00211', 'TIGR00211', 'glyS: glycine--tRNA ligase, beta subunit', 321.95),
('TIGR00212', 'TIGR00212', 'hemC: hydroxymethylbilane synthase', 164.00),
('TIGR00213', 'TIGR00213', 'GmhB_yaeD: D,D-heptose 1,7-bisphosphate phosphatase', 149.60),
('TIGR00214', 'TIGR00214', 'lipB: lipoyl(octanoyl) transferase', 83.55),
('TIGR00215', 'TIGR00215', 'lpxB: lipid-A-disaccharide synthase', 190.25),
('TIGR00216', 'TIGR00216', 'ispH_lytB: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase', 187.85),
('TIGR00217', 'TIGR00217', 'malQ: 4-alpha-glucanotransferase', 205.65),
('TIGR00218', 'TIGR00218', 'manA: mannose-6-phosphate isomerase, class I', 116.20),
('TIGR00219', 'TIGR00219', 'mreC: rod shape-determining protein MreC', 92.75),
('TIGR00220', 'TIGR00220', 'mscL: large conductance mechanosensitive channel protein', 71.00),
('TIGR00221', 'TIGR00221', 'nagA: N-acetylglucosamine-6-phosphate deacetylase', 225.65),
('TIGR00222', 'TIGR00222', 'panB: 3-methyl-2-oxobutanoate hydroxymethyltransferase', 207.55),
('TIGR00223', 'TIGR00223', 'panD: aspartate 1-decarboxylase', 106.00),
('TIGR00224', 'TIGR00224', 'pckA: phosphoenolpyruvate carboxykinase (ATP)', 590.05),
('TIGR00225', 'TIGR00225', 'prc: C-terminal processing peptidase', 218.60),
('TIGR00227', 'TIGR00227', 'ribD_Cterm: riboflavin-specific deaminase C-terminal domain', 150.15),
('TIGR00228', 'TIGR00228', 'ruvC: crossover junction endodeoxyribonuclease RuvC', 100.65),
('TIGR00229', 'TIGR00229', 'sensory_box: PAS domain S-box protein', 22.90),
('TIGR00230', 'TIGR00230', 'sfsA: sugar fermentation stimulation protein', 126.45),
('TIGR00231', 'TIGR00231', 'small_GTP: small GTP-binding protein domain', 42.50),
('TIGR00232', 'TIGR00232', 'tktlase_bact: transketolase', 682.25),
('TIGR00233', 'TIGR00233', 'trpS: tryptophan--tRNA ligase', 176.75),
('TIGR00234', 'TIGR00234', 'tyrS: tyrosine--tRNA ligase', 113.80),
('TIGR00235', 'TIGR00235', 'udk: uridine kinase', 220.30),
('TIGR00236', 'TIGR00236', 'wecB: UDP-N-acetylglucosamine 2-epimerase', 210.15),
('TIGR00237', 'TIGR00237', 'xseA: exodeoxyribonuclease VII, large subunit', 180.00),
('TIGR00238', 'TIGR00238', 'TIGR00238: KamA family protein', 199.20),
('TIGR00239', 'TIGR00239', '2oxo_dh_E1: oxoglutarate dehydrogenase (succinyl-transferring), E1 component', 770.00),
('TIGR00240', 'TIGR00240', 'ATCase_reg: aspartate carbamoyltransferase, regulatory subunit', 148.55),
('TIGR00241', 'TIGR00241', 'CoA_E_activ: putative CoA-substrate-specific enzyme activase', 125.40),
('TIGR00242', 'TIGR00242', 'TIGR00242: division/cell wall cluster transcriptional repressor MraZ', 98.35),
('TIGR00243', 'TIGR00243', 'Dxr: 1-deoxy-D-xylulose 5-phosphate reductoisomerase', 315.70),
('TIGR00244', 'TIGR00244', 'TIGR00244: transcriptional regulator NrdR', 124.65),
('TIGR00245', 'TIGR00245', 'TIGR00245: TIGR00245 family protein', 164.80),
('TIGR00246', 'TIGR00246', 'tRNA_RlmH_YbeA: rRNA large subunit m3Psi methyltransferase RlmH', 149.70),
('TIGR00247', 'TIGR00247', 'TIGR00247: conserved hypothetical protein, YceG family', 103.40),
('TIGR00249', 'TIGR00249', 'sixA: phosphohistidine phosphatase SixA', 74.50),
('TIGR00250', 'TIGR00250', 'RNAse_H_YqgF: putative transcription antitermination factor YqgF', 43.25),
('TIGR00251', 'TIGR00251', 'TIGR00251: TIGR00251 family protein', 53.50),
('TIGR00252', 'TIGR00252', 'TIGR00252: TIGR00252 family protein', 69.05),
('TIGR00253', 'TIGR00253', 'RNA_bind_YhbY: putative RNA-binding protein, YhbY family', 78.50),
('TIGR00254', 'TIGR00254', 'GGDEF: diguanylate cyclase (GGDEF) domain', 37.40),
('TIGR00255', 'TIGR00255', 'TIGR00255: TIGR00255 family protein', 167.50),
('TIGR00256', 'TIGR00256', 'TIGR00256: D-tyrosyl-tRNA(Tyr) deacylase', 101.50),
('TIGR00257', 'TIGR00257', 'IMPACT_YIGZ: uncharacterized protein, YigZ family', 167.95),
('TIGR00258', 'TIGR00258', 'TIGR00258: inosine/xanthosine triphosphatase', 117.10),
('TIGR00259', 'TIGR00259', 'thylakoid_BtpA: membrane complex biogenesis protein, BtpA family', 153.40),
('TIGR00260', 'TIGR00260', 'thrC: threonine synthase', 167.10),
('TIGR00261', 'TIGR00261', 'traB: TraB family protein', 178.35),
('TIGR00262', 'TIGR00262', 'trpA: tryptophan synthase, alpha subunit', 102.35),
('TIGR00263', 'TIGR00263', 'trpB: tryptophan synthase, beta subunit', 392.45),
('TIGR00264', 'TIGR00264', 'TIGR00264: alpha-NAC homolog', 98.75),
('TIGR00266', 'TIGR00266', 'TIGR00266: TIGR00266 family protein', 96.60),
('TIGR00267', 'TIGR00267', 'TIGR00267: TIGR00267 family protein', 156.95),
('TIGR00268', 'TIGR00268', 'TIGR00268: TIGR00268 family protein', 166.50),
('TIGR00269', 'TIGR00269', 'TIGR00269: TIGR00269 family protein', 62.75),
('TIGR00270', 'TIGR00270', 'TIGR00270: TIGR00270 family protein', 60.35),
('TIGR00271', 'TIGR00271', 'TIGR00271: uncharacterized hydrophobic domain', 146.50),
('TIGR00272', 'TIGR00272', 'DPH2: diphthamide biosynthesis protein 2', 184.05),
('TIGR00273', 'TIGR00273', 'TIGR00273: iron-sulfur cluster-binding protein', 444.80),
('TIGR00274', 'TIGR00274', 'TIGR00274: N-acetylmuramic acid 6-phosphate etherase', 302.00),
('TIGR00275', 'TIGR00275', 'TIGR00275: flavoprotein, HI0933 family', 183.80),
('TIGR00276', 'TIGR00276', 'TIGR00276: epoxyqueuosine reductase', 200.00),
('TIGR00277', 'TIGR00277', 'HDIG: HDIG domain', 27.60),
('TIGR00278', 'TIGR00278', 'TIGR00278: putative membrane protein insertion efficiency factor', 57.25),
('TIGR00279', 'TIGR00279', 'uL16_euk_arch: ribosomal protein uL16', 223.55),
('TIGR00280', 'TIGR00280', 'eL43_euk_arch: ribosomal protein eL43', 95.80),
('TIGR00281', 'TIGR00281', 'TIGR00281: segregation and condensation protein B', 89.20),
('TIGR00282', 'TIGR00282', 'TIGR00282: metallophosphoesterase, MG_246/BB_0505 family', 254.15),
('TIGR00283', 'TIGR00283', 'arch_pth2: peptidyl-tRNA hydrolase', 82.00),
('TIGR00284', 'TIGR00284', 'TIGR00284: dihydropteroate synthase-related protein', 256.65),
('TIGR00285', 'TIGR00285', 'TIGR00285: DNA-binding protein Alba', 88.25),
('TIGR00286', 'TIGR00286', 'TIGR00286: arginine decarboxylase, pyruvoyl-dependent', 106.95),
('TIGR00287', 'TIGR00287', 'cas1: CRISPR-associated endonuclease Cas1', 71.70),
('TIGR00288', 'TIGR00288', 'TIGR00288: TIGR00288 family protein', 178.45),
('TIGR00289', 'TIGR00289', 'TIGR00289: TIGR00289 family protein', 249.50),
('TIGR00290', 'TIGR00290', 'MJ0570_dom: MJ0570-related uncharacterized domain', 114.60),
('TIGR00291', 'TIGR00291', 'RNA_SBDS: rRNA metabolism protein, SBDS family', 126.55),
('TIGR00292', 'TIGR00292', 'TIGR00292: thiazole biosynthesis enzyme', 148.30),
('TIGR00293', 'TIGR00293', 'TIGR00293: prefoldin, alpha subunit', 53.90),
('TIGR00294', 'TIGR00294', 'TIGR00294: GTP cyclohydrolase', 100.35),
('TIGR00295', 'TIGR00295', 'TIGR00295: TIGR00295 family protein', 172.35),
('TIGR00296', 'TIGR00296', 'TIGR00296: uncharacterized protein, PH0010 family', 91.05),
('TIGR00297', 'TIGR00297', 'TIGR00297: TIGR00297 family protein', 205.85),
('TIGR00298', 'TIGR00298', 'TIGR00298: 2-phosphosulfolactate phosphatase', 175.05),
('TIGR00299', 'TIGR00299', 'TIGR00299: TIGR00299 family protein', 242.70),
('TIGR00300', 'TIGR00300', 'TIGR00300: TIGR00300 family protein', 410.80),
('TIGR00302', 'TIGR00302', 'TIGR00302: phosphoribosylformylglycinamidine synthase, purS protein', 39.00),
('TIGR00303', 'TIGR00303', 'TIGR00303: TIGR00303 family protein', 229.95),
('TIGR00304', 'TIGR00304', 'TIGR00304: TIGR00304 family protein', 62.65),
('TIGR00305', 'TIGR00305', 'TIGR00305: putative toxin-antitoxin system toxin component, PIN family', 29.15),
('TIGR00306', 'TIGR00306', 'apgM: phosphoglycerate mutase (2,3-diphosphoglycerate-independent), archaeal form', 264.50),
('TIGR00307', 'TIGR00307', 'eS8: ribosomal protein eS8', 78.25),
('TIGR00308', 'TIGR00308', 'TRM1: N2,N2-dimethylguanosine tRNA methyltransferase', 280.65),
('TIGR00309', 'TIGR00309', 'V_ATPase_subD: V-type ATPase, D subunit', 72.25),
('TIGR00310', 'TIGR00310', 'ZPR1_znf: ZPR1 zinc finger domain', 78.30),
('TIGR00311', 'TIGR00311', 'aIF-2beta: putative translation initiation factor aIF-2, beta subunit', 137.65),
('TIGR00312', 'TIGR00312', 'cbiD: cobalamin biosynthesis protein CbiD', 166.90),
('TIGR00313', 'TIGR00313', 'cobQ: cobyric acid synthase CobQ', 309.90),
('TIGR00314', 'TIGR00314', 'cdhA: CO dehydrogenase/acetyl-CoA synthase complex, epsilon subunit', 781.30),
('TIGR00315', 'TIGR00315', 'cdhB: CO dehydrogenase/acetyl-CoA synthase complex, epsilon subunit', 101.20),
('TIGR00316', 'TIGR00316', 'cdhC: CO dehydrogenase/CO-methylating acetyl-CoA synthase complex, beta subunit', 355.95),
('TIGR00317', 'TIGR00317', 'cobS: cobalamin 5''-phosphate synthase', 110.00),
('TIGR00318', 'TIGR00318', 'cyaB: putative adenylyl cyclase CyaB', 57.95),
('TIGR00319', 'TIGR00319', 'desulf_FeS4: desulfoferrodoxin FeS4 iron-binding domain', 36.05),
('TIGR00320', 'TIGR00320', 'dfx_rbo: desulfoferrodoxin', 146.90),
('TIGR00321', 'TIGR00321', 'dhys: deoxyhypusine synthase', 304.25),
('TIGR00322', 'TIGR00322', 'diphth2_R: diphthamide biosynthesis enzyme Dph1/Dph2 domain', 35.00),
('TIGR00323', 'TIGR00323', 'eIF-6: putative translation initiation factor eIF-6', 137.75),
('TIGR00324', 'TIGR00324', 'endA: tRNA-intron lyase', 59.60),
('TIGR00325', 'TIGR00325', 'lpxC: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase', 187.25),
('TIGR00326', 'TIGR00326', 'eubact_ribD: riboflavin biosynthesis protein RibD', 156.35),
('TIGR00327', 'TIGR00327', 'secE_euk_arch: protein translocase SEC61 complex gamma subunit, archaeal and eukaryotic', 36.20),
('TIGR00328', 'TIGR00328', 'flhB: flagellar biosynthetic protein FlhB', 349.25),
('TIGR00329', 'TIGR00329', 'gcp_kae1: metallohydrolase, glycoprotease/Kae1 family', 207.80),
('TIGR00330', 'TIGR00330', 'glpX: fructose-1,6-bisphosphatase, class II', 259.30),
('TIGR00331', 'TIGR00331', 'hrcA: heat-inducible transcription repressor HrcA', 197.20),
('TIGR00332', 'TIGR00332', 'neela_ferrous: desulfoferrodoxin ferrous iron-binding domain', 61.90),
('TIGR00333', 'TIGR00333', 'nrdI: nrdI protein', 74.65),
('TIGR00334', 'TIGR00334', '5S_RNA_mat_M5: ribonuclease M5', 110.65),
('TIGR00335', 'TIGR00335', 'primase_sml: putative DNA primase, eukaryotic-type, small subunit', 143.50),
('TIGR00336', 'TIGR00336', 'pyrE: orotate phosphoribosyltransferase', 106.80),
('TIGR00337', 'TIGR00337', 'PyrG: CTP synthase', 462.75),
('TIGR00338', 'TIGR00338', 'serB: phosphoserine phosphatase SerB', 144.15),
('TIGR00339', 'TIGR00339', 'sopT: sulfate adenylyltransferase', 322.95),
('TIGR00340', 'TIGR00340', 'zpr1_rel: zinc finger protein ZPR1 homolog', 117.95),
('TIGR00341', 'TIGR00341', 'TIGR00341: TIGR00341 family protein', 94.75),
('TIGR00342', 'TIGR00342', 'TIGR00342: tRNA sulfurtransferase ThiI', 264.50),
('TIGR00343', 'TIGR00343', 'TIGR00343: pyridoxal 5''-phosphate synthase, synthase subunit Pdx1', 438.45),
('TIGR00344', 'TIGR00344', 'alaS: alanine--tRNA ligase', 457.05),
('TIGR00345', 'TIGR00345', 'GET3_arsA_TRC40: transport-energizing ATPase, TRC40/GET3/ArsA family', 135.00),
('TIGR00346', 'TIGR00346', 'azlC: azaleucine resistance protein AzlC', 332.35),
('TIGR00347', 'TIGR00347', 'bioD: dethiobiotin synthase', 83.30),
('TIGR00348', 'TIGR00348', 'hsdR: type I site-specific deoxyribonuclease, HsdR family', 284.55),
('TIGR00350', 'TIGR00350', 'lytR_cpsA_psr: cell envelope-related function transcriptional attenuator common domain', 62.30),
('TIGR00351', 'TIGR00351', 'narI: respiratory nitrate reductase, gamma subunit', 105.55),
('TIGR00353', 'TIGR00353', 'nrfE: cytochrome c-type biogenesis protein CcmF', 569.05),
('TIGR00354', 'TIGR00354', 'polC: DNA polymerase II, large subunit DP2', 702.15),
('TIGR00355', 'TIGR00355', 'purH: phosphoribosylaminoimidazolecarboxamide formyltransferase/IMP cyclohydrolase', 528.00),
('TIGR00357', 'TIGR00357', 'TIGR00357: methionine-R-sulfoxide reductase', 113.05),
('TIGR00358', 'TIGR00358', '3_prime_RNase: VacB and RNase II family 3''-5'' exoribonucleases', 368.60),
('TIGR00359', 'TIGR00359', 'cello_pts_IIC: PTS system, cellobiose-specific IIC component', 434.45),
('TIGR00360', 'TIGR00360', 'ComEC_N-term: ComEC/Rec2-related protein', 36.50),
('TIGR00361', 'TIGR00361', 'ComEC_Rec2: DNA internalization-related competence protein ComEC/Rec2', 190.05),
('TIGR00362', 'TIGR00362', 'DnaA: chromosomal replication initiator protein DnaA', 343.90),
('TIGR00363', 'TIGR00363', 'TIGR00363: lipoprotein, YaeC family', 228.85),
('TIGR00364', 'TIGR00364', 'TIGR00364: queuosine biosynthesis protein QueC', 150.30),
('TIGR00365', 'TIGR00365', 'TIGR00365: monothiol glutaredoxin, Grx4 family', 117.10),
('TIGR00366', 'TIGR00366', 'TIGR00366: TIGR00366 family protein', 575.75),
('TIGR00367', 'TIGR00367', 'TIGR00367: K+-dependent Na+/Ca+ exchanger homolog', 179.65),
('TIGR00368', 'TIGR00368', 'TIGR00368: Mg chelatase-like protein', 362.40),
('TIGR00369', 'TIGR00369', 'unchar_dom_1: uncharacterized domain 1', 36.60),
('TIGR00370', 'TIGR00370', 'TIGR00370: sensor histidine kinase inhibitor, KipI family', 145.55),
('TIGR00372', 'TIGR00372', 'cas4: CRISPR-associated protein Cas4', 65.00),
('TIGR00373', 'TIGR00373', 'TIGR00373: transcription factor E', 149.50),
('TIGR00374', 'TIGR00374', 'TIGR00374: TIGR00374 family protein', 43.20),
('TIGR00375', 'TIGR00375', 'TIGR00375: TIGR00375 family protein', 326.60),
('TIGR00376', 'TIGR00376', 'TIGR00376: putative DNA helicase', 348.90),
('TIGR00377', 'TIGR00377', 'ant_ant_sig: anti-anti-sigma factor', 53.45),
('TIGR00378', 'TIGR00378', 'cax: calcium/proton exchanger', 211.15),
('TIGR00379', 'TIGR00379', 'cobB: cobyrinic acid a,c-diamide synthase', 261.40),
('TIGR00380', 'TIGR00380', 'cobD: cobalamin biosynthesis protein CobD', 165.90),
('TIGR00381', 'TIGR00381', 'cdhD: CO dehydrogenase/acetyl-CoA synthase, delta subunit', 252.90),
('TIGR00382', 'TIGR00382', 'clpX: ATP-dependent Clp protease, ATP-binding subunit ClpX', 370.75),
('TIGR00383', 'TIGR00383', 'corA: magnesium and cobalt transport protein CorA', 200.75),
('TIGR00384', 'TIGR00384', 'dhsB: succinate dehydrogenase and fumarate reductase iron-sulfur protein', 88.00),
('TIGR00385', 'TIGR00385', 'dsbE: periplasmic protein thiol:disulfide oxidoreductases, DsbE subfamily', 123.15),
('TIGR00387', 'TIGR00387', 'glcD: glycolate oxidase, subunit GlcD', 567.90),
('TIGR00388', 'TIGR00388', 'glyQ: glycine--tRNA ligase, alpha subunit', 361.45),
('TIGR00389', 'TIGR00389', 'glyS_dimeric: glycine--tRNA ligase', 243.30),
('TIGR00390', 'TIGR00390', 'hslU: ATP-dependent protease HslVU, ATPase subunit', 362.45),
('TIGR00391', 'TIGR00391', 'hydA: hydrogenase (NiFe) small subunit (hydA)', 179.50),
('TIGR00392', 'TIGR00392', 'ileS: isoleucine--tRNA ligase', 621.40),
('TIGR00393', 'TIGR00393', 'kpsF: sugar isomerase, KpsF/GutQ family', 203.70),
('TIGR00394', 'TIGR00394', 'lac_pts_IIC: PTS system, lactose-specific IIC component', 614.40),
('TIGR00395', 'TIGR00395', 'leuS_arch: leucine--tRNA ligase', 648.50),
('TIGR00396', 'TIGR00396', 'leuS_bact: leucine--tRNA ligase', 548.40),
('TIGR00397', 'TIGR00397', 'mauM_napG: MauM/NapG family ferredoxin-type protein', 178.85),
('TIGR00398', 'TIGR00398', 'metG: methionine--tRNA ligase', 336.35),
('TIGR00399', 'TIGR00399', 'metG_C_term: methionine--tRNA ligase, beta subunit', 116.65),
('TIGR00400', 'TIGR00400', 'mgtE: magnesium transporter', 232.75),
('TIGR00401', 'TIGR00401', 'msrA: peptide-methionine (S)-S-oxide reductase', 108.10),
('TIGR00402', 'TIGR00402', 'napF: ferredoxin-type protein NapF', 102.20),
('TIGR00403', 'TIGR00403', 'ndhI: NADH-plastoquinone oxidoreductase, I subunit', 302.35),
('TIGR00405', 'TIGR00405', 'KOW_elon_Spt5: transcription elongation factor Spt5', 69.95),
('TIGR00406', 'TIGR00406', 'prmA: ribosomal protein L11 methyltransferase', 183.15),
('TIGR00407', 'TIGR00407', 'proA: glutamate-5-semialdehyde dehydrogenase', 317.45),
('TIGR00408', 'TIGR00408', 'proS_fam_I: proline--tRNA ligase', 437.00),
('TIGR00409', 'TIGR00409', 'proS_fam_II: proline--tRNA ligase', 306.70),
('TIGR00410', 'TIGR00410', 'lacE: PTS system, lactose/cellobiose family IIC component', 236.00),
('TIGR00411', 'TIGR00411', 'redox_disulf_1: redox-active disulfide protein 1', 92.75),
('TIGR00412', 'TIGR00412', 'redox_disulf_2: redox-active disulfide protein 2', 73.50),
('TIGR00413', 'TIGR00413', 'rlpA: rare lipoprotein A', 82.15),
('TIGR00414', 'TIGR00414', 'serS: serine--tRNA ligase', 301.65),
('TIGR00415', 'TIGR00415', 'serS_MJ: serine--tRNA ligase', 489.55),
('TIGR00416', 'TIGR00416', 'sms: DNA repair protein RadA', 403.05),
('TIGR00417', 'TIGR00417', 'speE: spermidine synthase', 249.55),
('TIGR00418', 'TIGR00418', 'thrS: threonine--tRNA ligase', 383.65),
('TIGR00419', 'TIGR00419', 'tim: triose-phosphate isomerase', 130.60),
('TIGR00420', 'TIGR00420', 'trmU: tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase', 236.95),
('TIGR00421', 'TIGR00421', 'ubiX_pad: polyprenyl P-hydroxybenzoate and phenylacrylic acid decarboxylases', 108.90),
('TIGR00422', 'TIGR00422', 'valS: valine--tRNA ligase', 612.10),
('TIGR00423', 'TIGR00423', 'TIGR00423: radical SAM domain protein, CofH subfamily', 260.25),
('TIGR00424', 'TIGR00424', 'APS_reduc: 5''-adenylylsulfate reductase, thioredoxin-independent', 553.20),
('TIGR00425', 'TIGR00425', 'CBF5: putative rRNA pseudouridine synthase', 238.15),
('TIGR00426', 'TIGR00426', 'TIGR00426: competence protein ComEA helix-hairpin-helix repeat region', 53.10),
('TIGR00427', 'TIGR00427', 'TIGR00427: membrane protein, MarC family', 99.20),
('TIGR00430', 'TIGR00430', 'Q_tRNA_tgt: tRNA-guanine transglycosylase', 306.75),
('TIGR00431', 'TIGR00431', 'TruB: tRNA pseudouridine(55) synthase', 151.45),
('TIGR00432', 'TIGR00432', 'arcsn_tRNA_tgt: tRNA-guanine(15) transglycosylase', 350.00),
('TIGR00433', 'TIGR00433', 'bioB: biotin synthase', 230.00),
('TIGR00434', 'TIGR00434', 'cysH: phosophoadenylyl-sulfate reductase', 165.10),
('TIGR00435', 'TIGR00435', 'cysS: cysteine--tRNA ligase', 340.00),
('TIGR00436', 'TIGR00436', 'era: GTP-binding protein Era', 116.25),
('TIGR00437', 'TIGR00437', 'feoB: ferrous iron transport protein B', 315.65),
('TIGR00438', 'TIGR00438', 'rrmJ: ribosomal RNA large subunit methyltransferase J', 300.15),
('TIGR00439', 'TIGR00439', 'ftsX: putative protein insertion permease FtsX', 402.25),
('TIGR00440', 'TIGR00440', 'glnS: glutamine--tRNA ligase', 425.80),
('TIGR00441', 'TIGR00441', 'gmhA: phosphoheptose isomerase', 209.45),
('TIGR00442', 'TIGR00442', 'hisS: histidine--tRNA ligase', 286.75),
('TIGR00443', 'TIGR00443', 'hisZ_biosyn_reg: ATP phosphoribosyltransferase, regulatory subunit', 271.65),
('TIGR00444', 'TIGR00444', 'mazG: MazG family protein', 148.30),
('TIGR00445', 'TIGR00445', 'mraY: phospho-N-acetylmuramoyl-pentapeptide-transferase', 192.05),
('TIGR00446', 'TIGR00446', 'nop2p: NOL1/NOP2/sun family putative RNA methylase', 210.45),
('TIGR00447', 'TIGR00447', 'pth: aminoacyl-tRNA hydrolase', 143.15),
('TIGR00448', 'TIGR00448', 'rpoE: DNA-directed RNA polymerase', 124.20),
('TIGR00449', 'TIGR00449', 'tgt_general: tRNA-guanine family transglycosylase', 47.60),
('TIGR00450', 'TIGR00450', 'mnmE_trmE_thdF: tRNA modification GTPase TrmE', 252.60),
('TIGR00451', 'TIGR00451', 'unchar_dom_2: uncharacterized domain 2', 27.00),
('TIGR00452', 'TIGR00452', 'TIGR00452: tRNA (mo5U34)-methyltransferase', 275.00),
('TIGR00453', 'TIGR00453', 'ispD: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase', 181.30),
('TIGR00454', 'TIGR00454', 'TIGR00454: TIGR00454 family protein', 174.70),
('TIGR00455', 'TIGR00455', 'apsK: adenylyl-sulfate kinase', 138.70),
('TIGR00456', 'TIGR00456', 'argS: arginine--tRNA ligase', 261.65),
('TIGR00457', 'TIGR00457', 'asnS: asparagine--tRNA ligase', 342.60),
('TIGR00458', 'TIGR00458', 'aspS_nondisc: aspartate--tRNA(Asn) ligase', 368.40),
('TIGR00459', 'TIGR00459', 'aspS_bact: aspartate--tRNA ligase', 373.85),
('TIGR00460', 'TIGR00460', 'fmt: methionyl-tRNA formyltransferase', 201.50),
('TIGR00461', 'TIGR00461', 'gcvP: glycine dehydrogenase', 859.20),
('TIGR00462', 'TIGR00462', 'genX: EF-P lysine aminoacylase GenX', 286.90),
('TIGR00463', 'TIGR00463', 'gltX_arch: glutamate--tRNA ligase', 401.75),
('TIGR00464', 'TIGR00464', 'gltX_bact: glutamate--tRNA ligase', 289.95),
('TIGR00465', 'TIGR00465', 'ilvC: ketol-acid reductoisomerase', 226.15),
('TIGR00466', 'TIGR00466', 'kdsB: 3-deoxy-D-manno-octulosonate cytidylyltransferase', 155.20),
('TIGR00467', 'TIGR00467', 'lysS_arch: lysine--tRNA ligase', 147.55),
('TIGR00468', 'TIGR00468', 'pheS: phenylalanine--tRNA ligase, alpha subunit', 237.45),
('TIGR00469', 'TIGR00469', 'pheS_mito: phenylalanine--tRNA ligase', 258.35),
('TIGR00470', 'TIGR00470', 'sepS: O-phosphoserine--tRNA ligase', 380.65),
('TIGR00471', 'TIGR00471', 'pheT_arch: phenylalanine--tRNA ligase, beta subunit', 282.65),
('TIGR00472', 'TIGR00472', 'pheT_bact: phenylalanine--tRNA ligase, beta subunit', 402.65),
('TIGR00473', 'TIGR00473', 'pssA: CDP-diacylglycerol-serine O-phosphatidyltransferase', 107.00),
('TIGR00474', 'TIGR00474', 'selA: L-seryl-tRNA(Sec) selenium transferase', 267.90),
('TIGR00475', 'TIGR00475', 'selB: selenocysteine-specific translation elongation factor', 242.25),
('TIGR00476', 'TIGR00476', 'selD: selenide, water dikinase', 125.00),
('TIGR00477', 'TIGR00477', 'tehB: tellurite resistance protein TehB', 219.50),
('TIGR00478', 'TIGR00478', 'tly: TlyA family rRNA methyltransferase/putative hemolysin', 185.80),
('TIGR00479', 'TIGR00479', 'rumA: 23S rRNA (uracil-5-)-methyltransferase RumA', 183.55),
('TIGR00481', 'TIGR00481', 'TIGR00481: Raf kinase inhibitor-like protein, YbhB/YbcL family', 57.75),
('TIGR00482', 'TIGR00482', 'TIGR00482: nicotinate (nicotinamide) nucleotide adenylyltransferase', 112.45),
('TIGR00483', 'TIGR00483', 'EF-1_alpha: translation elongation factor EF-1, subunit alpha', 540.10),
('TIGR00484', 'TIGR00484', 'EF-G: translation elongation factor G', 659.40),
('TIGR00485', 'TIGR00485', 'EF-Tu: translation elongation factor Tu', 522.40),
('TIGR00486', 'TIGR00486', 'YbgI_SA1388: dinuclear metal center protein, YbgI/SA1388 family', 130.55),
('TIGR00487', 'TIGR00487', 'IF-2: translation initiation factor IF-2', 424.40),
('TIGR00488', 'TIGR00488', 'TIGR00488: putative HD superfamily hydrolase', 70.15),
('TIGR00489', 'TIGR00489', 'aEF-1_beta: translation elongation factor aEF-1 beta', 61.20),
('TIGR00490', 'TIGR00490', 'aEF-2: translation elongation factor aEF-2', 738.45),
('TIGR00491', 'TIGR00491', 'aIF-2: translation initiation factor aIF-2', 554.75),
('TIGR00492', 'TIGR00492', 'alr: alanine racemase', 168.00),
('TIGR00493', 'TIGR00493', 'clpP: ATP-dependent Clp endopeptidase, proteolytic subunit ClpP', 308.60),
('TIGR00494', 'TIGR00494', 'crcB: protein CrcB', 80.45),
('TIGR00495', 'TIGR00495', 'crvDNA_42K: DNA-binding protein, 42 kDa', 430.05),
('TIGR00496', 'TIGR00496', 'frr: ribosome recycling factor', 149.10),
('TIGR00497', 'TIGR00497', 'hsdM: type I restriction-modification system, M subunit', 242.75),
('TIGR00498', 'TIGR00498', 'lexA: repressor LexA', 110.95),
('TIGR00499', 'TIGR00499', 'lysS_bact: lysine--tRNA ligase', 427.60),
('TIGR00500', 'TIGR00500', 'met_pdase_I: methionine aminopeptidase, type I', 171.35),
('TIGR00501', 'TIGR00501', 'met_pdase_II: methionine aminopeptidase, type II', 222.65),
('TIGR00502', 'TIGR00502', 'nagB: glucosamine-6-phosphate deaminase', 236.90),
('TIGR00503', 'TIGR00503', 'prfC: peptide chain release factor 3', 466.95),
('TIGR00504', 'TIGR00504', 'pyro_pdase: pyroglutamyl-peptidase I', 201.75),
('TIGR00505', 'TIGR00505', 'ribA: GTP cyclohydrolase II', 205.85),
('TIGR00506', 'TIGR00506', 'ribB: 3,4-dihydroxy-2-butanone-4-phosphate synthase', 177.45),
('TIGR00507', 'TIGR00507', 'aroE: shikimate dehydrogenase', 200.20),
('TIGR00508', 'TIGR00508', 'bioA: adenosylmethionine-8-amino-7-oxononanoate transaminase', 405.00),
('TIGR00509', 'TIGR00509', 'bisC_fam: molybdopterin guanine dinucleotide-containing S/N-oxide reductases', 1017.55),
('TIGR00510', 'TIGR00510', 'lipA: lipoyl synthase', 310.25),
('TIGR00511', 'TIGR00511', 'ribulose_e2b2: ribose-1,5-bisphosphate isomerase, e2b2 family', 314.10),
('TIGR00512', 'TIGR00512', 'salvage_mtnA: S-methyl-5-thioribose-1-phosphate isomerase', 279.00),
('TIGR00513', 'TIGR00513', 'accA: acetyl-CoA carboxylase, carboxyl transferase, alpha subunit', 319.30),
('TIGR00514', 'TIGR00514', 'accC: acetyl-CoA carboxylase, biotin carboxylase subunit', 626.50),
('TIGR00515', 'TIGR00515', 'accD: acetyl-CoA carboxylase, carboxyl transferase, beta subunit', 317.45),
('TIGR00516', 'TIGR00516', 'acpS: holo-[acyl-carrier-protein] synthase', 59.80),
('TIGR00517', 'TIGR00517', 'acyl_carrier: acyl carrier protein', 70.45),
('TIGR00518', 'TIGR00518', 'alaDH: alanine dehydrogenase', 391.85),
('TIGR00519', 'TIGR00519', 'asnASE_I: L-asparaginase, type I', 260.50),
('TIGR00520', 'TIGR00520', 'asnASE_II: L-asparaginase, type II', 314.30),
('TIGR00521', 'TIGR00521', 'coaBC_dfp: phosphopantothenoylcysteine decarboxylase / phosphopantothenate--cysteine ligase', 219.70),
('TIGR00522', 'TIGR00522', 'dph5: diphthine synthase', 114.30),
('TIGR00523', 'TIGR00523', 'eIF-1A: translation initiation factor eIF-1A', 102.90),
('TIGR00524', 'TIGR00524', 'eIF-2B_rel: eIF-2B alpha/beta/delta-related uncharacterized proteins', 185.85),
('TIGR00525', 'TIGR00525', 'folB: dihydroneopterin aldolase', 72.15),
('TIGR00526', 'TIGR00526', 'folB_dom: FolB domain', 45.05),
('TIGR00527', 'TIGR00527', 'gcvH: glycine cleavage system H protein', 115.85),
('TIGR00528', 'TIGR00528', 'gcvT: glycine cleavage system T protein', 235.85),
('TIGR00529', 'TIGR00529', 'AF0261: integral membrane protein, TIGR00529 family', 378.40),
('TIGR00530', 'TIGR00530', 'AGP_acyltrn: 1-acylglycerol-3-phosphate O-acyltransferases', 102.95),
('TIGR00531', 'TIGR00531', 'BCCP: acetyl-CoA carboxylase, biotin carboxyl carrier protein', 115.20),
('TIGR00532', 'TIGR00532', 'HMG_CoA_R_NAD: hydroxymethylglutaryl-CoA reductase, degradative', 259.95),
('TIGR00533', 'TIGR00533', 'HMG_CoA_R_NADP: hydroxymethylglutaryl-CoA reductase (NADPH)', 441.80),
('TIGR00534', 'TIGR00534', 'OpcA: glucose-6-phosphate dehydrogenase assembly protein OpcA', 256.25),
('TIGR00535', 'TIGR00535', 'SAM_DCase: S-adenosylmethionine decarboxylase proenzyme', 233.15),
('TIGR00536', 'TIGR00536', 'hemK_fam: methyltransferase, HemK family', 115.50),
('TIGR00537', 'TIGR00537', 'hemK_rel_arch: putative methylase', 87.00),
('TIGR00538', 'TIGR00538', 'hemN: oxygen-independent coproporphyrinogen III oxidase', 324.95),
('TIGR00539', 'TIGR00539', 'hemN_rel: putative oxygen-independent coproporphyrinogen III oxidase', 205.40),
('TIGR00540', 'TIGR00540', 'TPR_hemY_coli: heme biosynthesis-associated TPR protein', 142.00),
('TIGR00541', 'TIGR00541', 'hisDCase_pyru: histidine decarboxylase, pyruvoyl type', 346.65),
('TIGR00542', 'TIGR00542', 'hxl6Piso_put: putative hexulose-6-phosphate isomerase', 272.15),
('TIGR00543', 'TIGR00543', 'isochor_syn: isochorismate synthase', 224.75),
('TIGR00544', 'TIGR00544', 'lgt: prolipoprotein diacylglyceryl transferase', 118.90),
('TIGR00545', 'TIGR00545', 'lipoyltrans: lipoyltransferase and lipoate-protein ligase', 201.85),
('TIGR00546', 'TIGR00546', 'lnt: apolipoprotein N-acyltransferase', 132.90),
('TIGR00547', 'TIGR00547', 'lolA: outer membrane lipoprotein carrier protein LolA', 48.60),
('TIGR00548', 'TIGR00548', 'lolB: outer membrane lipoprotein LolB', 59.60),
('TIGR00549', 'TIGR00549', 'mevalon_kin: mevalonate kinase', 163.05),
('TIGR00550', 'TIGR00550', 'nadA: quinolinate synthetase complex, A subunit', 262.90),
('TIGR00551', 'TIGR00551', 'nadB: L-aspartate oxidase', 452.75),
('TIGR00552', 'TIGR00552', 'nadE: NAD+ synthetase', 63.65),
('TIGR00553', 'TIGR00553', 'pabB: aminodeoxychorismate synthase, component I', 328.40),
('TIGR00554', 'TIGR00554', 'panK_bact: pantothenate kinase', 306.20),
('TIGR00555', 'TIGR00555', 'panK_eukar: pantothenate kinase', 247.60),
('TIGR00556', 'TIGR00556', 'pantethn_trn: phosphopantetheine--protein transferase domain', 45.35),
('TIGR00557', 'TIGR00557', 'pdxA: 4-hydroxythreonine-4-phosphate dehydrogenase PdxA', 290.35),
('TIGR00558', 'TIGR00558', 'pdxH: pyridoxamine 5''-phosphate oxidase', 150.10),
('TIGR00559', 'TIGR00559', 'pdxJ: pyridoxine 5''-phosphate synthase', 192.75),
('TIGR00560', 'TIGR00560', 'pgsA: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase', 109.10),
('TIGR00561', 'TIGR00561', 'pntA: NAD(P)(+) transhydrogenase (AB-specific), alpha subunit', 444.40),
('TIGR00562', 'TIGR00562', 'proto_IX_ox: protoporphyrinogen oxidase', 97.85),
('TIGR00563', 'TIGR00563', 'rsmB: 16S rRNA (cytosine(967)-C(5))-methyltransferase', 269.05),
('TIGR00564', 'TIGR00564', 'trpE_most: anthranilate synthase component I', 517.70),
('TIGR00565', 'TIGR00565', 'trpE_proteo: anthranilate synthase component I', 494.65),
('TIGR00566', 'TIGR00566', 'trpG_papA: glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase', 121.05),
('TIGR00567', 'TIGR00567', '3mg: DNA-3-methyladenine glycosylase', 116.35),
('TIGR00568', 'TIGR00568', 'alkb: alkylated DNA repair protein AlkB', 231.05),
('TIGR00569', 'TIGR00569', 'ccl1: cyclin ccl1', 250.35),
('TIGR00570', 'TIGR00570', 'cdk7: CDK-activating kinase assembly factor MAT1', 160.20),
('TIGR00571', 'TIGR00571', 'dam: DNA adenine methylase', 114.85),
('TIGR00573', 'TIGR00573', 'dnaq: exonuclease, DNA polymerase III, epsilon subunit family', 71.50),
('TIGR00574', 'TIGR00574', 'dnl1: DNA ligase I, ATP-dependent (dnl1)', 217.80),
('TIGR00575', 'TIGR00575', 'dnlj: DNA ligase, NAD-dependent', 444.45),
('TIGR00576', 'TIGR00576', 'dut: dUTP diphosphatase', 102.55),
('TIGR00577', 'TIGR00577', 'fpg: DNA-formamidopyrimidine glycosylase', 203.30),
('TIGR00578', 'TIGR00578', 'ku70: ATP-dependent DNA helicase II, 70 kDa subunit (ku70)', 194.25),
('TIGR00580', 'TIGR00580', 'mfd: transcription-repair coupling factor', 819.85),
('TIGR00581', 'TIGR00581', 'moaC: molybdenum cofactor biosynthesis protein C', 141.50),
('TIGR00583', 'TIGR00583', 'mre11: DNA repair protein (mre11)', 434.60),
('TIGR00584', 'TIGR00584', 'mug: mismatch-specific thymine-DNA glycosylate (mug)', 402.60),
('TIGR00585', 'TIGR00585', 'mutl: DNA mismatch repair protein MutL', 253.25),
('TIGR00586', 'TIGR00586', 'mutt: mutator mutT protein', 97.90),
('TIGR00587', 'TIGR00587', 'nfo: apurinic endonuclease (APN1)', 129.65),
('TIGR00588', 'TIGR00588', 'ogg: 8-oxoguanine DNA-glycosylase (ogg)', 397.85),
('TIGR00589', 'TIGR00589', 'ogt: methylated-DNA--[protein]-cysteine S-methyltransferase', 46.40),
('TIGR00590', 'TIGR00590', 'pcna: proliferating cell nuclear antigen (pcna)', 99.10),
('TIGR00591', 'TIGR00591', 'phr2: deoxyribodipyrimidine photolyase', 550.05),
('TIGR00592', 'TIGR00592', 'pol2: DNA polymerase (pol2)', 239.95),
('TIGR00593', 'TIGR00593', 'pola: DNA polymerase I', 600.00),
('TIGR00594', 'TIGR00594', 'polc: DNA polymerase III, alpha subunit', 434.35),
('TIGR00595', 'TIGR00595', 'priA: primosomal protein N''', 230.35),
('TIGR00596', 'TIGR00596', 'rad1: DNA repair protein (rad1)', 806.65),
('TIGR00597', 'TIGR00597', 'rad10: DNA repair protein rad10', 72.90),
('TIGR00598', 'TIGR00598', 'rad14: DNA repair protein', 113.15),
('TIGR00599', 'TIGR00599', 'rad18: DNA repair protein rad18', 175.05),
('TIGR00600', 'TIGR00600', 'rad2: DNA excision repair protein (rad2)', 1204.40),
('TIGR00601', 'TIGR00601', 'rad23: UV excision repair protein Rad23', 207.30),
('TIGR00602', 'TIGR00602', 'rad24: checkpoint protein rad24', 482.55),
('TIGR00603', 'TIGR00603', 'rad25: DNA repair helicase rad25', 328.70),
('TIGR00604', 'TIGR00604', 'rad3: DNA repair helicase (rad3)', 246.95),
('TIGR00605', 'TIGR00605', 'rad4: DNA repair protein rad4', 697.50),
('TIGR00606', 'TIGR00606', 'rad50: rad50', 453.75),
('TIGR00607', 'TIGR00607', 'rad52: recombination protein rad52', 224.80),
('TIGR00608', 'TIGR00608', 'radc: DNA repair protein RadC', 133.85),
('TIGR00609', 'TIGR00609', 'recB: exodeoxyribonuclease V, beta subunit', 696.05),
('TIGR00611', 'TIGR00611', 'recf: DNA replication and repair protein RecF', 159.45),
('TIGR00612', 'TIGR00612', 'ispG_gcpE: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase', 280.25),
('TIGR00613', 'TIGR00613', 'reco: DNA repair protein RecO', 48.70),
('TIGR00614', 'TIGR00614', 'recQ_fam: ATP-dependent DNA helicase, RecQ family', 219.80),
('TIGR00615', 'TIGR00615', 'recR: recombination protein RecR', 162.55),
('TIGR00616', 'TIGR00616', 'rect: recombinase, phage RecT family', 52.65),
('TIGR00617', 'TIGR00617', 'rpa1: replication factor-a protein 1 (rpa1)', 334.20),
('TIGR00618', 'TIGR00618', 'sbcc: exonuclease SbcC', 478.50),
('TIGR00619', 'TIGR00619', 'sbcd: exonuclease SbcCD, D subunit', 77.65),
('TIGR00621', 'TIGR00621', 'ssb: single-stranded DNA-binding protein', 53.95),
('TIGR00622', 'TIGR00622', 'ssl1: transcription factor ssl1', 45.10),
('TIGR00623', 'TIGR00623', 'sula: cell division inhibitor SulA', 269.45),
('TIGR00624', 'TIGR00624', 'tag: DNA-3-methyladenine glycosylase I', 232.50),
('TIGR00625', 'TIGR00625', 'tfb2: transcription factor Tfb2', 320.70),
('TIGR00627', 'TIGR00627', 'tfb4: transcription factor tfb4', 355.05),
('TIGR00628', 'TIGR00628', 'ung: uracil-DNA glycosylase', 185.75),
('TIGR00629', 'TIGR00629', 'uvde: UV damage endonuclease UvdE', 124.45),
('TIGR00630', 'TIGR00630', 'uvra: excinuclease ABC subunit A', 729.80),
('TIGR00631', 'TIGR00631', 'uvrb: excinuclease ABC subunit B', 750.10),
('TIGR00632', 'TIGR00632', 'vsr: DNA mismatch endonuclease Vsr', 97.85),
('TIGR00633', 'TIGR00633', 'xth: exodeoxyribonuclease III (xth)', 99.05),
('TIGR00634', 'TIGR00634', 'recN: DNA repair protein RecN', 407.85),
('TIGR00635', 'TIGR00635', 'ruvB: Holliday junction DNA helicase RuvB', 299.05),
('TIGR00636', 'TIGR00636', 'PduO_Nterm: ATP:cob(I)alamin adenosyltransferase', 108.45),
('TIGR00637', 'TIGR00637', 'ModE_repress: ModE molybdate transport repressor domain', 98.50),
('TIGR00638', 'TIGR00638', 'Mop: molybdenum-pterin binding domain', 55.00),
('TIGR00639', 'TIGR00639', 'PurN: phosphoribosylglycinamide formyltransferase', 150.10),
('TIGR00640', 'TIGR00640', 'acid_CoA_mut_C: methylmalonyl-CoA mutase C-terminal domain', 57.45),
('TIGR00641', 'TIGR00641', 'acid_CoA_mut_N: methylmalonyl-CoA mutase N-terminal domain', 303.80),
('TIGR00642', 'TIGR00642', 'mmCoA_mut_beta: methylmalonyl-CoA mutase, small subunit', 617.25),
('TIGR00643', 'TIGR00643', 'recG: ATP-dependent DNA helicase RecG', 659.40),
('TIGR00644', 'TIGR00644', 'recJ: single-stranded-DNA-specific exonuclease RecJ', 396.90),
('TIGR00645', 'TIGR00645', 'HI0507: TIGR00645 family protein', 144.40),
('TIGR00646', 'TIGR00646', 'MG010: DNA primase-like protein', 260.65),
('TIGR00647', 'TIGR00647', 'DNA_bind_WhiA: DNA-binding protein WhiA', 44.10),
('TIGR00648', 'TIGR00648', 'recU: recombination protein U', 176.75),
('TIGR00649', 'TIGR00649', 'MG423: beta-CASP ribonuclease, RNase J family', 400.00),
('TIGR00651', 'TIGR00651', 'pta: phosphate acetyltransferase', 311.20),
('TIGR00652', 'TIGR00652', 'DapF: diaminopimelate epimerase', 114.65),
('TIGR00653', 'TIGR00653', 'GlnA: glutamine synthetase, type I', 429.15),
('TIGR00654', 'TIGR00654', 'PhzF_family: phenazine biosynthesis protein, PhzF family', 76.20),
('TIGR00655', 'TIGR00655', 'PurU: formyltetrahydrofolate deformylase', 285.95),
('TIGR00656', 'TIGR00656', 'asp_kin_monofn: aspartate kinase, monofunctional class', 402.25),
('TIGR00657', 'TIGR00657', 'asp_kinases: aspartate kinase', 208.70),
('TIGR00658', 'TIGR00658', 'orni_carb_tr: ornithine carbamoyltransferase', 280.85),
('TIGR00659', 'TIGR00659', 'TIGR00659: TIGR00659 family protein', 249.70),
('TIGR00661', 'TIGR00661', 'MJ1255: conserved hypothetical protein', 195.90),
('TIGR00663', 'TIGR00663', 'dnan: DNA polymerase III, beta subunit', 137.65),
('TIGR00664', 'TIGR00664', 'DNA_III_psi: DNA polymerase III, psi subunit', 150.55),
('TIGR00665', 'TIGR00665', 'DnaB: replicative DNA helicase', 385.25),
('TIGR00666', 'TIGR00666', 'PBP4: D-alanyl-D-alanine carboxypeptidase/D-alanyl-D-alanine-endopeptidase', 107.80),
('TIGR00667', 'TIGR00667', 'aat: leucyl/phenylalanyl-tRNA--protein transferase', 143.55),
('TIGR00668', 'TIGR00668', 'apaH: bis(5''-nucleosyl)-tetraphosphatase (symmetrical)', 222.85),
('TIGR00669', 'TIGR00669', 'asnA: aspartate--ammonia ligase', 292.80),
('TIGR00670', 'TIGR00670', 'asp_carb_tr: aspartate carbamoyltransferase', 236.95),
('TIGR00671', 'TIGR00671', 'baf: pantothenate kinase, type III', 58.20),
('TIGR00672', 'TIGR00672', 'cdh: CDP-diacylglycerol diphosphatase', 375.35),
('TIGR00673', 'TIGR00673', 'cynS: cyanase', 113.30),
('TIGR00674', 'TIGR00674', 'dapA: 4-hydroxy-tetrahydrodipicolinate synthase', 206.15),
('TIGR00675', 'TIGR00675', 'dcm: DNA (cytosine-5-)-methyltransferase', 100.65),
('TIGR00676', 'TIGR00676', 'fadh2: methylenetetrahydrofolate reductase [NAD(P)H]', 293.70),
('TIGR00677', 'TIGR00677', 'fadh2_euk: methylenetetrahydrofolate reductase', 310.05),
('TIGR00678', 'TIGR00678', 'holB: DNA polymerase III, delta'' subunit', 180.60),
('TIGR00679', 'TIGR00679', 'hpr-ser: HPr(Ser) kinase/phosphatase', 240.00),
('TIGR00680', 'TIGR00680', 'kdpA: K+-transporting ATPase, A subunit', 387.70),
('TIGR00681', 'TIGR00681', 'kdpC: K+-transporting ATPase, C subunit', 152.55),
('TIGR00682', 'TIGR00682', 'lpxK: tetraacyldisaccharide 4''-kinase', 91.95),
('TIGR00683', 'TIGR00683', 'nanA: N-acetylneuraminate lyase', 382.00),
('TIGR00684', 'TIGR00684', 'narJ: nitrate reductase molybdenum cofactor assembly chaperone', 59.35),
('TIGR00685', 'TIGR00685', 'T6PP: trehalose-phosphatase', 68.05),
('TIGR00686', 'TIGR00686', 'phnA: putative alkylphosphonate utilization operon protein PhnA', 80.20),
('TIGR00687', 'TIGR00687', 'pyridox_kin: pyridoxal kinase', 144.50),
('TIGR00688', 'TIGR00688', 'rarD: protein RarD', 130.15),
('TIGR00689', 'TIGR00689', 'rpiB_lacA_lacB: sugar-phosphate isomerase, RpiB/LacA/LacB family', 88.30),
('TIGR00690', 'TIGR00690', 'rpoZ: DNA-directed RNA polymerase, omega subunit', 23.60),
('TIGR00691', 'TIGR00691', 'spoT_relA: RelA/SpoT family protein', 499.20),
('TIGR00692', 'TIGR00692', 'tdh: L-threonine 3-dehydrogenase', 458.35),
('TIGR00693', 'TIGR00693', 'thiE: thiamine-phosphate diphosphorylase', 145.10),
('TIGR00694', 'TIGR00694', 'thiM: hydroxyethylthiazole kinase', 256.40),
('TIGR00695', 'TIGR00695', 'uxuA: mannonate dehydratase', 199.55),
('TIGR00696', 'TIGR00696', 'wecG_tagA_cpsF: glycosyltransferase, WecB/TagA/CpsF family', 69.00),
('TIGR00697', 'TIGR00697', 'TIGR00697: conserved hypothetical integral membrane protein', 50.95),
('TIGR00698', 'TIGR00698', 'TIGR00698: conserved hypothetical protein', 232.60),
('TIGR00699', 'TIGR00699', 'GABAtrns_euk: 4-aminobutyrate aminotransferase', 567.15),
('TIGR00700', 'TIGR00700', 'GABAtrnsam: 4-aminobutyrate transaminase', 506.65),
('TIGR00701', 'TIGR00701', 'TIGR00701: TIGR00701 family protein', 138.05),
('TIGR00702', 'TIGR00702', 'TIGR00702: YcaO-type kinase domain', 75.65),
('TIGR00703', 'TIGR00703', 'TIGR00703: TIGR00703 family protein', 155.40),
('TIGR00704', 'TIGR00704', 'NaPi_cotrn_rel: Na/Pi-cotransporter II-related protein', 210.10),
('TIGR00705', 'TIGR00705', 'SppA_67K: signal peptide peptidase SppA, 67K type', 311.45),
('TIGR00706', 'TIGR00706', 'SppA_dom: signal peptide peptidase SppA, 36K type', 155.45),
('TIGR00707', 'TIGR00707', 'argD: transaminase, acetylornithine/succinylornithine family', 410.05),
('TIGR00708', 'TIGR00708', 'cobA: cob(I)yrinic acid a,c-diamide adenosyltransferase', 167.75),
('TIGR00709', 'TIGR00709', 'dat: 2,4-diaminobutyrate 4-transaminase', 401.60),
('TIGR00710', 'TIGR00710', 'efflux_Bcr_CflA: drug resistance transporter, Bcr/CflA subfamily', 200.90),
('TIGR00711', 'TIGR00711', 'efflux_EmrB: drug resistance MFS transporter, drug:H+ antiporter-2 (14 Spanner) (DHA2) family', 230.20),
('TIGR00712', 'TIGR00712', 'glpT: glycerol-3-phosphate transporter', 632.55),
('TIGR00713', 'TIGR00713', 'hemL: glutamate-1-semialdehyde-2,1-aminomutase', 527.30),
('TIGR00714', 'TIGR00714', 'hscB: Fe-S protein assembly co-chaperone HscB', 46.75),
('TIGR00715', 'TIGR00715', 'precor6x_red: precorrin-6x reductase', 129.85),
('TIGR00716', 'TIGR00716', 'rnhC: ribonuclease HIII', 161.20),
('TIGR00717', 'TIGR00717', 'rpsA: ribosomal protein bS1', 577.00),
('TIGR00718', 'TIGR00718', 'sda_alpha: L-serine dehydratase, iron-sulfur-dependent, alpha subunit', 243.20),
('TIGR00719', 'TIGR00719', 'sda_beta: L-serine dehydratase, iron-sulfur-dependent, beta subunit', 161.20),
('TIGR00720', 'TIGR00720', 'sda_mono: L-serine ammonia-lyase', 345.10),
('TIGR00721', 'TIGR00721', 'tfx: DNA-binding protein, Tfx family', 60.25),
('TIGR00722', 'TIGR00722', 'ttdA_fumA_fumB: hydrolyase, tartrate alpha subunit/fumarate domain protein, Fe-S type', 100.65),
('TIGR00723', 'TIGR00723', 'ttdB_fumA_fumB: hydrolyase, tartrate beta subunit/fumarate domain protein, Fe-S type', 145.15),
('TIGR00724', 'TIGR00724', 'urea_amlyse_rel: biotin-dependent carboxylase uncharacterized domain', 230.20),
('TIGR00725', 'TIGR00725', 'TIGR00725: TIGR00725 family protein', 106.90),
('TIGR00726', 'TIGR00726', 'TIGR00726: YfiH family protein', 141.15),
('TIGR00727', 'TIGR00727', 'ISP4_OPT: small oligopeptide transporter, OPT family', 438.70),
('TIGR00728', 'TIGR00728', 'OPT_sfam: oligopeptide transporter, OPT superfamily', 128.35),
('TIGR00729', 'TIGR00729', 'TIGR00729: ribonuclease HII', 123.30),
('TIGR00730', 'TIGR00730', 'TIGR00730: TIGR00730 family protein', 96.35),
('TIGR00731', 'TIGR00731', 'bL25_bact_ctc: ribosomal protein bL25, Ctc-form', 73.10),
('TIGR00732', 'TIGR00732', 'dprA: DNA protecting protein DprA', 191.15),
('TIGR00733', 'TIGR00733', 'TIGR00733: oligopeptide transporter, OPT family', 182.50),
('TIGR00734', 'TIGR00734', 'hisAF_rel: hisA/hisF family protein', 179.85),
('TIGR00735', 'TIGR00735', 'hisF: imidazoleglycerol phosphate synthase, cyclase subunit', 294.55),
('TIGR00736', 'TIGR00736', 'nifR3_rel_arch: putative TIM-barrel protein', 218.70),
('TIGR00737', 'TIGR00737', 'nifR3_yhdG: putative TIM-barrel protein, nifR3 family', 293.30),
('TIGR00738', 'TIGR00738', 'rrf2_super: Rrf2 family protein', 73.30),
('TIGR00739', 'TIGR00739', 'yajC: preprotein translocase, YajC subunit', 44.20),
('TIGR00740', 'TIGR00740', 'TIGR00740: tRNA (cmo5U34)-methyltransferase', 193.30),
('TIGR00741', 'TIGR00741', 'yfiA: ribosomal subunit interface protein', 40.90),
('TIGR00742', 'TIGR00742', 'yjbN: tRNA dihydrouridine synthase A', 397.20),
('TIGR00743', 'TIGR00743', 'TIGR00743: conserved hypothetical protein', 71.45),
('TIGR00744', 'TIGR00744', 'ROK_glcA_fam: ROK family protein (putative glucokinase)', 260.35),
('TIGR00745', 'TIGR00745', 'apbA_panE: 2-dehydropantoate 2-reductase', 141.35),
('TIGR00746', 'TIGR00746', 'arcC: carbamate kinase', 358.25),
('TIGR00747', 'TIGR00747', 'fabH: 3-oxoacyl-[acyl-carrier-protein] synthase III', 292.10),
('TIGR00748', 'TIGR00748', 'HMG_CoA_syn_Arc: putative hydroxymethylglutaryl-CoA synthase', 353.35),
('TIGR00749', 'TIGR00749', 'glk: glucokinase', 225.45),
('TIGR00750', 'TIGR00750', 'lao: LAO/AO transport system ATPase', 240.75),
('TIGR00751', 'TIGR00751', 'menA: 1,4-dihydroxy-2-naphthoate octaprenyltransferase', 102.15),
('TIGR00752', 'TIGR00752', 'slp: outer membrane lipoprotein, Slp family', 88.45),
('TIGR00753', 'TIGR00753', 'undec_PP_bacA: undecaprenyl-diphosphatase UppP', 217.50),
('TIGR00754', 'TIGR00754', 'bfr: bacterioferritin', 125.55),
('TIGR00755', 'TIGR00755', 'ksgA: ribosomal RNA small subunit methyltransferase A', 171.00),
('TIGR00756', 'TIGR00756', 'PPR: pentatricopeptide repeat domain', 15.50),
('TIGR00757', 'TIGR00757', 'RNaseEG: ribonuclease, Rne/Rng family', 325.95),
('TIGR00758', 'TIGR00758', 'UDG_fam4: uracil-DNA glycosylase, family 4', 125.30),
('TIGR00759', 'TIGR00759', 'aceE: pyruvate dehydrogenase (acetyl-transferring), homodimeric type', 859.90),
('TIGR00760', 'TIGR00760', 'araD: L-ribulose-5-phosphate 4-epimerase', 389.10),
('TIGR00761', 'TIGR00761', 'argB: acetylglutamate kinase', 151.30),
('TIGR00762', 'TIGR00762', 'DegV: EDD domain protein, DegV family', 99.70),
('TIGR00763', 'TIGR00763', 'lon: endopeptidase La', 608.05),
('TIGR00764', 'TIGR00764', 'lon_rel: putative ATP-dependent protease', 516.60),
('TIGR00765', 'TIGR00765', 'yihY_not_rbn: YihY family inner membrane protein', 73.15),
('TIGR00766', 'TIGR00766', 'TIGR00766: inner membrane protein YhjD', 213.65),
('TIGR00767', 'TIGR00767', 'rho: transcription termination factor Rho', 509.45),
('TIGR00768', 'TIGR00768', 'rimK_fam: alpha-L-glutamate ligase, RimK family', 143.40),
('TIGR00769', 'TIGR00769', 'AAA: ADP/ATP carrier protein family', 387.20),
('TIGR00770', 'TIGR00770', 'Dcu: transporter, anaerobic C4-dicarboxylate uptake (Dcu) family', 331.35),
('TIGR00771', 'TIGR00771', 'DcuC: transporter, anaerobic C4-dicarboxylate uptake C (DcuC) family', 187.00),
('TIGR00773', 'TIGR00773', 'NhaA: Na+/H+ antiporter NhaA', 254.00),
('TIGR00774', 'TIGR00774', 'NhaB: Na+/H+ antiporter NhaB', 826.10),
('TIGR00775', 'TIGR00775', 'NhaD: Na+/H+ antiporter, NhaD family', 577.10),
('TIGR00776', 'TIGR00776', 'RhaT: RhaT L-rhamnose-proton symporter family protein', 319.60),
('TIGR00777', 'TIGR00777', 'ahpD: alkylhydroperoxidase, AhpD family', 191.95),
('TIGR00778', 'TIGR00778', 'ahpD_dom: alkylhydroperoxidase AhpD family core domain', 27.80),
('TIGR00779', 'TIGR00779', 'cad: cadmium resistance transporter family protein', 181.65),
('TIGR00780', 'TIGR00780', 'ccoN: cytochrome c oxidase, cbb3-type, subunit I', 583.15),
('TIGR00781', 'TIGR00781', 'ccoO: cytochrome c oxidase, cbb3-type, subunit II', 200.65),
('TIGR00782', 'TIGR00782', 'ccoP: cytochrome c oxidase, cbb3-type, subunit III', 179.95),
('TIGR00783', 'TIGR00783', 'ccs: citrate carrier protein, CCS family', 549.05),
('TIGR00784', 'TIGR00784', 'citMHS: citrate transporter', 259.70),
('TIGR00785', 'TIGR00785', 'dass: transporter, divalent anion:Na+ symporter (DASS) family', 198.60),
('TIGR00786', 'TIGR00786', 'dctM: TRAP transporter, DctM subunit', 268.45),
('TIGR00787', 'TIGR00787', 'dctP: TRAP transporter solute receptor, DctP family', 175.05),
('TIGR00788', 'TIGR00788', 'fbt: folate/biopterin transporter', 216.40),
('TIGR00789', 'TIGR00789', 'flhB_rel: FlhB domain protein', 117.35),
('TIGR00790', 'TIGR00790', 'fnt: formate/nitrite transporter', 232.30),
('TIGR00791', 'TIGR00791', 'gntP: transporter, gluconate:H+ symporter (GntP) family', 292.75),
('TIGR00792', 'TIGR00792', 'gph: sugar (Glycoside-Pentoside-Hexuronide) transporter', 231.35),
('TIGR00793', 'TIGR00793', 'kdgT: 2-keto-3-deoxygluconate transporter', 453.80),
('TIGR00794', 'TIGR00794', 'kup: potassium uptake protein', 539.60),
('TIGR00795', 'TIGR00795', 'lctP: transporter, lactate permease (LctP) family', 341.15),
('TIGR00796', 'TIGR00796', 'livcs: branched-chain amino acid transport system II carrier protein', 243.40),
('TIGR00797', 'TIGR00797', 'matE: MATE efflux family protein', 147.40),
('TIGR00798', 'TIGR00798', 'mtc: tricarboxylate carrier', 322.80),
('TIGR00799', 'TIGR00799', 'mtp: Golgi 4-transmembrane spanning transporter', 181.30),
('TIGR00800', 'TIGR00800', 'ncs1: NCS1 nucleoside transporter family', 353.10),
('TIGR00801', 'TIGR00801', 'ncs2: uracil-xanthine permease', 291.80),
('TIGR00802', 'TIGR00802', 'nico: transition metal uptake transporter, Ni2+-Co2+ transporter (NiCoT) family', 333.05),
('TIGR00803', 'TIGR00803', 'nst: UDP-galactose transporter', 55.85),
('TIGR00804', 'TIGR00804', 'nupC: nucleoside transporter, NupC family', 442.00),
('TIGR00805', 'TIGR00805', 'oat: sodium-independent organic anion transporter', 280.00),
('TIGR00806', 'TIGR00806', 'rfc: reduced folate carrier', 227.40),
('TIGR00807', 'TIGR00807', 'malonate_madL: malonate transporter, MadL subunit', 113.45),
('TIGR00808', 'TIGR00808', 'malonate_madM: malonate transporter, MadM subunit', 236.30),
('TIGR00809', 'TIGR00809', 'secB: protein-export chaperone SecB', 102.80),
('TIGR00810', 'TIGR00810', 'secG: preprotein translocase, SecG subunit', 30.85),
('TIGR00811', 'TIGR00811', 'sit: silicon transporter', 1047.60),
('TIGR00813', 'TIGR00813', 'sss: transporter, solute:sodium symporter (SSS) family', 184.00),
('TIGR00814', 'TIGR00814', 'stp: serine transporter', 525.80),
('TIGR00815', 'TIGR00815', 'sulP: sulfate permease', 380.45),
('TIGR00816', 'TIGR00816', 'tdt: C4-dicarboxylate transporter/malic acid transport protein', 237.25),
('TIGR00817', 'TIGR00817', 'tpt: Tpt phosphate/phosphoenolpyruvate translocator', 317.90),
('TIGR00819', 'TIGR00819', 'ydaH: AbgT transporter family', 753.55),
('TIGR00820', 'TIGR00820', 'zip: ZIP zinc/iron transport family', 231.15),
('TIGR00821', 'TIGR00821', 'EII-GUT: PTS system, glucitol/sorbitol-specific, IIC component', 166.30),
('TIGR00822', 'TIGR00822', 'EII-Sor: PTS system, mannose/fructose/sorbose family, IIC component', 339.85),
('TIGR00823', 'TIGR00823', 'EIIA-LAC: PTS system, lactose-specific IIa component', 136.95),
('TIGR00824', 'TIGR00824', 'EIIA-man: PTS system, mannose/fructose/sorbose family, IIA component', 98.35),
('TIGR00825', 'TIGR00825', 'EIIBC-GUT: PTS system, glucitol/sorbitol-specific, IIBC component', 458.70),
('TIGR00826', 'TIGR00826', 'EIIB_glc: PTS system, glucose-like IIB component', 45.75),
('TIGR00827', 'TIGR00827', 'EIIC-GAT: PTS system, galactitol-specific IIC component', 542.20),
('TIGR00828', 'TIGR00828', 'EIID-AGA: PTS system, mannose/fructose/sorbose family, IID component', 292.75),
('TIGR00829', 'TIGR00829', 'FRU: PTS system, Fru family, IIB component', 76.85),
('TIGR00830', 'TIGR00830', 'PTBA: PTS system, glucose subfamily, IIA component', 97.50),
('TIGR00831', 'TIGR00831', 'a_cpa1: Na+/H+ antiporter', 279.60),
('TIGR00832', 'TIGR00832', 'acr3: arsenical-resistance protein', 282.80),
('TIGR00833', 'TIGR00833', 'actII: transport protein', 874.70),
('TIGR00834', 'TIGR00834', 'ae: anion exchange protein', 599.45),
('TIGR00835', 'TIGR00835', 'agcS: amino acid carrier protein', 272.65),
('TIGR00836', 'TIGR00836', 'amt: ammonium transporter', 343.30),
('TIGR00837', 'TIGR00837', 'araaP: aromatic amino acid transport protein', 350.00),
('TIGR00838', 'TIGR00838', 'argH: argininosuccinate lyase', 279.50),
('TIGR00839', 'TIGR00839', 'aspA: aspartate ammonia-lyase', 681.20),
('TIGR00840', 'TIGR00840', 'b_cpa1: sodium/hydrogen exchanger 3', 251.25),
('TIGR00841', 'TIGR00841', 'bass: bile acid transporter', 326.30),
('TIGR00842', 'TIGR00842', 'bcct: transporter, betaine/carnitine/choline transporter (BCCT) family', 407.55),
('TIGR00843', 'TIGR00843', 'benE: benzoate transporter', 203.40),
('TIGR00844', 'TIGR00844', 'c_cpa1: sodium/hydrogen antiporter', 1236.05),
('TIGR00845', 'TIGR00845', 'caca: sodium/calcium exchanger 1', 679.85),
('TIGR00846', 'TIGR00846', 'caca2: calcium/proton exchanger', 317.45),
('TIGR00847', 'TIGR00847', 'ccoS: cytochrome oxidase maturation protein, cbb3-type', 28.35),
('TIGR00848', 'TIGR00848', 'fruA: PTS system, fructose subfamily, IIA component', 103.50),
('TIGR00849', 'TIGR00849', 'gutA: PTS system, glucitol/sorbitol-specific IIA component', 189.55),
('TIGR00851', 'TIGR00851', 'mtlA: PTS system, mannitol-specific IIC component', 468.40),
('TIGR00852', 'TIGR00852', 'pts-Glc: PTS system, maltose and glucose-specific subfamily, IIC component', 291.10),
('TIGR00853', 'TIGR00853', 'pts-lac: PTS system, lactose/cellobiose family IIB component', 110.00),
('TIGR00854', 'TIGR00854', 'pts-sorbose: PTS system, mannose/fructose/sorbose family, IIB component', 163.60),
('TIGR00855', 'TIGR00855', 'L12: ribosomal protein bL12', 84.40),
('TIGR00856', 'TIGR00856', 'pyrC_dimer: dihydroorotase, homodimeric type', 292.95),
('TIGR00857', 'TIGR00857', 'pyrC_multi: dihydroorotase, multifunctional complex type', 279.05),
('TIGR00858', 'TIGR00858', 'bioF: 8-amino-7-oxononanoate synthase', 426.45),
('TIGR00859', 'TIGR00859', 'ENaC: sodium channel transporter', 428.00),
('TIGR00860', 'TIGR00860', 'LIC: cation transporter family protein', 280.20),
('TIGR00861', 'TIGR00861', 'MIP: MIP family channel proteins', 171.25),
('TIGR00862', 'TIGR00862', 'O-ClC: intracellular chloride channel protein', 358.95),
('TIGR00863', 'TIGR00863', 'P2X: cation transporter protein', 288.00),
('TIGR00864', 'TIGR00864', 'PCC: polycystin cation channel protein', 1861.40),
('TIGR00865', 'TIGR00865', 'bcl-2: apoptosis regulator', 283.35),
('TIGR00867', 'TIGR00867', 'deg-1: degenerin', 598.45),
('TIGR00868', 'TIGR00868', 'hCaCC: calcium-activated chloride channel protein 1', 900.85),
('TIGR00869', 'TIGR00869', 'sec62: protein translocation protein, Sec62 family', 166.65),
('TIGR00870', 'TIGR00870', 'trp: transient-receptor-potential calcium channel protein', 498.75),
('TIGR00871', 'TIGR00871', 'zwf: glucose-6-phosphate dehydrogenase', 400.60),
('TIGR00872', 'TIGR00872', 'gnd_rel: 6-phosphogluconate dehydrogenase (decarboxylating)', 297.20),
('TIGR00873', 'TIGR00873', 'gnd: 6-phosphogluconate dehydrogenase (decarboxylating)', 426.70),
('TIGR00874', 'TIGR00874', 'talAB: transaldolase', 396.20),
('TIGR00875', 'TIGR00875', 'fsa_talC_mipB: fructose-6-phosphate aldolase', 245.95),
('TIGR00876', 'TIGR00876', 'tal_mycobact: transaldolase', 233.75),
('TIGR00877', 'TIGR00877', 'purD: phosphoribosylamine--glycine ligase', 288.00),
('TIGR00878', 'TIGR00878', 'purM: phosphoribosylformylglycinamidine cyclo-ligase', 236.35),
('TIGR00879', 'TIGR00879', 'SP: MFS transporter, sugar porter (SP) family', 237.80),
('TIGR00880', 'TIGR00880', '2_A_01_02: multidrug resistance protein', 131.00),
('TIGR00881', 'TIGR00881', '2A0104: phosphoglycerate transporter family protein', 407.75),
('TIGR00882', 'TIGR00882', '2A0105: oligosaccharide:H+ symporter', 220.00),
('TIGR00883', 'TIGR00883', '2A0106: MFS transporter, metabolite:H+ symporter (MHS) family protein', 443.45),
('TIGR00884', 'TIGR00884', 'guaA_Cterm: GMP synthase (glutamine-hydrolyzing), C-terminal domain', 338.75),
('TIGR00885', 'TIGR00885', 'fucP: L-fucose:H+ symporter permease', 280.40),
('TIGR00886', 'TIGR00886', '2A0108: nitrite transporter', 311.70),
('TIGR00887', 'TIGR00887', '2A0109: phosphate:H+ symporter', 610.30),
('TIGR00888', 'TIGR00888', 'guaA_Nterm: GMP synthase (glutamine-hydrolyzing), N-terminal domain', 172.15),
('TIGR00889', 'TIGR00889', '2A0110: nucleoside transporter', 446.10),
('TIGR00890', 'TIGR00890', '2A0111: oxalate/formate antiporter family transporter', 374.85),
('TIGR00891', 'TIGR00891', '2A0112: MFS transporter, sialate:H+ symporter (SHS) family', 552.90),
('TIGR00892', 'TIGR00892', '2A0113: monocarboxylate transporter', 586.10),
('TIGR00893', 'TIGR00893', '2A0114: D-galactonate transporter', 395.00),
('TIGR00894', 'TIGR00894', '2A0114euk: Na(+)-dependent inorganic phosphate cotransporter', 626.45),
('TIGR00895', 'TIGR00895', '2A0115: MFS transporter, aromatic acid:H+ symporter (AAHS) family', 418.55),
('TIGR00896', 'TIGR00896', 'CynX: cyanate transporter', 406.00),
('TIGR00897', 'TIGR00897', '2A0118: polyol permease', 590.30),
('TIGR00898', 'TIGR00898', '2A0119: cation transport protein', 550.75),
('TIGR00899', 'TIGR00899', '2A0120: sugar efflux transporter', 522.30),
('TIGR00900', 'TIGR00900', '2A0121: H+ Antiporter protein', 319.60),
('TIGR00901', 'TIGR00901', '2A0125: AmpG-like permease', 370.80),
('TIGR00902', 'TIGR00902', '2A0127: MFS transporter, phenyl propionate permease (PPP) family', 698.90),
('TIGR00903', 'TIGR00903', '2A0129: major facilitator 4 family protein', 391.85),
('TIGR00904', 'TIGR00904', 'mreB: cell shape determining protein, MreB/Mrl family', 365.75),
('TIGR00905', 'TIGR00905', '2A0302: transporter, basic amino acid/polyamine antiporter (APA) family', 409.05),
('TIGR00906', 'TIGR00906', '2A0303: cationic amino acid transport permease', 681.70),
('TIGR00907', 'TIGR00907', '2A0304: amino acid permease', 598.30),
('TIGR00908', 'TIGR00908', '2A0305: ethanolamine permease', 381.75),
('TIGR00909', 'TIGR00909', '2A0306: amino acid transporter', 556.80),
('TIGR00910', 'TIGR00910', '2A0307_GadC: glutamate:gamma-aminobutyrate antiporter', 673.50),
('TIGR00911', 'TIGR00911', '2A0308: L-type amino acid transporter', 701.80),
('TIGR00912', 'TIGR00912', '2A0309: spore germination protein (amino acid permease)', 139.55),
('TIGR00913', 'TIGR00913', '2A0310: amino acid permease (yeast)', 578.70),
('TIGR00914', 'TIGR00914', '2A0601: heavy metal efflux pump, CzcA family', 701.45),
('TIGR00915', 'TIGR00915', '2A0602: RND transporter, hydrophobe/amphiphile efflux-1 (HAE1) family', 940.35),
('TIGR00916', 'TIGR00916', '2A0604s01: protein-export membrane protein, SecD/SecF family', 148.60),
('TIGR00917', 'TIGR00917', '2A060601: Niemann-Pick C type protein family', 1016.50),
('TIGR00918', 'TIGR00918', '2A060602: transmembrane receptor Patched', 1120.40),
('TIGR00920', 'TIGR00920', '2A060605: 3-hydroxy-3-methylglutaryl-coenzyme A reductase', 778.35),
('TIGR00921', 'TIGR00921', '2A067: efflux transporter, putative, hydrophobe/amphiphile efflux-3 (HAE3) family', 351.90),
('TIGR00922', 'TIGR00922', 'nusG: transcription termination/antitermination factor NusG', 135.70),
('TIGR00924', 'TIGR00924', 'yjdL_sub1_fam: amino acid/peptide transporter (Peptide:H+ symporter)', 130.20),
('TIGR00926', 'TIGR00926', '2A1704: oligopeptide transporter, peptide:H+ symporter', 821.60),
('TIGR00927', 'TIGR00927', '2A1904: K+-dependent Na+/Ca+ exchanger', 710.10),
('TIGR00928', 'TIGR00928', 'purB: adenylosuccinate lyase', 326.20),
('TIGR00929', 'TIGR00929', 'VirB4_CagE: type IV secretion/conjugal transfer ATPase, VirB4 family', 643.10),
('TIGR00930', 'TIGR00930', '2a30: K-Cl cotransporter', 953.40),
('TIGR00931', 'TIGR00931', 'antiport_nhaC: Na+/H+ antiporter NhaC', 370.00),
('TIGR00932', 'TIGR00932', '2a37: transporter, monovalent cation:proton antiporter-2 (CPA2) family', 238.30),
('TIGR00933', 'TIGR00933', '2a38: potassium uptake protein, TrkH family', 331.15),
('TIGR00934', 'TIGR00934', '2a38euk: potassium uptake protein, Trk family', 441.90),
('TIGR00935', 'TIGR00935', '2a45: arsenite/antimonite efflux pump membrane protein', 415.00),
('TIGR00936', 'TIGR00936', 'ahcY: adenosylhomocysteinase', 497.60),
('TIGR00937', 'TIGR00937', '2A51: chromate efflux transporter', 171.70),
('TIGR00938', 'TIGR00938', 'thrB_alt: homoserine kinase', 255.90),
('TIGR00939', 'TIGR00939', '2a57: nucleoside Transporter', 297.50),
('TIGR00940', 'TIGR00940', '2a6301s01: monovalent cation:proton antiporter', 920.45),
('TIGR00941', 'TIGR00941', '2a6301s03: multicomponent Na+:H+ antiporter, MnhC subunit', 161.20),
('TIGR00942', 'TIGR00942', '2a6301s05: multicomponent Na+:H+ antiporter', 212.25),
('TIGR00943', 'TIGR00943', '2a6301s02: monovalent cation:proton antiporter', 139.75),
('TIGR00944', 'TIGR00944', '2a6301s04: multicomponent K+:H+antiporter', 692.00),
('TIGR00945', 'TIGR00945', 'tatC: twin arginine-targeting protein translocase TatC', 132.70),
('TIGR00946', 'TIGR00946', '2a69: auxin efflux carrier', 246.05),
('TIGR00947', 'TIGR00947', '2A73: putative bicarbonate transporter, IctB family', 366.40),
('TIGR00948', 'TIGR00948', '2a75: L-lysine exporter', 213.65),
('TIGR00949', 'TIGR00949', '2A76: homoserine/Threonine efflux protein', 183.95),
('TIGR00950', 'TIGR00950', '2A78: carboxylate/amino acid/amine transporter', 230.20),
('TIGR00951', 'TIGR00951', '2A43: lysosomal Cystine Transporter', 192.35),
('TIGR00952', 'TIGR00952', 'S15_bact: ribosomal protein uS15', 63.65),
('TIGR00954', 'TIGR00954', '3a01203: peroxysomal long chain fatty acyl transporter', 918.90),
('TIGR00955', 'TIGR00955', '3a01204: pigment precursor permease', 736.35),
('TIGR00956', 'TIGR00956', '3a01205: pleiotropic drug resistance family protein', 1959.00),
('TIGR00957', 'TIGR00957', 'MRP_assoc_pro: multi drug resistance-associated protein (MRP)', 1470.00),
('TIGR00958', 'TIGR00958', '3a01208: antigen peptide transporter 2', 874.60),
('TIGR00959', 'TIGR00959', 'ffh: signal recognition particle protein', 473.20),
('TIGR00962', 'TIGR00962', 'atpA: ATP synthase F1, alpha subunit', 484.45),
('TIGR00963', 'TIGR00963', 'secA: preprotein translocase, SecA subunit', 800.00),
('TIGR00964', 'TIGR00964', 'secE_bact: preprotein translocase, SecE subunit', 27.55),
('TIGR00965', 'TIGR00965', 'dapD: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase', 375.40),
('TIGR00966', 'TIGR00966', '3a0501s07: protein-export membrane protein SecF', 164.90),
('TIGR00967', 'TIGR00967', '3a0501s007: preprotein translocase, SecY subunit', 253.60),
('TIGR00968', 'TIGR00968', '3a0106s01: sulfate ABC transporter, ATP-binding protein', 342.75),
('TIGR00969', 'TIGR00969', '3a0106s02: sulfate ABC transporter, permease protein', 240.00),
('TIGR00970', 'TIGR00970', 'leuA_yeast: 2-isopropylmalate synthase', 697.40),
('TIGR00971', 'TIGR00971', '3a0106s03: sulfate ABC transporter, sulfate-binding protein', 155.50),
('TIGR00972', 'TIGR00972', '3a0107s01c2: phosphate ABC transporter, ATP-binding protein', 343.20),
('TIGR00973', 'TIGR00973', 'leuA_bact: 2-isopropylmalate synthase', 598.70),
('TIGR00974', 'TIGR00974', '3a0107s02c: phosphate ABC transporter, permease protein PstA', 193.45),
('TIGR00975', 'TIGR00975', '3a0107s03: phosphate ABC transporter, phosphate-binding protein PstS', 205.00),
('TIGR00976', 'TIGR00976', '/NonD: hydrolase CocE/NonD family protein', 66.30),
('TIGR00977', 'TIGR00977', 'citramal_synth: citramalate synthase', 450.00),
('TIGR00978', 'TIGR00978', 'asd_EA: aspartate-semialdehyde dehydrogenase', 301.20),
('TIGR00979', 'TIGR00979', 'fumC_II: fumarate hydratase, class II', 664.75),
('TIGR00980', 'TIGR00980', '3a0801so1tim17: mitochondrial import inner membrane translocase subunit tim17', 251.05),
('TIGR00981', 'TIGR00981', 'rpsL_bact: ribosomal protein uS12', 112.95),
('TIGR00982', 'TIGR00982', 'uS12_E_A: ribosomal protein uS12', 140.20),
('TIGR00983', 'TIGR00983', '3a0801s02tim23: mitochondrial import inner membrane translocase subunit', 181.70),
('TIGR00984', 'TIGR00984', '3a0801s03tim44: mitochondrial import inner membrane, translocase subunit', 552.35),
('TIGR00985', 'TIGR00985', '3a0801s04tom: mitochondrial import receptor subunit', 163.55),
('TIGR00986', 'TIGR00986', '3a0801s05tom22: mitochondrial import receptor subunit', 193.20),
('TIGR00987', 'TIGR00987', 'himA: integration host factor, alpha subunit', 120.25),
('TIGR00988', 'TIGR00988', 'hip: integration host factor, beta subunit', 119.95),
('TIGR00989', 'TIGR00989', '3a0801s07tom40: mitochondrial import receptor subunit', 271.85),
('TIGR00990', 'TIGR00990', '3a0801s09: mitochondrial precursor proteins import receptor', 757.25),
('TIGR00991', 'TIGR00991', '3a0901s02IAP34: GTP-binding protein', 421.55),
('TIGR00992', 'TIGR00992', '3a0901s03IAP75: chloroplast envelope protein translocase, IAP75 family', 1163.25),
('TIGR00993', 'TIGR00993', '3a0901s04IAP86: chloroplast protein import component Toc86/159, G and M domains', 660.70),
('TIGR00994', 'TIGR00994', '3a0901s05TIC20: chloroplast protein import component, Tic20 family', 341.15),
('TIGR00995', 'TIGR00995', '3a0901s06TIC22: chloroplast protein import component, Tic22 family', 413.15),
('TIGR00996', 'TIGR00996', 'Mtu_fam_mce: virulence factor Mce family protein', 140.50),
('TIGR00997', 'TIGR00997', 'ispZ: intracellular septation protein A', 165.20),
('TIGR00998', 'TIGR00998', '8a0101: efflux pump membrane protein', 390.80),
('TIGR00999', 'TIGR00999', '8a0102: membrane fusion protein cluster 2 protein', 319.30),
('TIGR01000', 'TIGR01000', 'bacteriocin_acc: bacteriocin secretion accessory protein', 258.85),
('TIGR01001', 'TIGR01001', 'metA: homoserine O-succinyltransferase', 315.40),
('TIGR01002', 'TIGR01002', 'hlyII: beta-channel forming cytolysin', 245.60),
('TIGR01003', 'TIGR01003', 'PTS_HPr_family: phosphocarrier, HPr family', 47.90),
('TIGR01004', 'TIGR01004', 'PulS_OutS: lipoprotein, PulS/OutS family', 130.10),
('TIGR01005', 'TIGR01005', 'eps_transp_fam: exopolysaccharide transport protein family', 411.70),
('TIGR01006', 'TIGR01006', 'polys_exp_MPA1: polysaccharide export protein, MPA1 family', 296.00),
('TIGR01007', 'TIGR01007', 'eps_fam: capsular exopolysaccharide family', 108.05),
('TIGR01008', 'TIGR01008', 'uS3_euk_arch: ribosomal protein uS3', 150.25),
('TIGR01009', 'TIGR01009', 'rpsC_bact: ribosomal protein uS3', 114.50),
('TIGR01010', 'TIGR01010', 'BexC_CtrB_KpsE: polysaccharide export inner-membrane protein, BexC/CtrB/KpsE family', 437.50),
('TIGR01011', 'TIGR01011', 'rpsB_bact: ribosomal protein uS2', 76.30),
('TIGR01012', 'TIGR01012', 'uS2_euk_arch: ribosomal protein uS2', 211.50),
('TIGR01013', 'TIGR01013', '2a58: sodium-dependent inorganic phosphate (Pi) transporter', 306.15),
('TIGR01015', 'TIGR01015', 'hmgA: homogentisate 1,2-dioxygenase', 510.75),
('TIGR01016', 'TIGR01016', 'sucCoAbeta: succinate-CoA ligase, beta subunit', 375.55),
('TIGR01017', 'TIGR01017', 'rpsD_bact: ribosomal protein uS4', 177.20),
('TIGR01018', 'TIGR01018', 'uS4_arch: ribosomal protein uS4', 82.25),
('TIGR01019', 'TIGR01019', 'sucCoAalpha: succinate-CoA ligase, alpha subunit', 353.20),
('TIGR01020', 'TIGR01020', 'uS5_euk_arch: ribosomal protein uS5', 181.65),
('TIGR01021', 'TIGR01021', 'rpsE_bact: ribosomal protein uS5', 164.05),
('TIGR01022', 'TIGR01022', 'rpmJ_bact: ribosomal protein bL36', 22.70),
('TIGR01023', 'TIGR01023', 'rpmG_bact: ribosomal protein bL33', 23.95),
('TIGR01024', 'TIGR01024', 'rplS_bact: ribosomal protein bL19', 90.70),
('TIGR01025', 'TIGR01025', 'uS19_arch: ribosomal protein uS19', 139.00),
('TIGR01026', 'TIGR01026', 'fliI_yscN: ATPase, FliI/YscN family', 379.50),
('TIGR01027', 'TIGR01027', 'proB: glutamate 5-kinase', 186.00),
('TIGR01028', 'TIGR01028', 'uS7_euk_arch: ribosomal protein uS7', 200.00),
('TIGR01029', 'TIGR01029', 'rpsG_bact: ribosomal protein uS7', 135.85),
('TIGR01030', 'TIGR01030', 'rpmH_bact: ribosomal protein bL34', 37.65),
('TIGR01031', 'TIGR01031', 'rpmF_bact: ribosomal protein bL32', 22.60),