-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest.roary
2257 lines (2257 loc) · 546 KB
/
test.roary
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
"Gene","Non-unique Gene name","Annotation","No. isolates","No. sequences","Avg sequences per isolate","Genome Fragment","Order within Fragment","Accessory Fragment","Accessory Order with Fragment","QC","Min group size nuc","Max group size nuc","Avg group size nuc","NC_004829","NC_017502","NC_017503","NC_018406","NC_018407","NC_018408","NC_018409","NC_018410","NC_018411","NC_018412","NC_018413","NC_023030"
"group_110","","hypothetical protein","12","12","1","1","697","","","","221","221","221","NC_004829_00247","NC_017502_00246","NC_017503_00238","NC_018406_00244","NC_018407_00245","NC_018408_00244","NC_018409_00245","NC_018410_00243","NC_018411_00245","NC_018412_00244","NC_018413_00243","NC_023030_00253"
"group_116","","hypothetical protein","12","12","1","1","1572","","","","221","278","268","NC_004829_01099","NC_017502_01100","NC_017503_00748","NC_018406_00824","NC_018407_00801","NC_018408_00841","NC_018409_00808","NC_018410_00781","NC_018411_00790","NC_018412_00832","NC_018413_00786","NC_023030_01023"
"dnaJ_4","","hypothetical protein","12","12","1","1","1349","","","","251","1022","399","NC_004829_00707","NC_017502_00707","NC_017503_01124","NC_018406_00661","NC_018407_00639","NC_018408_00639","NC_018409_00645","NC_018410_00618","NC_018411_00627","NC_018412_00629","NC_018413_00624","NC_023030_00659"
"group_139","","hypothetical protein","12","12","1","1","709","","","","179","287","260","NC_004829_00237","NC_017502_00236","NC_017503_00227","NC_018406_00233","NC_018407_00234","NC_018408_00233","NC_018409_00234","NC_018410_00232","NC_018411_00234","NC_018412_00233","NC_018413_00232","NC_023030_00241"
"group_140","","hypothetical protein","12","12","1","1","721","","","","287","287","287","NC_004829_00234","NC_017502_00233","NC_017503_00224","NC_018406_00225","NC_018407_00226","NC_018408_00225","NC_018409_00225","NC_018410_00224","NC_018411_00226","NC_018412_00225","NC_018413_00224","NC_023030_00233"
"group_145","","putative ABC transporter ATP-binding protein","12","12","1","1","917","","","","584","995","846","NC_004829_00009","NC_017502_00009","NC_017503_00009","NC_018406_00009","NC_018407_00009","NC_018408_00009","NC_018409_00009","NC_018410_00009","NC_018411_00009","NC_018412_00009","NC_018413_00009","NC_023030_00008"
"group_150","","hypothetical protein","12","12","1","1","2216","","","","785","785","785","NC_004829_00822","NC_017502_00824","NC_017503_01008","NC_018406_00772","NC_018407_00749","NC_018408_00750","NC_018409_00756","NC_018410_00729","NC_018411_00737","NC_018412_00740","NC_018413_00734","NC_023030_00778"
"group_1511","","hypothetical protein","12","12","1","1","2167","","","","245","245","245","NC_004829_01212","NC_017502_01214","NC_017503_00636","NC_018406_01131","NC_018407_01108","NC_018408_01157","NC_018409_01123","NC_018410_01082","NC_018411_01103","NC_018412_01138","NC_018413_01092","NC_023030_01184"
"rpsL","","30S ribosomal protein S12","12","12","1","1","2197","","","","425","425","425","NC_004829_01244","NC_017502_01245","NC_017503_00608","NC_018406_01162","NC_018407_01139","NC_018408_01189","NC_018409_01155","NC_018410_01113","NC_018411_01134","NC_018412_01170","NC_018413_01123","NC_023030_01212"
"group_1513","","hypothetical protein","12","12","1","1","314","","","","131","131","131","NC_004829_01504","NC_017502_01504","NC_017503_01438","NC_018406_01429","NC_018407_01408","NC_018408_01456","NC_018409_01423","NC_018410_01378","NC_018411_01400","NC_018412_01437","NC_018413_01380","NC_023030_01474"
"gyrB_2","","DNA gyrase subunit B","12","12","1","1","147","","","","911","911","911","NC_004829_01672","NC_017502_01674","NC_017503_01604","NC_018406_01580","NC_018407_01558","NC_018408_01606","NC_018409_01574","NC_018410_01528","NC_018411_01531","NC_018412_01587","NC_018413_01511","NC_023030_01643"
"der_3","","GTPase Der","12","12","1","1","1096","","","","137","137","137","NC_004829_00341","NC_017502_00339","NC_017503_00333","NC_018406_00383","NC_018407_00362","NC_018408_00361","NC_018409_00362","NC_018410_00349","NC_018411_00350","NC_018412_00350","NC_018413_00348","NC_023030_00348"
"rpsG_1","","30S ribosomal protein S7","12","12","1","1","2195","","","","125","125","125","NC_004829_01242","NC_017502_01243","NC_017503_00610","NC_018406_01160","NC_018407_01137","NC_018408_01187","NC_018409_01153","NC_018410_01111","NC_018411_01132","NC_018412_01168","NC_018413_01121","NC_023030_01210"
"group_1517","","hypothetical protein","12","12","1","1","10","","","","143","143","143","NC_004829_00780","NC_017502_00781","NC_017503_01053","NC_018406_00729","NC_018407_00706","NC_018408_00707","NC_018409_00713","NC_018410_00686","NC_018411_00694","NC_018412_00697","NC_018413_00691","NC_023030_00737"
"group_1518","","hypothetical protein","12","12","1","1","159","","","","254","254","254","NC_004829_01660","NC_017502_01662","NC_017503_01591","NC_018406_01567","NC_018407_01546","NC_018408_01594","NC_018409_01562","NC_018410_01516","NC_018411_01519","NC_018412_01575","NC_018413_01499","NC_023030_01631"
"group_1519","","hypothetical protein","12","12","1","1","1261","","","","149","149","149","NC_004829_01151","NC_017502_01152","NC_017503_00696","NC_018406_01072","NC_018407_01049","NC_018408_01089","NC_018409_01064","NC_018410_01022","NC_018411_01044","NC_018412_01079","NC_018413_01033","NC_023030_01124"
"group_152","","hypothetical protein","12","12","1","1","2154","","","","200","275","206","NC_004829_00865","NC_017502_00866","NC_017503_01005","NC_018406_00776","NC_018407_00753","NC_018408_00793","NC_018409_00760","NC_018410_00733","NC_018411_00741","NC_018412_00783","NC_018413_00738","NC_023030_00806"
"rpoB_1","","DNA-directed RNA polymerase subunit beta","12","12","1","1","611","","","","860","860","860","NC_004829_00534","NC_017502_00533","NC_017503_01292","NC_018406_00528","NC_018407_00506","NC_018408_00506","NC_018409_00511","NC_018410_00486","NC_018411_00493","NC_018412_00495","NC_018413_00490","NC_023030_00490"
"parE_3","","DNA topoisomerase 4 subunit B","12","12","1","1","144","","","","131","131","131","NC_004829_01675","NC_017502_01677","NC_017503_01607","NC_018406_01583","NC_018407_01561","NC_018408_01609","NC_018409_01577","NC_018410_01531","NC_018411_01534","NC_018412_01590","NC_018413_01514","NC_023030_01646"
"group_1522","","hypothetical protein","12","12","1","1","1318","","","","275","275","275","NC_004829_00677","NC_017502_00677","NC_017503_01154","NC_018406_00629","NC_018407_00607","NC_018408_00608","NC_018409_00613","NC_018410_00586","NC_018411_00595","NC_018412_00597","NC_018413_00592","NC_023030_00627"
"group_1523","","hypothetical protein","12","12","1","1","944","","","","134","134","134","NC_004829_00039","NC_017502_00039","NC_017503_00039","NC_018406_00039","NC_018407_00039","NC_018408_00039","NC_018409_00039","NC_018410_00039","NC_018411_00039","NC_018412_00039","NC_018413_00039","NC_023030_00038"
"rpsM","","30S ribosomal protein S13","12","12","1","1","361","","","","374","374","374","NC_004829_01453","NC_017502_01453","NC_017503_01389","NC_018406_01381","NC_018407_01358","NC_018408_01408","NC_018409_01374","NC_018410_01329","NC_018411_01351","NC_018412_01388","NC_018413_01331","NC_023030_01424"
"group_1525","","hypothetical protein","12","12","1","1","222","","","","140","140","140","NC_004829_01596","NC_017502_01598","NC_017503_01528","NC_018406_01505","NC_018407_01484","NC_018408_01532","NC_018409_01500","NC_018410_01454","NC_018411_01457","NC_018412_01513","NC_018413_01437","NC_023030_01566"
"group_1526","","hypothetical protein","12","12","1","1","2235","","","","209","209","209","NC_004829_00809","NC_017502_00811","NC_017503_01024","NC_018406_00760","NC_018407_00737","NC_018408_00738","NC_018409_00744","NC_018410_00717","NC_018411_00725","NC_018412_00728","NC_018413_00722","NC_023030_00766"
"argS_2","","Arginine--tRNA ligase","12","12","1","1","928","","","","131","131","131","NC_004829_00021","NC_017502_00021","NC_017503_00021","NC_018406_00021","NC_018407_00021","NC_018408_00021","NC_018409_00021","NC_018410_00021","NC_018411_00021","NC_018412_00021","NC_018413_00021","NC_023030_00019"
"group_1528","","Membrane-associated lipoprotein","12","12","1","1","310","","","","128","128","128","NC_004829_01510","NC_017502_01510","NC_017503_01443","NC_018406_01435","NC_018407_01414","NC_018408_01462","NC_018409_01429","NC_018410_01384","NC_018411_01406","NC_018412_01443","NC_018413_01386","NC_023030_01479"
"group_1529","","hypothetical protein","12","12","1","1","1101","","","","173","173","173","NC_004829_00346","NC_017502_00344","NC_017503_00338","NC_018406_00388","NC_018407_00367","NC_018408_00366","NC_018409_00367","NC_018410_00354","NC_018411_00355","NC_018412_00355","NC_018413_00353","NC_023030_00353"
"group_1530","","hypothetical protein","12","12","1","1","1291","","","","170","170","170","NC_004829_01123","NC_017502_01124","NC_017503_00724","NC_018406_01044","NC_018407_01021","NC_018408_01061","NC_018409_01036","NC_018410_00994","NC_018411_01016","NC_018412_01051","NC_018413_01005","NC_023030_01092"
"group_1531","","hypothetical protein","12","12","1","1","1400","","","","149","149","149","NC_004829_00742","NC_017502_00743","NC_017503_01092","NC_018406_00693","NC_018407_00670","NC_018408_00671","NC_018409_00677","NC_018410_00650","NC_018411_00658","NC_018412_00661","NC_018413_00655","NC_023030_00699"
"group_1532","","hypothetical protein","12","12","1","1","1321","","","","398","398","398","NC_004829_00680","NC_017502_00680","NC_017503_01151","NC_018406_00632","NC_018407_00610","NC_018408_00611","NC_018409_00616","NC_018410_00589","NC_018411_00598","NC_018412_00600","NC_018413_00595","NC_023030_00630"
"rplC_2","","50S ribosomal protein L3","12","12","1","1","839","","","","278","278","278","NC_004829_00110","NC_017502_00110","NC_017503_00108","NC_018406_00110","NC_018407_00111","NC_018408_00110","NC_018409_00110","NC_018410_00110","NC_018411_00110","NC_018412_00110","NC_018413_00110","NC_023030_00111"
"pepA_1","","Cytosol aminopeptidase","12","12","1","1","1473","","","","227","227","227","NC_004829_01061","NC_017502_01062","NC_017503_00788","NC_018406_00990","NC_018407_00967","NC_018408_01007","NC_018409_00982","NC_018410_00940","NC_018411_00962","NC_018412_00997","NC_018413_00951","NC_023030_01032"
"group_1535","","hypothetical protein","12","12","1","1","1011","","","","302","302","302","NC_004829_00319","NC_017502_00317","NC_017503_00311","NC_018406_00318","NC_018407_00319","NC_018408_00318","NC_018409_00319","NC_018410_00317","NC_018411_00318","NC_018412_00318","NC_018413_00316","NC_023030_00327"
"group_1536","","hypothetical protein","12","12","1","1","2019","","","","122","122","122","NC_004829_01328","NC_017502_01329","NC_017503_00486","NC_018406_01250","NC_018407_01227","NC_018408_01277","NC_018409_01243","NC_018410_01201","NC_018411_01223","NC_018412_01258","NC_018413_01211","NC_023030_01303"
"der_1","","GTPase Der","12","12","1","1","1094","","","","296","296","296","NC_004829_00339","NC_017502_00337","NC_017503_00331","NC_018406_00381","NC_018407_00360","NC_018408_00359","NC_018409_00360","NC_018410_00347","NC_018411_00348","NC_018412_00348","NC_018413_00346","NC_023030_00346"
"araP","","L-arabinose transport system permease protein AraP","12","12","1","1","874","","","","395","395","395","NC_004829_00074","NC_017502_00074","NC_017503_00072","NC_018406_00075","NC_018407_00075","NC_018408_00075","NC_018409_00075","NC_018410_00075","NC_018411_00075","NC_018412_00075","NC_018413_00075","NC_023030_00077"
"gsiA","","Glutathione import ATP-binding protein GsiA","12","12","1","1","1230","","","","275","275","275","NC_004829_01186","NC_017502_01187","NC_017503_00661","NC_018406_01105","NC_018407_01082","NC_018408_01122","NC_018409_01097","NC_018410_01055","NC_018411_01077","NC_018412_01112","NC_018413_01066","NC_023030_01158"
"group_1540","","hypothetical protein","12","12","1","1","2165","","","","203","203","203","NC_004829_01210","NC_017502_01211","NC_017503_00638","NC_018406_01129","NC_018407_01106","NC_018408_01155","NC_018409_01121","NC_018410_01080","NC_018411_01101","NC_018412_01136","NC_018413_01090","NC_023030_01181"
"group_1541","","hypothetical protein","12","12","1","1","739","","","","365","365","365","NC_004829_00214","NC_017502_00213","NC_017503_00205","NC_018406_00210","NC_018407_00211","NC_018408_00210","NC_018409_00210","NC_018410_00209","NC_018411_00211","NC_018412_00210","NC_018413_00209","NC_023030_00212"
"group_1542","","hypothetical protein","12","12","1","1","1283","","","","134","134","134","NC_004829_01131","NC_017502_01132","NC_017503_00716","NC_018406_01052","NC_018407_01029","NC_018408_01069","NC_018409_01044","NC_018410_01002","NC_018411_01024","NC_018412_01059","NC_018413_01013","NC_023030_01100"
"lpd","","Dihydrolipoyl dehydrogenase","12","12","1","1","1298","","","","242","242","242","NC_004829_01116","NC_017502_01117","NC_017503_00731","NC_018406_01037","NC_018407_01014","NC_018408_01054","NC_018409_01029","NC_018410_00987","NC_018411_01009","NC_018412_01044","NC_018413_00998","NC_023030_01085"
"group_1544","","hypothetical protein","12","12","1","1","1356","","","","1106","1106","1106","NC_004829_00715","NC_017502_00716","NC_017503_01116","NC_018406_00669","NC_018407_00647","NC_018408_00648","NC_018409_00654","NC_018410_00627","NC_018411_00635","NC_018412_00638","NC_018413_00632","NC_023030_00667"
"group_1545","","hypothetical protein","12","12","1","1","2190","","","","143","143","143","NC_004829_01236","NC_017502_01238","NC_017503_00615","NC_018406_01155","NC_018407_01132","NC_018408_01182","NC_018409_01148","NC_018410_01106","NC_018411_01127","NC_018412_01163","NC_018413_01116","NC_023030_01205"
"group_1546","","hypothetical protein","12","12","1","1","976","","","","143","143","143","NC_004829_00274","NC_017502_00273","NC_017503_00266","NC_018406_00272","NC_018407_00273","NC_018408_00272","NC_018409_00273","NC_018410_00271","NC_018411_00272","NC_018412_00272","NC_018413_00270","NC_023030_00283"
"ydcV","","Inner membrane ABC transporter permease protein YdcV","12","12","1","1","1578","","","","323","323","323","NC_004829_01086","NC_017502_01087","NC_017503_00760","NC_018406_01015","NC_018407_00992","NC_018408_01032","NC_018409_01007","NC_018410_00965","NC_018411_00987","NC_018412_01022","NC_018413_00976","NC_023030_01060"
"group_1548","","hypothetical protein","12","12","1","1","387","","","","158","158","158","NC_004829_01426","NC_017502_01426","NC_017503_01362","NC_018406_01354","NC_018407_01331","NC_018408_01381","NC_018409_01347","NC_018410_01302","NC_018411_01324","NC_018412_01361","NC_018413_01304","NC_023030_01397"
"uvrA_1","","UvrABC system protein A","12","12","1","1","785","","","","359","359","359","NC_004829_00169","NC_017502_00169","NC_017503_00167","NC_018406_00170","NC_018407_00171","NC_018408_00170","NC_018409_00170","NC_018410_00170","NC_018411_00170","NC_018412_00170","NC_018413_00170","NC_023030_00172"
"group_155","","hypothetical protein","12","12","1","1","2192","","","","518","1148","1032","NC_004829_01239","NC_017502_01240","NC_017503_00613","NC_018406_01157","NC_018407_01134","NC_018408_01184","NC_018409_01150","NC_018410_01108","NC_018411_01129","NC_018412_01165","NC_018413_01118","NC_023030_01207"
"group_1550","","hypothetical protein","12","12","1","1","1293","","","","161","161","161","NC_004829_01121","NC_017502_01122","NC_017503_00726","NC_018406_01042","NC_018407_01019","NC_018408_01059","NC_018409_01034","NC_018410_00992","NC_018411_01014","NC_018412_01049","NC_018413_01003","NC_023030_01090"
"group_1551","","hypothetical protein","12","12","1","1","2108","","","","170","170","170","NC_004829_00882","NC_017502_00883","NC_017503_00958","NC_018406_00792","NC_018407_00769","NC_018408_00809","NC_018409_00776","NC_018410_00749","NC_018411_00758","NC_018412_00800","NC_018413_00754","NC_023030_00825"
"hpt","","Hypoxanthine-guanine phosphoribosyltransferase","12","12","1","1","893","","","","425","425","425","NC_004829_00053","NC_017502_00053","NC_017503_00053","NC_018406_00055","NC_018407_00055","NC_018408_00055","NC_018409_00055","NC_018410_00055","NC_018411_00055","NC_018412_00055","NC_018413_00055","NC_023030_00056"
"eno_2","","Enolase","12","12","1","1","1246","","","","191","191","191","NC_004829_01169","NC_017502_01170","NC_017503_00678","NC_018406_01088","NC_018407_01065","NC_018408_01105","NC_018409_01080","NC_018410_01038","NC_018411_01060","NC_018412_01095","NC_018413_01049","NC_023030_01140"
"asnS_2","","Asparagine--tRNA ligase","12","12","1","1","537","","","","344","344","344","NC_004829_00609","NC_017502_00608","NC_017503_01217","NC_018406_00602","NC_018407_00580","NC_018408_00580","NC_018409_00585","NC_018410_00560","NC_018411_00567","NC_018412_00569","NC_018413_00564","NC_023030_00566"
"clpB_1","","Chaperone protein ClpB","12","12","1","1","1272","","","","272","272","272","NC_004829_01141","NC_017502_01142","NC_017503_00706","NC_018406_01062","NC_018407_01039","NC_018408_01079","NC_018409_01054","NC_018410_01012","NC_018411_01034","NC_018412_01069","NC_018413_01023","NC_023030_01113"
"group_1558","","hypothetical protein","12","12","1","1","1181","","","","239","239","239","NC_004829_00435","NC_017502_00433","NC_017503_00420","NC_018406_00470","NC_018407_00449","NC_018408_00449","NC_018409_00449","NC_018410_00436","NC_018411_00437","NC_018412_00438","NC_018413_00435","NC_023030_00433"
"group_1559","","hypothetical protein","12","12","1","1","173","","","","194","194","194","NC_004829_01645","NC_017502_01647","NC_017503_01577","NC_018406_01553","NC_018407_01532","NC_018408_01580","NC_018409_01548","NC_018410_01502","NC_018411_01505","NC_018412_01561","NC_018413_01485","NC_023030_01617"
"group_156","","hypothetical protein","12","12","1","1","322","","","","968","1589","1433","NC_004829_01494","NC_017502_01494","NC_017503_01430","NC_018406_01421","NC_018407_01399","NC_018408_01448","NC_018409_01415","NC_018410_01370","NC_018411_01392","NC_018412_01429","NC_018413_01372","NC_023030_01465"
"pepE","","Aminopeptidase E","12","12","1","1","1500","","","","686","686","686","NC_004829_01045","NC_017502_01046","NC_017503_00808","NC_018406_00974","NC_018407_00951","NC_018408_00991","NC_018409_00966","NC_018410_00924","NC_018411_00946","NC_018412_00981","NC_018413_00935","NC_023030_01012"
"acpA","","Acyl carrier protein","12","12","1","1","576","","","","233","233","233","NC_004829_00565","NC_017502_00564","NC_017503_01259","NC_018406_00561","NC_018407_00539","NC_018408_00539","NC_018409_00544","NC_018410_00519","NC_018411_00526","NC_018412_00528","NC_018413_00523","NC_023030_00523"
"pdp_3","","Pyrimidine-nucleoside phosphorylase","12","12","1","1","2038","","","","137","137","137","NC_004829_01347","NC_017502_01348","NC_017503_00467","NC_018406_01268","NC_018407_01245","NC_018408_01295","NC_018409_01261","NC_018410_01219","NC_018411_01241","NC_018412_01276","NC_018413_01229","NC_023030_01322"
"miaA_1","","tRNA dimethylallyltransferase","12","12","1","1","1111","","","","221","221","221","NC_004829_00371","NC_017502_00369","NC_017503_00359","NC_018406_00408","NC_018407_00387","NC_018408_00386","NC_018409_00387","NC_018410_00374","NC_018411_00375","NC_018412_00375","NC_018413_00373","NC_023030_00373"
"group_1564","","hypothetical protein","12","12","1","1","192","","","","161","161","161","NC_004829_01623","NC_017502_01625","NC_017503_01554","NC_018406_01530","NC_018407_01509","NC_018408_01557","NC_018409_01525","NC_018410_01479","NC_018411_01482","NC_018412_01538","NC_018413_01462","NC_023030_01595"
"group_1565","","hypothetical protein","12","12","1","1","414","","","","278","278","278","NC_004829_01399","NC_017502_01399","NC_017503_01335","NC_018406_01327","NC_018407_01304","NC_018408_01354","NC_018409_01319","NC_018410_01275","NC_018411_01297","NC_018412_01334","NC_018413_01277","NC_023030_01369"
"group_1566","","hypothetical protein","12","12","1","1","1398","","","","449","449","449","NC_004829_00744","NC_017502_00745","NC_017503_01090","NC_018406_00695","NC_018407_00672","NC_018408_00673","NC_018409_00679","NC_018410_00652","NC_018411_00660","NC_018412_00663","NC_018413_00657","NC_023030_00701"
"group_1567","","hypothetical protein","12","12","1","1","774","","","","206","206","206","NC_004829_00181","NC_017502_00181","NC_017503_00179","NC_018406_00182","NC_018407_00183","NC_018408_00182","NC_018409_00182","NC_018410_00182","NC_018411_00182","NC_018412_00182","NC_018413_00182","NC_023030_00184"
"group_1568","","hypothetical protein","12","12","1","1","1260","","","","131","131","131","NC_004829_01152","NC_017502_01153","NC_017503_00695","NC_018406_01073","NC_018407_01050","NC_018408_01090","NC_018409_01065","NC_018410_01023","NC_018411_01045","NC_018412_01080","NC_018413_01034","NC_023030_01125"
"group_1569","","Aminopeptidase","12","12","1","1","1504","","","","284","284","284","NC_004829_01049","NC_017502_01050","NC_017503_00804","NC_018406_00978","NC_018407_00955","NC_018408_00995","NC_018409_00970","NC_018410_00928","NC_018411_00950","NC_018412_00985","NC_018413_00939","NC_023030_01016"
"tuf_2","","Elongation factor Tu","12","12","1","1","574","","","","608","608","608","NC_004829_00568","NC_017502_00567","NC_017503_01256","NC_018406_00564","NC_018407_00542","NC_018408_00542","NC_018409_00547","NC_018410_00522","NC_018411_00529","NC_018412_00531","NC_018413_00526","NC_023030_00526"
"rnr_1","","Ribonuclease R","12","12","1","1","1460","","","","218","218","218","NC_004829_01072","NC_017502_01073","NC_017503_00774","NC_018406_01001","NC_018407_00978","NC_018408_01018","NC_018409_00993","NC_018410_00951","NC_018411_00973","NC_018412_01008","NC_018413_00962","NC_023030_01045"
"group_1572","","hypothetical protein","12","12","1","1","7","","","","182","182","182","NC_004829_00775","NC_017502_00776","NC_017503_01058","NC_018406_00725","NC_018407_00702","NC_018408_00703","NC_018409_00709","NC_018410_00682","NC_018411_00690","NC_018412_00693","NC_018413_00687","NC_023030_00732"
"rpoD","","RNA polymerase sigma factor RpoD","12","12","1","1","1539","","","","143","143","143","NC_004829_00934","NC_017502_00935","NC_017503_00904","NC_018406_00848","NC_018407_00825","NC_018408_00865","NC_018409_00832","NC_018410_00805","NC_018411_00814","NC_018412_00856","NC_018413_00810","NC_023030_00877"
"smc_1","","Chromosome partition protein Smc","12","12","1","1","1115","","","","140","140","140","NC_004829_00375","NC_017502_00373","NC_017503_00363","NC_018406_00412","NC_018407_00391","NC_018408_00390","NC_018409_00391","NC_018410_00378","NC_018411_00379","NC_018412_00379","NC_018413_00377","NC_023030_00377"
"recR","","Recombination protein RecR","12","12","1","1","413","","","","335","335","335","NC_004829_01400","NC_017502_01400","NC_017503_01336","NC_018406_01328","NC_018407_01305","NC_018408_01355","NC_018409_01320","NC_018410_01276","NC_018411_01298","NC_018412_01335","NC_018413_01278","NC_023030_01370"
"group_1576","","hypothetical protein","12","12","1","1","174","","","","284","284","284","NC_004829_01644","NC_017502_01646","NC_017503_01576","NC_018406_01552","NC_018407_01531","NC_018408_01579","NC_018409_01547","NC_018410_01501","NC_018411_01504","NC_018412_01560","NC_018413_01484","NC_023030_01616"
"group_1577","","hypothetical protein","12","12","1","1","1012","","","","560","560","560","NC_004829_00320","NC_017502_00318","NC_017503_00312","NC_018406_00319","NC_018407_00320","NC_018408_00319","NC_018409_00320","NC_018410_00318","NC_018411_00319","NC_018412_00319","NC_018413_00317","NC_023030_00328"
"group_1578","","hypothetical protein","12","12","1","1","416","","","","278","278","278","NC_004829_01397","NC_017502_01397","NC_017503_01333","NC_018406_01325","NC_018407_01302","NC_018408_01352","NC_018409_01317","NC_018410_01273","NC_018411_01295","NC_018412_01332","NC_018413_01275","NC_023030_01367"
"group_158","","hypothetical protein","12","12","1","1","1162","","","","821","1457","1351","NC_004829_00413","NC_017502_00411","NC_017503_00400","NC_018406_00449","NC_018407_00428","NC_018408_00428","NC_018409_00428","NC_018410_00415","NC_018411_00416","NC_018412_00417","NC_018413_00414","NC_023030_00412"
"group_1584","","hypothetical protein","12","12","1","1","1105","","","","206","206","206","NC_004829_00360","NC_017502_00358","NC_017503_00351","NC_018406_00401","NC_018407_00380","NC_018408_00379","NC_018409_00380","NC_018410_00367","NC_018411_00368","NC_018412_00368","NC_018413_00366","NC_023030_00366"
"group_1585","","putative ABC transporter ATP-binding protein","12","12","1","1","1339","","","","128","128","128","NC_004829_00699","NC_017502_00699","NC_017503_01132","NC_018406_00651","NC_018407_00629","NC_018408_00629","NC_018409_00635","NC_018410_00608","NC_018411_00617","NC_018412_00619","NC_018413_00614","NC_023030_00650"
"polC_4","","DNA polymerase III PolC-type","12","12","1","1","769","","","","122","122","122","NC_004829_00186","NC_017502_00186","NC_017503_00184","NC_018406_00187","NC_018407_00188","NC_018408_00187","NC_018409_00187","NC_018410_00187","NC_018411_00187","NC_018412_00187","NC_018413_00187","NC_023030_00189"
"dnaG_2","","DNA primase","12","12","1","1","1534","","","","173","173","173","NC_004829_00939","NC_017502_00940","NC_017503_00899","NC_018406_00853","NC_018407_00830","NC_018408_00870","NC_018409_00837","NC_018410_00810","NC_018411_00819","NC_018412_00861","NC_018413_00815","NC_023030_00882"
"mnmG_1","","tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG","12","12","1","1","340","","","","305","305","305","NC_004829_01476","NC_017502_01476","NC_017503_01412","NC_018406_01403","NC_018407_01381","NC_018408_01430","NC_018409_01397","NC_018410_01352","NC_018411_01374","NC_018412_01411","NC_018413_01354","NC_023030_01447"
"rpsB_2","","30S ribosomal protein S2","12","12","1","1","2178","","","","227","227","227","NC_004829_01225","NC_017502_01227","NC_017503_00625","NC_018406_01142","NC_018407_01119","NC_018408_01169","NC_018409_01135","NC_018410_01093","NC_018411_01114","NC_018412_01150","NC_018413_01103","NC_023030_01194"
"group_1590","","hypothetical protein","12","12","1","1","143","","","","227","227","227","NC_004829_01676","NC_017502_01678","NC_017503_01608","NC_018406_01584","NC_018407_01562","NC_018408_01610","NC_018409_01578","NC_018410_01532","NC_018411_01535","NC_018412_01591","NC_018413_01515","NC_023030_01647"
"group_1591","","hypothetical protein","12","12","1","1","114","","","","176","176","176","NC_004829_00632","NC_017502_00631","NC_017503_01194","NC_018406_00624","NC_018407_00602","NC_018408_00603","NC_018409_00608","NC_018410_00581","NC_018411_00590","NC_018412_00592","NC_018413_00587","NC_023030_00590"
"group_1592","","hypothetical protein","12","12","1","1","1100","","","","287","287","287","NC_004829_00345","NC_017502_00343","NC_017503_00337","NC_018406_00387","NC_018407_00366","NC_018408_00365","NC_018409_00366","NC_018410_00353","NC_018411_00354","NC_018412_00354","NC_018413_00352","NC_023030_00352"
"group_1593","","hypothetical protein","12","12","1","1","1251","","","","263","263","263","NC_004829_01163","NC_017502_01164","NC_017503_00684","NC_018406_01083","NC_018407_01060","NC_018408_01100","NC_018409_01075","NC_018410_01033","NC_018411_01055","NC_018412_01090","NC_018413_01044","NC_023030_01135"
"rpsR","","30S ribosomal protein S18","12","12","1","1","389","","","","326","326","326","NC_004829_01424","NC_017502_01424","NC_017503_01360","NC_018406_01352","NC_018407_01329","NC_018408_01379","NC_018409_01345","NC_018410_01300","NC_018411_01322","NC_018412_01359","NC_018413_01302","NC_023030_01395"
"group_1595","","hypothetical protein","12","12","1","1","2188","","","","179","179","179","NC_004829_01234","NC_017502_01236","NC_017503_00617","NC_018406_01153","NC_018407_01130","NC_018408_01180","NC_018409_01146","NC_018410_01104","NC_018411_01125","NC_018412_01161","NC_018413_01114","NC_023030_01203"
"group_1596","","hypothetical protein","12","12","1","1","2016","","","","254","254","254","NC_004829_01325","NC_017502_01326","NC_017503_00489","NC_018406_01247","NC_018407_01224","NC_018408_01274","NC_018409_01240","NC_018410_01198","NC_018411_01220","NC_018412_01255","NC_018413_01208","NC_023030_01300"
"alaS_2","","Alanine--tRNA ligase","12","12","1","1","965","","","","146","146","146","NC_004829_00262","NC_017502_00261","NC_017503_00254","NC_018406_00260","NC_018407_00261","NC_018408_00260","NC_018409_00261","NC_018410_00259","NC_018411_00260","NC_018412_00260","NC_018413_00258","NC_023030_00271"
"group_1598","","hypothetical protein","12","12","1","1","1216","","","","140","140","140","NC_004829_01198","NC_017502_01199","NC_017503_00650","NC_018406_01118","NC_018407_01095","NC_018408_01144","NC_018409_01110","NC_018410_01069","NC_018411_01090","NC_018412_01125","NC_018413_01079","NC_023030_01170"
"ldh_1","","L-lactate dehydrogenase","12","12","1","1","813","","","","566","566","566","NC_004829_00138","NC_017502_00138","NC_017503_00137","NC_018406_00139","NC_018407_00140","NC_018408_00139","NC_018409_00139","NC_018410_00139","NC_018411_00139","NC_018412_00139","NC_018413_00139","NC_023030_00140"
"rpsO","","30S ribosomal protein S15","12","12","1","1","793","","","","272","272","272","NC_004829_00159","NC_017502_00159","NC_017503_00157","NC_018406_00160","NC_018407_00161","NC_018408_00160","NC_018409_00160","NC_018410_00160","NC_018411_00160","NC_018412_00160","NC_018413_00160","NC_023030_00162"
"group_1601","","hypothetical protein","12","12","1","1","1655","","","","362","362","362","NC_004829_00974","NC_017502_00975","NC_017503_00865","NC_018406_00893","NC_018407_00870","NC_018408_00910","NC_018409_00876","NC_018410_00850","NC_018411_00858","NC_018412_00901","NC_018413_00855","NC_023030_00917"
"ydcP_2","","putative protease YdcP","12","12","1","1","973","","","","386","386","386","NC_004829_00270","NC_017502_00269","NC_017503_00262","NC_018406_00268","NC_018407_00269","NC_018408_00268","NC_018409_00269","NC_018410_00267","NC_018411_00268","NC_018412_00268","NC_018413_00266","NC_023030_00279"
"greA","","Transcription elongation factor GreA","12","12","1","1","1184","","","","479","479","479","NC_004829_00438","NC_017502_00436","NC_017503_00423","NC_018406_00473","NC_018407_00452","NC_018408_00452","NC_018409_00452","NC_018410_00439","NC_018411_00440","NC_018412_00441","NC_018413_00438","NC_023030_00436"
"group_1604","","hypothetical protein","12","12","1","1","765","","","","293","293","293","NC_004829_00190","NC_017502_00190","NC_017503_00188","NC_018406_00191","NC_018407_00192","NC_018408_00191","NC_018409_00191","NC_018410_00191","NC_018411_00191","NC_018412_00191","NC_018413_00191","NC_023030_00193"
"rpsQ","","30S ribosomal protein S17","12","12","1","1","830","","","","224","224","224","NC_004829_00120","NC_017502_00120","NC_017503_00118","NC_018406_00120","NC_018407_00121","NC_018408_00120","NC_018409_00120","NC_018410_00120","NC_018411_00120","NC_018412_00120","NC_018413_00120","NC_023030_00121"
"prkC_1","","Serine/threonine-protein kinase PrkC","12","12","1","1","350","","","","389","389","389","NC_004829_01466","NC_017502_01466","NC_017503_01402","NC_018406_01394","NC_018407_01371","NC_018408_01421","NC_018409_01387","NC_018410_01342","NC_018411_01364","NC_018412_01401","NC_018413_01344","NC_023030_01437"
"atpA_1","","ATP synthase subunit alpha","12","12","1","1","1393","","","","749","749","749","NC_004829_00749","NC_017502_00750","NC_017503_01084","NC_018406_00700","NC_018407_00677","NC_018408_00678","NC_018409_00684","NC_018410_00657","NC_018411_00665","NC_018412_00668","NC_018413_00662","NC_023030_00707"
"group_1608","","hypothetical protein","12","12","1","1","880","","","","209","209","209","NC_004829_00067","NC_017502_00067","NC_017503_00066","NC_018406_00068","NC_018407_00068","NC_018408_00068","NC_018409_00068","NC_018410_00068","NC_018411_00068","NC_018412_00068","NC_018413_00068","NC_023030_00070"
"group_1609","","hypothetical protein","12","12","1","1","552","","","","161","161","161","NC_004829_00593","NC_017502_00592","NC_017503_01232","NC_018406_00588","NC_018407_00566","NC_018408_00566","NC_018409_00571","NC_018410_00546","NC_018411_00553","NC_018412_00555","NC_018413_00550","NC_023030_00552"
"fusA_2","","Elongation factor G","12","12","1","1","2194","","","","215","215","215","NC_004829_01241","NC_017502_01242","NC_017503_00611","NC_018406_01159","NC_018407_01136","NC_018408_01186","NC_018409_01152","NC_018410_01110","NC_018411_01131","NC_018412_01167","NC_018413_01120","NC_023030_01209"
"group_1611","","hypothetical protein","12","12","1","1","1409","","","","227","227","227","NC_004829_00734","NC_017502_00735","NC_017503_01100","NC_018406_00685","NC_018407_00662","NC_018408_00663","NC_018409_00669","NC_018410_00642","NC_018411_00650","NC_018412_00653","NC_018413_00647","NC_023030_00690"
"mlaF","","putative phospholipid import ATP-binding protein MlaF","12","12","1","1","585","","","","341","341","341","NC_004829_00558","NC_017502_00557","NC_017503_01269","NC_018406_00552","NC_018407_00530","NC_018408_00530","NC_018409_00535","NC_018410_00510","NC_018411_00517","NC_018412_00519","NC_018413_00514","NC_023030_00513"
"group_1613","","hypothetical protein","12","12","1","1","1187","","","","218","218","218","NC_004829_00446","NC_017502_00444","NC_017503_00431","NC_018406_00481","NC_018407_00460","NC_018408_00460","NC_018409_00460","NC_018410_00447","NC_018411_00448","NC_018412_00449","NC_018413_00446","NC_023030_00445"
"cdsA","","Phosphatidate cytidylyltransferase","12","12","1","1","778","","","","698","698","698","NC_004829_00177","NC_017502_00177","NC_017503_00175","NC_018406_00178","NC_018407_00179","NC_018408_00178","NC_018409_00178","NC_018410_00178","NC_018411_00178","NC_018412_00178","NC_018413_00178","NC_023030_00180"
"group_1615","","hypothetical protein","12","12","1","1","851","","","","128","128","128","NC_004829_00098","NC_017502_00098","NC_017503_00096","NC_018406_00098","NC_018407_00098","NC_018408_00098","NC_018409_00098","NC_018410_00098","NC_018411_00098","NC_018412_00098","NC_018413_00098","NC_023030_00101"
"group_1616","","hypothetical protein","12","12","1","1","1008","","","","191","191","191","NC_004829_00316","NC_017502_00314","NC_017503_00308","NC_018406_00315","NC_018407_00316","NC_018408_00315","NC_018409_00316","NC_018410_00314","NC_018411_00315","NC_018412_00315","NC_018413_00313","NC_023030_00324"
"gapN_2","","NADP-dependent glyceraldehyde-3-phosphate dehydrogenase","12","12","1","1","993","","","","131","131","131","NC_004829_00298","NC_017502_00297","NC_017503_00291","NC_018406_00296","NC_018407_00297","NC_018408_00296","NC_018409_00297","NC_018410_00295","NC_018411_00296","NC_018412_00296","NC_018413_00294","NC_023030_00307"
"ftsY_2","","Signal recognition particle receptor FtsY","12","12","1","1","1120","","","","383","383","383","NC_004829_00380","NC_017502_00378","NC_017503_00368","NC_018406_00417","NC_018407_00396","NC_018408_00395","NC_018409_00396","NC_018410_00383","NC_018411_00384","NC_018412_00384","NC_018413_00382","NC_023030_00382"
"polC_5","","DNA polymerase III PolC-type","12","12","1","1","767","","","","203","203","203","NC_004829_00188","NC_017502_00188","NC_017503_00186","NC_018406_00189","NC_018407_00190","NC_018408_00189","NC_018409_00189","NC_018410_00189","NC_018411_00189","NC_018412_00189","NC_018413_00189","NC_023030_00191"
"ytbE_2","","putative oxidoreductase YtbE","12","12","1","1","1489","","","","191","191","191","NC_004829_01034","NC_017502_01035","NC_017503_00818","NC_018406_00964","NC_018407_00941","NC_018408_00981","NC_018409_00956","NC_018410_00914","NC_018411_00936","NC_018412_00971","NC_018413_00924","NC_023030_01002"
"infA","","Translation initiation factor IF-1","12","12","1","1","360","","","","212","212","212","NC_004829_01454","NC_017502_01454","NC_017503_01390","NC_018406_01382","NC_018407_01359","NC_018408_01409","NC_018409_01375","NC_018410_01330","NC_018411_01352","NC_018412_01389","NC_018413_01332","NC_023030_01425"
"tyrS1","","Tyrosine--tRNA ligase 1","12","12","1","1","1360","","","","299","299","299","NC_004829_00719","NC_017502_00720","NC_017503_01112","NC_018406_00673","NC_018407_00651","NC_018408_00652","NC_018409_00658","NC_018410_00631","NC_018411_00639","NC_018412_00642","NC_018413_00636","NC_023030_00671"
"rpoA_2","","DNA-directed RNA polymerase subunit alpha","12","12","1","1","363","","","","320","320","320","NC_004829_01450","NC_017502_01450","NC_017503_01386","NC_018406_01378","NC_018407_01355","NC_018408_01405","NC_018409_01371","NC_018410_01326","NC_018411_01348","NC_018412_01385","NC_018413_01328","NC_023030_01421"
"group_1624","","hypothetical protein","12","12","1","1","156","","","","266","266","266","NC_004829_01663","NC_017502_01665","NC_017503_01595","NC_018406_01571","NC_018407_01549","NC_018408_01597","NC_018409_01565","NC_018410_01519","NC_018411_01522","NC_018412_01578","NC_018413_01502","NC_023030_01634"
"rpsD","","30S ribosomal protein S4","12","12","1","1","2198","","","","623","623","623","NC_004829_01245","NC_017502_01246","NC_017503_00607","NC_018406_01163","NC_018407_01140","NC_018408_01190","NC_018409_01156","NC_018410_01114","NC_018411_01135","NC_018412_01171","NC_018413_01124","NC_023030_01213"
"group_1626","","hypothetical protein","12","12","1","1","1975","","","","218","218","218","NC_004829_01294","NC_017502_01295","NC_017503_00521","NC_018406_01212","NC_018407_01189","NC_018408_01239","NC_018409_01205","NC_018410_01163","NC_018411_01185","NC_018412_01220","NC_018413_01173","NC_023030_01264"
"ywlF","","Putative sugar phosphate isomerase YwlF","12","12","1","1","999","","","","470","470","470","NC_004829_00306","NC_017502_00305","NC_017503_00298","NC_018406_00304","NC_018407_00305","NC_018408_00304","NC_018409_00305","NC_018410_00303","NC_018411_00304","NC_018412_00304","NC_018413_00302","NC_023030_00314"
"rpmI","","50S ribosomal protein L35","12","12","1","1","2112","","","","194","194","194","NC_004829_00876","NC_017502_00877","NC_017503_00963","NC_018406_00787","NC_018407_00764","NC_018408_00804","NC_018409_00771","NC_018410_00744","NC_018411_00752","NC_018412_00794","NC_018413_00749","NC_023030_00819"
"pgk_1","","Phosphoglycerate kinase","12","12","1","1","1380","","","","443","443","443","NC_004829_00767","NC_017502_00768","NC_017503_01066","NC_018406_00717","NC_018407_00694","NC_018408_00695","NC_018409_00701","NC_018410_00674","NC_018411_00682","NC_018412_00685","NC_018413_00679","NC_023030_00724"
"infB_2","","Translation initiation factor IF-2","12","12","1","1","699","","","","164","164","164","NC_004829_00245","NC_017502_00244","NC_017503_00236","NC_018406_00242","NC_018407_00243","NC_018408_00242","NC_018409_00243","NC_018410_00241","NC_018411_00243","NC_018412_00242","NC_018413_00241","NC_023030_00250"
"group_1631","","hypothetical protein","12","12","1","1","715","","","","209","209","209","NC_004829_00235","NC_017502_00234","NC_017503_00225","NC_018406_00226","NC_018407_00227","NC_018408_00226","NC_018409_00226","NC_018410_00225","NC_018411_00227","NC_018412_00226","NC_018413_00225","NC_023030_00234"
"topA_3","","DNA topoisomerase 1","12","12","1","1","355","","","","167","167","167","NC_004829_01461","NC_017502_01461","NC_017503_01397","NC_018406_01389","NC_018407_01366","NC_018408_01416","NC_018409_01382","NC_018410_01337","NC_018411_01359","NC_018412_01396","NC_018413_01339","NC_023030_01432"
"group_1633","","hypothetical protein","12","12","1","1","1524","","","","170","170","170","NC_004829_00948","NC_017502_00949","NC_017503_00890","NC_018406_00862","NC_018407_00839","NC_018408_00879","NC_018409_00846","NC_018410_00819","NC_018411_00828","NC_018412_00870","NC_018413_00824","NC_023030_00891"
"group_1634","","hypothetical protein","12","12","1","1","1554","","","","149","149","149","NC_004829_00922","NC_017502_00923","NC_017503_00916","NC_018406_00836","NC_018407_00813","NC_018408_00853","NC_018409_00820","NC_018410_00793","NC_018411_00802","NC_018412_00844","NC_018413_00798","NC_023030_00866"
"oppD_2","","Oligopeptide transport ATP-binding protein OppD","12","12","1","1","1212","","","","233","233","233","NC_004829_01202","NC_017502_01203","NC_017503_00646","NC_018406_01122","NC_018407_01099","NC_018408_01148","NC_018409_01114","NC_018410_01073","NC_018411_01094","NC_018412_01129","NC_018413_01083","NC_023030_01174"
"rpsI","","30S ribosomal protein S9","12","12","1","1","1406","","","","392","392","392","NC_004829_00736","NC_017502_00737","NC_017503_01098","NC_018406_00687","NC_018407_00664","NC_018408_00665","NC_018409_00671","NC_018410_00644","NC_018411_00652","NC_018412_00655","NC_018413_00649","NC_023030_00693"
"group_1639","","hypothetical protein","12","12","1","1","2118","","","","236","236","236","NC_004829_00870","NC_017502_00871","NC_017503_00969","NC_018406_00781","NC_018407_00758","NC_018408_00798","NC_018409_00765","NC_018410_00738","NC_018411_00746","NC_018412_00788","NC_018413_00743","NC_023030_00813"
"group_1640","","hypothetical protein","12","12","1","1","180","","","","140","140","140","NC_004829_01637","NC_017502_01639","NC_017503_01568","NC_018406_01545","NC_018407_01524","NC_018408_01572","NC_018409_01540","NC_018410_01494","NC_018411_01497","NC_018412_01553","NC_018413_01477","NC_023030_01609"
"thrS_1","","Threonine--tRNA ligase","12","12","1","1","1124","","","","593","593","593","NC_004829_00384","NC_017502_00382","NC_017503_00372","NC_018406_00421","NC_018407_00400","NC_018408_00399","NC_018409_00400","NC_018410_00387","NC_018411_00388","NC_018412_00388","NC_018413_00386","NC_023030_00386"
"group_1642","","hypothetical protein","12","12","1","1","326","","","","122","122","122","NC_004829_01490","NC_017502_01490","NC_017503_01426","NC_018406_01417","NC_018407_01395","NC_018408_01444","NC_018409_01411","NC_018410_01366","NC_018411_01388","NC_018412_01425","NC_018413_01368","NC_023030_01461"
"group_1643","","hypothetical protein","12","12","1","1","1535","","","","176","176","176","NC_004829_00938","NC_017502_00939","NC_017503_00900","NC_018406_00852","NC_018407_00829","NC_018408_00869","NC_018409_00836","NC_018410_00809","NC_018411_00818","NC_018412_00860","NC_018413_00814","NC_023030_00881"
"group_1647","","hypothetical protein","12","12","1","1","2256","","","","248","248","248","NC_004829_00657","NC_017502_00657","NC_017503_01169","NC_018406_00757","NC_018407_00734","NC_018408_00735","NC_018409_00741","NC_018410_00714","NC_018411_00722","NC_018412_00725","NC_018413_00719","NC_023030_00615"
"group_1648","","hypothetical protein","12","12","1","1","158","","","","224","224","224","NC_004829_01661","NC_017502_01663","NC_017503_01592","NC_018406_01568","NC_018407_01547","NC_018408_01595","NC_018409_01563","NC_018410_01517","NC_018411_01520","NC_018412_01576","NC_018413_01500","NC_023030_01632"
"ptsI_2","","Phosphoenolpyruvate-protein phosphotransferase","12","12","1","1","796","","","","491","491","491","NC_004829_00156","NC_017502_00156","NC_017503_00154","NC_018406_00157","NC_018407_00158","NC_018408_00157","NC_018409_00157","NC_018410_00157","NC_018411_00157","NC_018412_00157","NC_018413_00157","NC_023030_00159"
"group_1650","","hypothetical protein","12","12","1","1","562","","","","257","257","257","NC_004829_00584","NC_017502_00583","NC_017503_01240","NC_018406_00580","NC_018407_00558","NC_018408_00558","NC_018409_00563","NC_018410_00538","NC_018411_00545","NC_018412_00547","NC_018413_00542","NC_023030_00543"
"rpmGA","","50S ribosomal protein L33 1","12","12","1","1","1506","","","","161","161","161","NC_004829_01052","NC_017502_01053","NC_017503_00801","NC_018406_00981","NC_018407_00958","NC_018408_00998","NC_018409_00973","NC_018410_00931","NC_018411_00953","NC_018412_00988","NC_018413_00942","NC_023030_01019"
"atpE","","ATP synthase subunit c, sodium ion specific","12","12","1","1","1397","","","","290","290","290","NC_004829_00745","NC_017502_00746","NC_017503_01088","NC_018406_00697","NC_018407_00674","NC_018408_00675","NC_018409_00681","NC_018410_00654","NC_018411_00662","NC_018412_00665","NC_018413_00659","NC_023030_00703"
"ktrA","","Ktr system potassium uptake protein A","12","12","1","1","1705","","","","671","671","671","NC_004829_01024","NC_017502_01025","NC_017503_00828","NC_018406_00954","NC_018407_00931","NC_018408_00971","NC_018409_00946","NC_018410_00904","NC_018411_00926","NC_018412_00961","NC_018413_00914","NC_023030_00992"
"gyrB_4","","DNA gyrase subunit B","12","12","1","1","145","","","","248","248","248","NC_004829_01674","NC_017502_01676","NC_017503_01606","NC_018406_01582","NC_018407_01560","NC_018408_01608","NC_018409_01576","NC_018410_01530","NC_018411_01533","NC_018412_01589","NC_018413_01513","NC_023030_01645"
"group_1657","","hypothetical protein","12","12","1","1","846","","","","149","149","149","NC_004829_00103","NC_017502_00103","NC_017503_00101","NC_018406_00103","NC_018407_00103","NC_018408_00103","NC_018409_00103","NC_018410_00103","NC_018411_00103","NC_018412_00103","NC_018413_00103","NC_023030_00106"
"group_1658","","putative ABC transporter ATP-binding protein","12","12","1","1","1338","","","","566","566","566","NC_004829_00698","NC_017502_00698","NC_017503_01133","NC_018406_00650","NC_018407_00628","NC_018408_00628","NC_018409_00634","NC_018410_00607","NC_018411_00616","NC_018412_00618","NC_018413_00613","NC_023030_00649"
"rplX","","50S ribosomal protein L24","12","12","1","1","828","","","","329","329","329","NC_004829_00122","NC_017502_00122","NC_017503_00120","NC_018406_00122","NC_018407_00123","NC_018408_00122","NC_018409_00122","NC_018410_00122","NC_018411_00122","NC_018412_00122","NC_018413_00122","NC_023030_00123"
"group_1660","","hypothetical protein","12","12","1","1","2012","","","","221","221","221","NC_004829_01321","NC_017502_01322","NC_017503_00493","NC_018406_01243","NC_018407_01220","NC_018408_01270","NC_018409_01236","NC_018410_01194","NC_018411_01216","NC_018412_01251","NC_018413_01204","NC_023030_01295"
"group_1661","","hypothetical protein","12","12","1","1","1104","","","","164","164","164","NC_004829_00358","NC_017502_00356","NC_017503_00350","NC_018406_00400","NC_018407_00379","NC_018408_00378","NC_018409_00379","NC_018410_00366","NC_018411_00367","NC_018412_00367","NC_018413_00365","NC_023030_00365"
"group_1662","","hypothetical protein","12","12","1","1","1644","","","","158","158","158","NC_004829_00961","NC_017502_00962","NC_017503_00877","NC_018406_00881","NC_018407_00858","NC_018408_00898","NC_018409_00864","NC_018410_00838","NC_018411_00846","NC_018412_00889","NC_018413_00843","NC_023030_00905"
"pgk/tpi","","Bifunctional PGK/TIM","12","12","1","1","1378","","","","146","146","146","NC_004829_00769","NC_017502_00770","NC_017503_01064","NC_018406_00719","NC_018407_00696","NC_018408_00697","NC_018409_00703","NC_018410_00676","NC_018411_00684","NC_018412_00687","NC_018413_00681","NC_023030_00726"
"ileS_2","","Isoleucine--tRNA ligase","12","12","1","1","15","","","","206","206","206","NC_004829_00785","NC_017502_00786","NC_017503_01048","NC_018406_00734","NC_018407_00711","NC_018408_00712","NC_018409_00718","NC_018410_00691","NC_018411_00699","NC_018412_00702","NC_018413_00696","NC_023030_00742"
"group_1665","","hypothetical protein","12","12","1","1","1989","","","","209","209","209","NC_004829_01301","NC_017502_01302","NC_017503_00514","NC_018406_01220","NC_018407_01197","NC_018408_01247","NC_018409_01213","NC_018410_01171","NC_018411_01193","NC_018412_01228","NC_018413_01181","NC_023030_01273"
"rplS","","50S ribosomal protein L19","12","12","1","1","368","","","","368","368","368","NC_004829_01445","NC_017502_01445","NC_017503_01381","NC_018406_01373","NC_018407_01350","NC_018408_01400","NC_018409_01366","NC_018410_01321","NC_018411_01343","NC_018412_01380","NC_018413_01323","NC_023030_01416"
"group_1667","","hypothetical protein","12","12","1","1","410","","","","308","308","308","NC_004829_01403","NC_017502_01403","NC_017503_01339","NC_018406_01331","NC_018407_01308","NC_018408_01358","NC_018409_01323","NC_018410_01279","NC_018411_01301","NC_018412_01338","NC_018413_01281","NC_023030_01373"
"group_1668","","hypothetical protein","12","12","1","1","768","","","","251","251","251","NC_004829_00187","NC_017502_00187","NC_017503_00185","NC_018406_00188","NC_018407_00189","NC_018408_00188","NC_018409_00188","NC_018410_00188","NC_018411_00188","NC_018412_00188","NC_018413_00188","NC_023030_00190"
"group_1669","","hypothetical protein","12","12","1","1","1013","","","","227","227","227","NC_004829_00321","NC_017502_00319","NC_017503_00313","NC_018406_00320","NC_018407_00321","NC_018408_00320","NC_018409_00321","NC_018410_00319","NC_018411_00320","NC_018412_00320","NC_018413_00318","NC_023030_00329"
"wfgD","","UDP-Glc:alpha-D-GlcNAc-diphosphoundecaprenol beta-1,3-glucosyltransferase WfgD","12","12","1","1","2017","","","","641","641","641","NC_004829_01326","NC_017502_01327","NC_017503_00488","NC_018406_01248","NC_018407_01225","NC_018408_01275","NC_018409_01241","NC_018410_01199","NC_018411_01221","NC_018412_01256","NC_018413_01209","NC_023030_01301"
"group_1673","","hypothetical protein","12","12","1","1","1402","","","","155","155","155","NC_004829_00740","NC_017502_00741","NC_017503_01094","NC_018406_00691","NC_018407_00668","NC_018408_00669","NC_018409_00675","NC_018410_00648","NC_018411_00656","NC_018412_00659","NC_018413_00653","NC_023030_00697"
"group_1674","","hypothetical protein","12","12","1","1","1238","","","","158","158","158","NC_004829_01177","NC_017502_01178","NC_017503_00670","NC_018406_01096","NC_018407_01073","NC_018408_01113","NC_018409_01088","NC_018410_01046","NC_018411_01068","NC_018412_01103","NC_018413_01057","NC_023030_01148"
"group_1675","","hypothetical protein","12","12","1","1","826","","","","125","125","125","NC_004829_00124","NC_017502_00124","NC_017503_00122","NC_018406_00124","NC_018407_00125","NC_018408_00124","NC_018409_00124","NC_018410_00124","NC_018411_00124","NC_018412_00124","NC_018413_00124","NC_023030_00125"
"group_1676","","hypothetical protein","12","12","1","1","327","","","","230","230","230","NC_004829_01489","NC_017502_01489","NC_017503_01425","NC_018406_01416","NC_018407_01394","NC_018408_01443","NC_018409_01410","NC_018410_01365","NC_018411_01387","NC_018412_01424","NC_018413_01367","NC_023030_01460"
"group_1677","","hypothetical protein","12","12","1","1","779","","","","293","293","293","NC_004829_00176","NC_017502_00176","NC_017503_00174","NC_018406_00177","NC_018407_00178","NC_018408_00177","NC_018409_00177","NC_018410_00177","NC_018411_00177","NC_018412_00177","NC_018413_00177","NC_023030_00179"
"group_1678","","hypothetical protein","12","12","1","1","378","","","","182","182","182","NC_004829_01435","NC_017502_01435","NC_017503_01371","NC_018406_01363","NC_018407_01340","NC_018408_01390","NC_018409_01356","NC_018410_01311","NC_018411_01333","NC_018412_01370","NC_018413_01313","NC_023030_01406"
"group_1679","","hypothetical protein","12","12","1","1","822","","","","140","140","140","NC_004829_00129","NC_017502_00129","NC_017503_00127","NC_018406_00129","NC_018407_00130","NC_018408_00129","NC_018409_00129","NC_018410_00129","NC_018411_00129","NC_018412_00129","NC_018413_00129","NC_023030_00130"
"rplN","","50S ribosomal protein L14","12","12","1","1","829","","","","374","374","374","NC_004829_00121","NC_017502_00121","NC_017503_00119","NC_018406_00121","NC_018407_00122","NC_018408_00121","NC_018409_00121","NC_018410_00121","NC_018411_00121","NC_018412_00121","NC_018413_00121","NC_023030_00122"
"pdhB_3","","Pyruvate dehydrogenase E1 component subunit beta","12","12","1","1","1294","","","","170","170","170","NC_004829_01120","NC_017502_01121","NC_017503_00727","NC_018406_01041","NC_018407_01018","NC_018408_01058","NC_018409_01033","NC_018410_00991","NC_018411_01013","NC_018412_01048","NC_018413_01002","NC_023030_01089"
"group_1682","","hypothetical protein","12","12","1","1","18","","","","167","167","167","NC_004829_00790","NC_017502_00791","NC_017503_01044","NC_018406_00738","NC_018407_00715","NC_018408_00716","NC_018409_00722","NC_018410_00695","NC_018411_00703","NC_018412_00706","NC_018413_00700","NC_023030_00746"
"tdk","","Thymidine kinase","12","12","1","1","305","","","","614","614","614","NC_004829_01516","NC_017502_01516","NC_017503_01449","NC_018406_01441","NC_018407_01420","NC_018408_01468","NC_018409_01435","NC_018410_01390","NC_018411_01412","NC_018412_01449","NC_018413_01392","NC_023030_01485"
"group_1684","","hypothetical protein","12","12","1","1","1257","","","","188","188","188","NC_004829_01155","NC_017502_01156","NC_017503_00692","NC_018406_01076","NC_018407_01053","NC_018408_01093","NC_018409_01068","NC_018410_01026","NC_018411_01048","NC_018412_01083","NC_018413_01037","NC_023030_01128"
"tlyC","","Hemolysin C","12","12","1","1","1279","","","","164","164","164","NC_004829_01135","NC_017502_01136","NC_017503_00712","NC_018406_01056","NC_018407_01033","NC_018408_01073","NC_018409_01048","NC_018410_01006","NC_018411_01028","NC_018412_01063","NC_018413_01017","NC_023030_01104"
"group_1686","","hypothetical protein","12","12","1","1","398","","","","140","140","140","NC_004829_01416","NC_017502_01416","NC_017503_01352","NC_018406_01344","NC_018407_01321","NC_018408_01371","NC_018409_01337","NC_018410_01292","NC_018411_01314","NC_018412_01351","NC_018413_01294","NC_023030_01387"
"group_1689","","hypothetical protein","12","12","1","1","921","","","","296","296","296","NC_004829_00014","NC_017502_00014","NC_017503_00014","NC_018406_00014","NC_018407_00014","NC_018408_00014","NC_018409_00014","NC_018410_00014","NC_018411_00014","NC_018412_00014","NC_018413_00014","NC_023030_00012"
"mtlA","","PTS system mannitol-specific EIICB component","12","12","1","1","2105","","","","275","389","350","NC_004829_00885","NC_017502_00886","NC_017503_00955","NC_018406_00795","NC_018407_00772","NC_018408_00812","NC_018409_00779","NC_018410_00752","NC_018411_00761","NC_018412_00803","NC_018413_00757","NC_023030_00828"
"rplM","","50S ribosomal protein L13","12","12","1","1","1407","","","","194","194","194","NC_004829_00735","NC_017502_00736","NC_017503_01099","NC_018406_00686","NC_018407_00663","NC_018408_00664","NC_018409_00670","NC_018410_00643","NC_018411_00651","NC_018412_00654","NC_018413_00648","NC_023030_00692"
"nusA_2","","Transcription termination/antitermination protein NusA","12","12","1","1","704","","","","266","266","266","NC_004829_00241","NC_017502_00240","NC_017503_00231","NC_018406_00237","NC_018407_00238","NC_018408_00237","NC_018409_00238","NC_018410_00236","NC_018411_00238","NC_018412_00237","NC_018413_00236","NC_023030_00245"
"ecfT","","Energy-coupling factor transporter transmembrane protein EcfT","12","12","1","1","2025","","","","479","479","479","NC_004829_01334","NC_017502_01335","NC_017503_00480","NC_018406_01255","NC_018407_01232","NC_018408_01282","NC_018409_01248","NC_018410_01206","NC_018411_01228","NC_018412_01263","NC_018413_01216","NC_023030_01309"
"group_1693","","hypothetical protein","12","12","1","1","1399","","","","122","122","122","NC_004829_00743","NC_017502_00744","NC_017503_01091","NC_018406_00694","NC_018407_00671","NC_018408_00672","NC_018409_00678","NC_018410_00651","NC_018411_00659","NC_018412_00662","NC_018413_00656","NC_023030_00700"
"group_1694","","hypothetical protein","12","12","1","1","2032","","","","176","176","176","NC_004829_01341","NC_017502_01342","NC_017503_00473","NC_018406_01262","NC_018407_01239","NC_018408_01289","NC_018409_01255","NC_018410_01213","NC_018411_01235","NC_018412_01270","NC_018413_01223","NC_023030_01316"
"leuS_2","","Leucine--tRNA ligase","12","12","1","1","1482","","","","161","161","161","NC_004829_01026","NC_017502_01027","NC_017503_00826","NC_018406_00956","NC_018407_00933","NC_018408_00973","NC_018409_00948","NC_018410_00906","NC_018411_00928","NC_018412_00963","NC_018413_00916","NC_023030_00994"
"group_1696","","hypothetical protein","12","12","1","1","2226","","","","1061","1061","1061","NC_004829_00818","NC_017502_00820","NC_017503_01014","NC_018406_00769","NC_018407_00746","NC_018408_00747","NC_018409_00753","NC_018410_00726","NC_018411_00734","NC_018412_00737","NC_018413_00731","NC_023030_00775"
"group_1697","","hypothetical protein","12","12","1","1","1588","","","Hypothetical protein with no hits to refseq/uniprot/clusters/cdd/tigrfams/pfam overlapping another protein with hits","182","182","182","NC_004829_01096","NC_017502_01097","NC_017503_00751","NC_018406_01025","NC_018407_01002","NC_018408_01042","NC_018409_01017","NC_018410_00975","NC_018411_00997","NC_018412_01032","NC_018413_00986","NC_023030_01070"
"group_1700","","hypothetical protein","12","12","1","1","1418","","","","158","158","158","NC_004829_00900","NC_017502_00901","NC_017503_00939","NC_018406_00810","NC_018407_00787","NC_018408_00827","NC_018409_00794","NC_018410_00767","NC_018411_00776","NC_018412_00818","NC_018413_00772","NC_023030_00844"
"ohrB","","Organic hydroperoxide resistance protein OhrB","12","12","1","1","1357","","","","404","404","404","NC_004829_00716","NC_017502_00717","NC_017503_01115","NC_018406_00670","NC_018407_00648","NC_018408_00649","NC_018409_00655","NC_018410_00628","NC_018411_00636","NC_018412_00639","NC_018413_00633","NC_023030_00668"
"group_1702","","hypothetical protein","12","12","1","1","1935","","","","188","188","188","NC_004829_01258","NC_017502_01259","NC_017503_00557","NC_018406_01176","NC_018407_01153","NC_018408_01203","NC_018409_01169","NC_018410_01127","NC_018411_01148","NC_018412_01184","NC_018413_01137","NC_023030_01227"
"group_1705","","hypothetical protein","12","12","1","1","1999","","","","446","446","446","NC_004829_01310","NC_017502_01311","NC_017503_00504","NC_018406_01230","NC_018407_01207","NC_018408_01257","NC_018409_01223","NC_018410_01181","NC_018411_01203","NC_018412_01238","NC_018413_01191","NC_023030_01282"
"rpsJ","","30S ribosomal protein S10","12","12","1","1","841","","","","365","365","365","NC_004829_00108","NC_017502_00108","NC_017503_00106","NC_018406_00108","NC_018407_00109","NC_018408_00108","NC_018409_00108","NC_018410_00108","NC_018411_00108","NC_018412_00108","NC_018413_00108","NC_023030_00109"
"group_1707","","hypothetical protein","12","12","1","1","22","","","","806","806","806","NC_004829_00794","NC_017502_00796","NC_017503_01040","NC_018406_00742","NC_018407_00719","NC_018408_00720","NC_018409_00726","NC_018410_00699","NC_018411_00707","NC_018412_00710","NC_018413_00704","NC_023030_00750"
"group_1708","","hypothetical protein","12","12","1","1","140","","","","515","515","515","NC_004829_01679","NC_017502_01681","NC_017503_01611","NC_018406_01587","NC_018407_01565","NC_018408_01613","NC_018409_01581","NC_018410_01535","NC_018411_01538","NC_018412_01594","NC_018413_01518","NC_023030_01650"
"ffh_2","","Signal recognition particle protein","12","12","1","1","1359","","","","1121","1121","1121","NC_004829_00718","NC_017502_00719","NC_017503_01113","NC_018406_00672","NC_018407_00650","NC_018408_00651","NC_018409_00657","NC_018410_00630","NC_018411_00638","NC_018412_00641","NC_018413_00635","NC_023030_00670"
"scpB","","Segregation and condensation protein B","12","12","1","1","1638","","","","536","875","624","NC_004829_00957","NC_017502_00958","NC_017503_00881","NC_018406_00876","NC_018407_00853","NC_018408_00893","NC_018409_00859","NC_018410_00833","NC_018411_00841","NC_018412_00884","NC_018413_00838","NC_023030_00900"
"pgcA_2","","Phosphoglucomutase","12","12","1","1","2034","","","","635","635","635","NC_004829_01343","NC_017502_01344","NC_017503_00471","NC_018406_01264","NC_018407_01241","NC_018408_01291","NC_018409_01257","NC_018410_01215","NC_018411_01237","NC_018412_01272","NC_018413_01225","NC_023030_01318"
"clpB_2","","Chaperone protein ClpB","12","12","1","1","1271","","","","635","635","635","NC_004829_01142","NC_017502_01143","NC_017503_00705","NC_018406_01063","NC_018407_01040","NC_018408_01080","NC_018409_01055","NC_018410_01013","NC_018411_01035","NC_018412_01070","NC_018413_01024","NC_023030_01114"
"efp","","Elongation factor P","12","12","1","1","1236","","","","566","566","566","NC_004829_01179","NC_017502_01180","NC_017503_00668","NC_018406_01098","NC_018407_01075","NC_018408_01115","NC_018409_01090","NC_018410_01048","NC_018411_01070","NC_018412_01105","NC_018413_01059","NC_023030_01150"
"group_1720","","DegV domain-containing protein","12","12","1","1","1383","","","","392","392","392","NC_004829_00764","NC_017502_00765","NC_017503_01069","NC_018406_00714","NC_018407_00691","NC_018408_00692","NC_018409_00698","NC_018410_00671","NC_018411_00679","NC_018412_00682","NC_018413_00676","NC_023030_00721"
"group_1721","","hypothetical protein","12","12","1","1","1453","","","","773","773","773","NC_004829_01079","NC_017502_01080","NC_017503_00767","NC_018406_01008","NC_018407_00985","NC_018408_01025","NC_018409_01000","NC_018410_00958","NC_018411_00980","NC_018412_01015","NC_018413_00969","NC_023030_01052"
"group_1722","","hypothetical protein","12","12","1","1","1222","","","","485","485","485","NC_004829_01192","NC_017502_01194","NC_017503_00655","NC_018406_01111","NC_018407_01088","NC_018408_01128","NC_018409_01103","NC_018410_01061","NC_018411_01083","NC_018412_01118","NC_018413_01072","NC_023030_01165"
"group_1724","","hypothetical protein","12","12","1","1","1475","","","","500","500","500","NC_004829_01059","NC_017502_01060","NC_017503_00790","NC_018406_00988","NC_018407_00965","NC_018408_01005","NC_018409_00980","NC_018410_00938","NC_018411_00960","NC_018412_00995","NC_018413_00949","NC_023030_01030"
"deoC1","","Deoxyribose-phosphate aldolase 1","12","12","1","1","2039","","","","671","671","671","NC_004829_01348","NC_017502_01349","NC_017503_00466","NC_018406_01269","NC_018407_01246","NC_018408_01296","NC_018409_01262","NC_018410_01220","NC_018411_01242","NC_018412_01277","NC_018413_01230","NC_023030_01323"
"rpoC_1","","DNA-directed RNA polymerase subunit beta'","12","12","1","1","606","","","","782","782","782","NC_004829_00539","NC_017502_00538","NC_017503_01287","NC_018406_00533","NC_018407_00511","NC_018408_00511","NC_018409_00516","NC_018410_00491","NC_018411_00498","NC_018412_00500","NC_018413_00495","NC_023030_00495"
"gapN_1","","NADP-dependent glyceraldehyde-3-phosphate dehydrogenase","12","12","1","1","992","","","","635","635","635","NC_004829_00297","NC_017502_00296","NC_017503_00290","NC_018406_00295","NC_018407_00296","NC_018408_00295","NC_018409_00296","NC_018410_00294","NC_018411_00295","NC_018412_00295","NC_018413_00293","NC_023030_00306"
"group_173","","hypothetical protein","12","12","1","1","407","","","","134","1103","1008","NC_004829_01406","NC_017502_01406","NC_017503_01342","NC_018406_01334","NC_018407_01311","NC_018408_01361","NC_018409_01326","NC_018410_01282","NC_018411_01304","NC_018412_01341","NC_018413_01284","NC_023030_01376"
"dnaC","","Replicative DNA helicase","12","12","1","1","391","","","","1619","1619","1619","NC_004829_01422","NC_017502_01422","NC_017503_01358","NC_018406_01350","NC_018407_01327","NC_018408_01377","NC_018409_01343","NC_018410_01298","NC_018411_01320","NC_018412_01357","NC_018413_01300","NC_023030_01393"
"groL","","60 kDa chaperonin","12","12","1","1","1305","","","","1604","1604","1604","NC_004829_01109","NC_017502_01110","NC_017503_00738","NC_018406_01031","NC_018407_01008","NC_018408_01048","NC_018409_01023","NC_018410_00981","NC_018411_01003","NC_018412_01038","NC_018413_00992","NC_023030_01079"
"uvrA_2","","UvrABC system protein A","12","12","1","1","784","","","","584","584","584","NC_004829_00170","NC_017502_00170","NC_017503_00168","NC_018406_00171","NC_018407_00172","NC_018408_00171","NC_018409_00171","NC_018410_00171","NC_018411_00171","NC_018412_00171","NC_018413_00171","NC_023030_00173"
"rpmE","","50S ribosomal protein L31","12","12","1","1","994","","","","308","308","308","NC_004829_00300","NC_017502_00299","NC_017503_00292","NC_018406_00298","NC_018407_00299","NC_018408_00298","NC_018409_00299","NC_018410_00297","NC_018411_00298","NC_018412_00298","NC_018413_00296","NC_023030_00308"
"atpD_2","","ATP synthase subunit beta","12","12","1","1","318","","","","1364","1364","1364","NC_004829_01499","NC_017502_01499","NC_017503_01434","NC_018406_01425","NC_018407_01404","NC_018408_01452","NC_018409_01419","NC_018410_01374","NC_018411_01396","NC_018412_01433","NC_018413_01376","NC_023030_01469"
"group_1741","","hypothetical protein","12","12","1","1","1553","","","","1088","1088","1088","NC_004829_00923","NC_017502_00924","NC_017503_00915","NC_018406_00837","NC_018407_00814","NC_018408_00854","NC_018409_00821","NC_018410_00794","NC_018411_00803","NC_018412_00845","NC_018413_00799","NC_023030_00867"
"soj","","Sporulation initiation inhibitor protein Soj","12","12","1","1","909","","","","788","788","788","NC_004829_00001","NC_017502_00001","NC_017503_00001","NC_018406_00001","NC_018407_00001","NC_018408_00001","NC_018409_00001","NC_018410_00001","NC_018411_00001","NC_018412_00001","NC_018413_00001","NC_023030_00001"
"rpoA_1","","DNA-directed RNA polymerase subunit alpha","12","12","1","1","364","","","","650","650","650","NC_004829_01449","NC_017502_01449","NC_017503_01385","NC_018406_01377","NC_018407_01354","NC_018408_01404","NC_018409_01370","NC_018410_01325","NC_018411_01347","NC_018412_01384","NC_018413_01327","NC_023030_01420"
"bceA","","Bacitracin export ATP-binding protein BceA","12","12","1","1","898","","","","599","605","601","NC_004829_00049","NC_017502_00049","NC_017503_00049","NC_018406_00050","NC_018407_00050","NC_018408_00050","NC_018409_00050","NC_018410_00050","NC_018411_00050","NC_018412_00050","NC_018413_00050","NC_023030_00052"
"group_1745","","hypothetical protein","12","12","1","1","878","","","","344","344","344","NC_004829_00069","NC_017502_00069","NC_017503_00068","NC_018406_00070","NC_018407_00070","NC_018408_00070","NC_018409_00070","NC_018410_00070","NC_018411_00070","NC_018412_00070","NC_018413_00070","NC_023030_00072"
"dnaJ_2","","Chaperone protein DnaJ","12","12","1","1","1009","","","","1175","1175","1175","NC_004829_00317","NC_017502_00315","NC_017503_00309","NC_018406_00316","NC_018407_00317","NC_018408_00316","NC_018409_00317","NC_018410_00315","NC_018411_00316","NC_018412_00316","NC_018413_00314","NC_023030_00325"
"ispG","","4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase (flavodoxin)","12","12","1","1","1405","","","","1169","1169","1169","NC_004829_00737","NC_017502_00738","NC_017503_01097","NC_018406_00688","NC_018407_00665","NC_018408_00666","NC_018409_00672","NC_018410_00645","NC_018411_00653","NC_018412_00656","NC_018413_00650","NC_023030_00694"
"atpD_1","","ATP synthase subunit beta","12","12","1","1","1389","","","","1415","1415","1415","NC_004829_00754","NC_017502_00755","NC_017503_01079","NC_018406_00704","NC_018407_00681","NC_018408_00682","NC_018409_00688","NC_018410_00661","NC_018411_00669","NC_018412_00672","NC_018413_00666","NC_023030_00711"
"prkC_2","","Serine/threonine-protein kinase PrkC","12","12","1","1","349","","","","770","770","770","NC_004829_01467","NC_017502_01467","NC_017503_01403","NC_018406_01395","NC_018407_01372","NC_018408_01422","NC_018409_01388","NC_018410_01343","NC_018411_01365","NC_018412_01402","NC_018413_01345","NC_023030_01438"
"rnj1","","Ribonuclease J 1","12","12","1","1","948","","","","1700","1700","1700","NC_004829_00042","NC_017502_00042","NC_017503_00042","NC_018406_00042","NC_018407_00042","NC_018408_00042","NC_018409_00042","NC_018410_00042","NC_018411_00042","NC_018412_00042","NC_018413_00042","NC_023030_00041"
"rplB","","50S ribosomal protein L2","12","12","1","1","836","","","","767","767","767","NC_004829_00113","NC_017502_00113","NC_017503_00111","NC_018406_00113","NC_018407_00114","NC_018408_00113","NC_018409_00113","NC_018410_00113","NC_018411_00113","NC_018412_00113","NC_018413_00113","NC_023030_00114"
"rplI","","50S ribosomal protein L9","12","12","1","1","390","","","","443","443","443","NC_004829_01423","NC_017502_01423","NC_017503_01359","NC_018406_01351","NC_018407_01328","NC_018408_01378","NC_018409_01344","NC_018410_01299","NC_018411_01321","NC_018412_01358","NC_018413_01301","NC_023030_01394"
"rpsH","","30S ribosomal protein S8","12","12","1","1","824","","","","398","398","398","NC_004829_00126","NC_017502_00126","NC_017503_00124","NC_018406_00126","NC_018407_00127","NC_018408_00126","NC_018409_00126","NC_018410_00126","NC_018411_00126","NC_018412_00126","NC_018413_00126","NC_023030_00127"
"group_1768","","hypothetical protein","12","12","1","1","385","","","","443","443","443","NC_004829_01428","NC_017502_01428","NC_017503_01364","NC_018406_01356","NC_018407_01333","NC_018408_01383","NC_018409_01349","NC_018410_01304","NC_018411_01326","NC_018412_01363","NC_018413_01306","NC_023030_01399"
"group_1769","","hypothetical protein","12","12","1","1","1319","","","","365","365","365","NC_004829_00678","NC_017502_00678","NC_017503_01153","NC_018406_00630","NC_018407_00608","NC_018408_00609","NC_018409_00614","NC_018410_00587","NC_018411_00596","NC_018412_00598","NC_018413_00593","NC_023030_00628"
"group_177","","hypothetical protein","12","12","1","1","246","","","","176","833","698","NC_004829_01584","NC_017502_01585","NC_017503_01515","NC_018406_01492","NC_018407_01471","NC_018408_01519","NC_018409_01487","NC_018410_01441","NC_018411_01444","NC_018412_01500","NC_018413_01424","NC_023030_01552"
"rplA_1","","50S ribosomal protein L1","12","12","1","1","303","","","","320","320","320","NC_004829_01518","NC_017502_01518","NC_017503_01451","NC_018406_01443","NC_018407_01422","NC_018408_01470","NC_018409_01437","NC_018410_01392","NC_018411_01414","NC_018412_01451","NC_018413_01394","NC_023030_01487"
"valS_3","","Valine--tRNA ligase","12","12","1","1","2008","","","","545","545","545","NC_004829_01317","NC_017502_01318","NC_017503_00497","NC_018406_01239","NC_018407_01216","NC_018408_01266","NC_018409_01232","NC_018410_01190","NC_018411_01212","NC_018412_01247","NC_018413_01200","NC_023030_01291"
"ppa_2","","Inorganic pyrophosphatase","12","12","1","1","1334","","","","368","368","368","NC_004829_00695","NC_017502_00695","NC_017503_01136","NC_018406_00647","NC_018407_00625","NC_018408_00626","NC_018409_00631","NC_018410_00604","NC_018411_00613","NC_018412_00615","NC_018413_00610","NC_023030_00646"
"nox_2","","NADH oxidase","12","12","1","1","1288","","","","341","341","341","NC_004829_01126","NC_017502_01127","NC_017503_00721","NC_018406_01047","NC_018407_01024","NC_018408_01064","NC_018409_01039","NC_018410_00997","NC_018411_01019","NC_018412_01054","NC_018413_01008","NC_023030_01095"
"group_1774","","hypothetical protein","12","12","1","1","1376","","","","800","800","800","NC_004829_00771","NC_017502_00772","NC_017503_01062","NC_018406_00721","NC_018407_00698","NC_018408_00699","NC_018409_00705","NC_018410_00678","NC_018411_00686","NC_018412_00689","NC_018413_00683","NC_023030_00728"
"tkt_1","","Transketolase","12","12","1","1","888","","","","530","530","530","NC_004829_00058","NC_017502_00058","NC_017503_00058","NC_018406_00060","NC_018407_00060","NC_018408_00060","NC_018409_00060","NC_018410_00060","NC_018411_00060","NC_018412_00060","NC_018413_00060","NC_023030_00061"
"rbfA","","Ribosome-binding factor A","12","12","1","1","698","","","","359","359","359","NC_004829_00246","NC_017502_00245","NC_017503_00237","NC_018406_00243","NC_018407_00244","NC_018408_00243","NC_018409_00244","NC_018410_00242","NC_018411_00244","NC_018412_00243","NC_018413_00242","NC_023030_00251"
"pstB3_1","","Phosphate import ATP-binding protein PstB 3","12","12","1","1","862","","","","623","623","623","NC_004829_00089","NC_017502_00089","NC_017503_00088","NC_018406_00089","NC_018407_00089","NC_018408_00089","NC_018409_00089","NC_018410_00089","NC_018411_00089","NC_018412_00089","NC_018413_00089","NC_023030_00093"
"group_1780","","putative ABC transporter permease MG468 ","12","12","1","1","902","","","","701","707","705","NC_004829_00045","NC_017502_00045","NC_017503_00045","NC_018406_00045","NC_018407_00045","NC_018408_00045","NC_018409_00045","NC_018410_00045","NC_018411_00045","NC_018412_00045","NC_018413_00045","NC_023030_00048"
"tkt_3","","Transketolase","12","12","1","1","2015","","","","992","992","992","NC_004829_01324","NC_017502_01325","NC_017503_00490","NC_018406_01246","NC_018407_01223","NC_018408_01273","NC_018409_01239","NC_018410_01197","NC_018411_01219","NC_018412_01254","NC_018413_01207","NC_023030_01299"
"group_1785","","hypothetical protein","12","12","1","1","1016","","","","347","347","347","NC_004829_00324","NC_017502_00322","NC_017503_00316","NC_018406_00323","NC_018407_00324","NC_018408_00323","NC_018409_00324","NC_018410_00322","NC_018411_00323","NC_018412_00323","NC_018413_00321","NC_023030_00332"
"rplA_2","","50S ribosomal protein L1","12","12","1","1","302","","","","359","359","359","NC_004829_01519","NC_017502_01519","NC_017503_01452","NC_018406_01444","NC_018407_01423","NC_018408_01471","NC_018409_01438","NC_018410_01393","NC_018411_01415","NC_018412_01452","NC_018413_01395","NC_023030_01488"
"hmw2","","Cytadherence high molecular weight protein 2","12","12","1","1","21","","","","4874","4874","4874","NC_004829_00793","NC_017502_00795","NC_017503_01041","NC_018406_00741","NC_018407_00718","NC_018408_00719","NC_018409_00725","NC_018410_00698","NC_018411_00706","NC_018412_00709","NC_018413_00703","NC_023030_00749"
"group_1794","","hypothetical protein","12","12","1","1","2234","","","","1343","1343","1343","NC_004829_00810","NC_017502_00812","NC_017503_01023","NC_018406_00761","NC_018407_00738","NC_018408_00739","NC_018409_00745","NC_018410_00718","NC_018411_00726","NC_018412_00729","NC_018413_00723","NC_023030_00767"
"dnaJ_9","","Chaperone protein DnaJ","12","12","1","1","2227","","","","1025","1025","1025","NC_004829_00817","NC_017502_00819","NC_017503_01015","NC_018406_00768","NC_018407_00745","NC_018408_00746","NC_018409_00752","NC_018410_00725","NC_018411_00733","NC_018412_00736","NC_018413_00730","NC_023030_00774"
"group_1796","","hypothetical protein","12","12","1","1","328","","","","383","383","383","NC_004829_01488","NC_017502_01488","NC_017503_01424","NC_018406_01415","NC_018407_01393","NC_018408_01442","NC_018409_01409","NC_018410_01364","NC_018411_01386","NC_018412_01423","NC_018413_01366","NC_023030_01459"
"lon1_3","","Lon protease 1","12","12","1","1","1423","","","","1307","1307","1307","NC_004829_00905","NC_017502_00906","NC_017503_00934","NC_018406_00815","NC_018407_00792","NC_018408_00832","NC_018409_00799","NC_018410_00772","NC_018411_00781","NC_018412_00823","NC_018413_00777","NC_023030_00849"
"rnj2","","Ribonuclease J 2","12","12","1","1","792","","","","1730","1730","1730","NC_004829_00160","NC_017502_00160","NC_017503_00158","NC_018406_00161","NC_018407_00162","NC_018408_00161","NC_018409_00161","NC_018410_00161","NC_018411_00161","NC_018412_00161","NC_018413_00161","NC_023030_00163"
"group_1799","","hypothetical protein","12","12","1","1","1004","","","","449","449","449","NC_004829_00311","NC_017502_00310","NC_017503_00303","NC_018406_00310","NC_018407_00311","NC_018408_00310","NC_018409_00311","NC_018410_00309","NC_018411_00310","NC_018412_00310","NC_018413_00308","NC_023030_00319"
"group_180","","hypothetical protein","12","12","1","1","811","","","","260","260","260","NC_004829_00142","NC_017502_00142","NC_017503_00141","NC_018406_00143","NC_018407_00144","NC_018408_00143","NC_018409_00143","NC_018410_00143","NC_018411_00143","NC_018412_00143","NC_018413_00143","NC_023030_00144"
"metG_2","","Methionine--tRNA ligase","12","12","1","1","1093","","","","812","812","812","NC_004829_00338","NC_017502_00336","NC_017503_00330","NC_018406_00380","NC_018407_00359","NC_018408_00358","NC_018409_00359","NC_018410_00346","NC_018411_00347","NC_018412_00347","NC_018413_00345","NC_023030_00345"
"group_1807","","hypothetical protein","12","12","1","1","617","","","","377","377","377","NC_004829_00529","NC_017502_00528","NC_017503_01295","NC_018406_00523","NC_018407_00501","NC_018408_00501","NC_018409_00506","NC_018410_00481","NC_018411_00488","NC_018412_00490","NC_018413_00485","NC_023030_00487"
"natA","","ABC transporter ATP-binding protein NatA","12","12","1","1","735","","","","404","413","407","NC_004829_00217","NC_017502_00216","NC_017503_00208","NC_018406_00213","NC_018407_00214","NC_018408_00213","NC_018409_00213","NC_018410_00212","NC_018411_00214","NC_018412_00213","NC_018413_00212","NC_023030_00215"
"nadD","","putative nicotinate-nucleotide adenylyltransferase","12","12","1","1","1667","","","","341","341","341","NC_004829_00982","NC_017502_00983","NC_017503_00858","NC_018406_00902","NC_018407_00879","NC_018408_00919","NC_018409_00885","NC_018410_00859","NC_018411_00867","NC_018412_00910","NC_018413_00864","NC_023030_00926"
"pgcA_1","","Phosphoglucomutase","12","12","1","1","2033","","","","386","386","386","NC_004829_01342","NC_017502_01343","NC_017503_00472","NC_018406_01263","NC_018407_01240","NC_018408_01290","NC_018409_01256","NC_018410_01214","NC_018411_01236","NC_018412_01271","NC_018413_01224","NC_023030_01317"
"rplW","","50S ribosomal protein L23","12","12","1","1","837","","","","326","326","326","NC_004829_00112","NC_017502_00112","NC_017503_00110","NC_018406_00112","NC_018407_00113","NC_018408_00112","NC_018409_00112","NC_018410_00112","NC_018411_00112","NC_018412_00112","NC_018413_00112","NC_023030_00113"
"group_1816","","hypothetical protein","12","12","1","1","1186","","","","659","659","659","NC_004829_00445","NC_017502_00443","NC_017503_00430","NC_018406_00480","NC_018407_00459","NC_018408_00459","NC_018409_00459","NC_018410_00446","NC_018411_00447","NC_018412_00448","NC_018413_00445","NC_023030_00444"
"group_1817","","hypothetical protein","12","12","1","1","1015","","","","599","599","599","NC_004829_00323","NC_017502_00321","NC_017503_00315","NC_018406_00322","NC_018407_00323","NC_018408_00322","NC_018409_00323","NC_018410_00321","NC_018411_00322","NC_018412_00322","NC_018413_00320","NC_023030_00331"
"group_1818","","hypothetical protein","12","12","1","1","342","","","","356","356","356","NC_004829_01474","NC_017502_01474","NC_017503_01410","NC_018406_01402","NC_018407_01379","NC_018408_01429","NC_018409_01395","NC_018410_01350","NC_018411_01372","NC_018412_01409","NC_018413_01352","NC_023030_01445"
"rpoC_2","","DNA-directed RNA polymerase subunit beta'","12","12","1","1","605","","","","614","614","614","NC_004829_00540","NC_017502_00539","NC_017503_01286","NC_018406_00534","NC_018407_00512","NC_018408_00512","NC_018409_00517","NC_018410_00492","NC_018411_00499","NC_018412_00501","NC_018413_00496","NC_023030_00496"
"prfA_2","","Peptide chain release factor 1","12","12","1","1","996","","","","380","380","380","NC_004829_00302","NC_017502_00301","NC_017503_00294","NC_018406_00300","NC_018407_00301","NC_018408_00300","NC_018409_00301","NC_018410_00299","NC_018411_00300","NC_018412_00300","NC_018413_00298","NC_023030_00310"
"group_1830","","hypothetical protein","12","12","1","1","886","","","","1145","1145","1145","NC_004829_00060","NC_017502_00060","NC_017503_00060","NC_018406_00062","NC_018407_00062","NC_018408_00062","NC_018409_00062","NC_018410_00062","NC_018411_00062","NC_018412_00062","NC_018413_00062","NC_023030_00063"
"pyrH","","Uridylate kinase","12","12","1","1","781","","","","710","710","710","NC_004829_00174","NC_017502_00174","NC_017503_00172","NC_018406_00175","NC_018407_00176","NC_018408_00175","NC_018409_00175","NC_018410_00175","NC_018411_00175","NC_018412_00175","NC_018413_00175","NC_023030_00177"
"atpA_3","","ATP synthase subunit alpha, sodium ion specific","12","12","1","1","320","","","","1118","1118","1118","NC_004829_01497","NC_017502_01497","NC_017503_01432","NC_018406_01423","NC_018407_01402","NC_018408_01450","NC_018409_01417","NC_018410_01372","NC_018411_01394","NC_018412_01431","NC_018413_01374","NC_023030_01467"
"group_1836","","hypothetical protein","12","12","1","1","819","","","","932","932","932","NC_004829_00133","NC_017502_00133","NC_017503_00131","NC_018406_00133","NC_018407_00134","NC_018408_00133","NC_018409_00133","NC_018410_00133","NC_018411_00133","NC_018412_00133","NC_018413_00133","NC_023030_00134"
"fba_1","","Fructose-bisphosphate aldolase","12","12","1","1","308","","","","422","422","422","NC_004829_01513","NC_017502_01513","NC_017503_01446","NC_018406_01438","NC_018407_01417","NC_018408_01465","NC_018409_01432","NC_018410_01387","NC_018411_01409","NC_018412_01446","NC_018413_01389","NC_023030_01482"
"ecfA1","","Energy-coupling factor transporter ATP-binding protein EcfA1","12","12","1","1","2029","","","","839","839","839","NC_004829_01338","NC_017502_01339","NC_017503_00476","NC_018406_01259","NC_018407_01236","NC_018408_01286","NC_018409_01252","NC_018410_01210","NC_018411_01232","NC_018412_01267","NC_018413_01220","NC_023030_01313"
"ypdF","","Aminopeptidase YpdF","12","12","1","1","1505","","","","461","461","461","NC_004829_01050","NC_017502_01051","NC_017503_00803","NC_018406_00979","NC_018407_00956","NC_018408_00996","NC_018409_00971","NC_018410_00929","NC_018411_00951","NC_018412_00986","NC_018413_00940","NC_023030_01017"
"group_184","","hypothetical protein","12","12","1","1","984","","","","833","1445","1394","NC_004829_00282","NC_017502_00281","NC_017503_00275","NC_018406_00280","NC_018407_00281","NC_018408_00280","NC_018409_00281","NC_018410_00279","NC_018411_00280","NC_018412_00280","NC_018413_00278","NC_023030_00291"
"tig","","Trigger factor","12","12","1","1","1419","","","","905","905","905","NC_004829_00901","NC_017502_00902","NC_017503_00938","NC_018406_00811","NC_018407_00788","NC_018408_00828","NC_018409_00795","NC_018410_00768","NC_018411_00777","NC_018412_00819","NC_018413_00773","NC_023030_00845"
"prfA_1","","Peptide chain release factor 1","12","12","1","1","995","","","","440","440","440","NC_004829_00301","NC_017502_00300","NC_017503_00293","NC_018406_00299","NC_018407_00300","NC_018408_00299","NC_018409_00300","NC_018410_00298","NC_018411_00299","NC_018412_00299","NC_018413_00297","NC_023030_00309"
"rpoB_3","","DNA-directed RNA polymerase subunit beta","12","12","1","1","609","","","","1151","1151","1151","NC_004829_00536","NC_017502_00535","NC_017503_01290","NC_018406_00530","NC_018407_00508","NC_018408_00508","NC_018409_00513","NC_018410_00488","NC_018411_00495","NC_018412_00497","NC_018413_00492","NC_023030_00492"
"group_1854","","hypothetical protein","12","12","1","1","141","","","","509","509","509","NC_004829_01678","NC_017502_01680","NC_017503_01610","NC_018406_01586","NC_018407_01564","NC_018408_01612","NC_018409_01580","NC_018410_01534","NC_018411_01537","NC_018412_01593","NC_018413_01517","NC_023030_01649"
"yidA","","Sugar phosphatase YidA","12","12","1","1","1952","","","","869","869","869","NC_004829_01274","NC_017502_01275","NC_017503_00541","NC_018406_01192","NC_018407_01169","NC_018408_01219","NC_018409_01185","NC_018410_01143","NC_018411_01164","NC_018412_01200","NC_018413_01153","NC_023030_01243"
"group_1857","","hypothetical protein","12","12","1","1","115","","","","302","302","302","NC_004829_00633","NC_017502_00632","NC_017503_01193","NC_018406_00625","NC_018407_00603","NC_018408_00604","NC_018409_00609","NC_018410_00582","NC_018411_00591","NC_018412_00593","NC_018413_00588","NC_023030_00591"
"group_1858","","hypothetical protein","12","12","1","1","1325","","","","311","311","311","NC_004829_00685","NC_017502_00685","NC_017503_01146","NC_018406_00637","NC_018407_00615","NC_018408_00616","NC_018409_00621","NC_018410_00594","NC_018411_00603","NC_018412_00605","NC_018413_00600","NC_023030_00635"
"group_1859","","hypothetical protein","12","12","1","1","27","","","","941","941","941","NC_004829_00799","NC_017502_00801","NC_017503_01035","NC_018406_00747","NC_018407_00724","NC_018408_00725","NC_018409_00731","NC_018410_00704","NC_018411_00712","NC_018412_00715","NC_018413_00709","NC_023030_00755"
"group_186","","hypothetical protein","12","12","1","1","1164","","","","545","647","556","NC_004829_00416","NC_017502_00414","NC_017503_00402","NC_018406_00451","NC_018407_00430","NC_018408_00430","NC_018409_00430","NC_018410_00417","NC_018411_00418","NC_018412_00419","NC_018413_00416","NC_023030_00414"
"pyk","","Pyruvate kinase","12","12","1","1","1303","","","","1526","1526","1526","NC_004829_01111","NC_017502_01112","NC_017503_00736","NC_018406_01033","NC_018407_01010","NC_018408_01050","NC_018409_01025","NC_018410_00983","NC_018411_01005","NC_018412_01040","NC_018413_00994","NC_023030_01081"
"lptB","","Lipopolysaccharide export system ATP-binding protein LptB","12","12","1","1","1353","","","","431","431","431","NC_004829_00712","NC_017502_00712","NC_017503_01119","NC_018406_00666","NC_018407_00644","NC_018408_00644","NC_018409_00650","NC_018410_00623","NC_018411_00632","NC_018412_00634","NC_018413_00629","NC_023030_00664"
"adk_1","","Adenylate kinase","12","12","1","1","817","","","","344","344","344","NC_004829_00135","NC_017502_00135","NC_017503_00133","NC_018406_00135","NC_018407_00136","NC_018408_00135","NC_018409_00135","NC_018410_00135","NC_018411_00135","NC_018412_00135","NC_018413_00135","NC_023030_00136"
"group_1869","","hypothetical protein","12","12","1","1","1581","","","","383","383","383","NC_004829_01090","NC_017502_01091","NC_017503_00757","NC_018406_01018","NC_018407_00995","NC_018408_01035","NC_018409_01010","NC_018410_00968","NC_018411_00990","NC_018412_01025","NC_018413_00979","NC_023030_01064"
"hisS_2","","Histidine--tRNA ligase","12","12","1","1","1166","","","","194","194","194","NC_004829_00418","NC_017502_00416","NC_017503_00404","NC_018406_00453","NC_018407_00432","NC_018408_00432","NC_018409_00432","NC_018410_00419","NC_018411_00420","NC_018412_00421","NC_018413_00418","NC_023030_00416"
"group_1870","","hypothetical protein","12","12","1","1","315","","","","362","362","362","NC_004829_01503","NC_017502_01503","NC_017503_01437","NC_018406_01428","NC_018407_01407","NC_018408_01455","NC_018409_01422","NC_018410_01377","NC_018411_01399","NC_018412_01436","NC_018413_01379","NC_023030_01473"
"group_1871","","hypothetical protein","12","12","1","1","1412","","","","521","521","521","NC_004829_00732","NC_017502_00733","NC_017503_01102","NC_018406_00683","NC_018407_00660","NC_018408_00661","NC_018409_00667","NC_018410_00640","NC_018411_00648","NC_018412_00651","NC_018413_00645","NC_023030_00688"
"group_1872","","hypothetical protein","12","12","1","1","764","","","","677","677","677","NC_004829_00191","NC_017502_00191","NC_017503_00189","NC_018406_00192","NC_018407_00193","NC_018408_00192","NC_018409_00192","NC_018410_00192","NC_018411_00192","NC_018412_00192","NC_018413_00192","NC_023030_00194"
"dinB","","DNA polymerase IV","12","12","1","1","2018","","","","506","506","506","NC_004829_01327","NC_017502_01328","NC_017503_00487","NC_018406_01249","NC_018407_01226","NC_018408_01276","NC_018409_01242","NC_018410_01200","NC_018411_01222","NC_018412_01257","NC_018413_01210","NC_023030_01302"
"obg","","GTPase Obg","12","12","1","1","1476","","","","977","977","977","NC_004829_01058","NC_017502_01059","NC_017503_00791","NC_018406_00987","NC_018407_00964","NC_018408_01004","NC_018409_00979","NC_018410_00937","NC_018411_00959","NC_018412_00994","NC_018413_00948","NC_023030_01029"
"plsX_2","","Phosphate acyltransferase","12","12","1","1","1266","","","","410","410","410","NC_004829_01146","NC_017502_01147","NC_017503_00701","NC_018406_01067","NC_018407_01044","NC_018408_01084","NC_018409_01059","NC_018410_01017","NC_018411_01039","NC_018412_01074","NC_018413_01028","NC_023030_01119"
"relA_2","","GTP pyrophosphokinase","12","12","1","1","1171","","","","560","827","772","NC_004829_00425","NC_017502_00423","NC_017503_00411","NC_018406_00460","NC_018407_00439","NC_018408_00439","NC_018409_00439","NC_018410_00426","NC_018411_00427","NC_018412_00428","NC_018413_00425","NC_023030_00424"
"rplO","","50S ribosomal protein L15","12","12","1","1","820","","","","443","443","443","NC_004829_00132","NC_017502_00132","NC_017503_00130","NC_018406_00132","NC_018407_00133","NC_018408_00132","NC_018409_00132","NC_018410_00132","NC_018411_00132","NC_018412_00132","NC_018413_00132","NC_023030_00133"
"group_1883","","hypothetical protein","12","12","1","1","23","","","","455","455","455","NC_004829_00795","NC_017502_00797","NC_017503_01039","NC_018406_00743","NC_018407_00720","NC_018408_00721","NC_018409_00727","NC_018410_00700","NC_018411_00708","NC_018412_00711","NC_018413_00705","NC_023030_00751"
"rpoC_3","","DNA-directed RNA polymerase subunit beta'","12","12","1","1","604","","","","764","764","764","NC_004829_00541","NC_017502_00540","NC_017503_01285","NC_018406_00535","NC_018407_00513","NC_018408_00513","NC_018409_00518","NC_018410_00493","NC_018411_00500","NC_018412_00502","NC_018413_00497","NC_023030_00497"
"pcrA_3","","ATP-dependent DNA helicase PcrA","12","12","1","1","1558","","","","812","812","812","NC_004829_00918","NC_017502_00919","NC_017503_00920","NC_018406_00832","NC_018407_00809","NC_018408_00849","NC_018409_00816","NC_018410_00789","NC_018411_00798","NC_018412_00840","NC_018413_00794","NC_023030_00862"
"rplD","","50S ribosomal protein L4","12","12","1","1","838","","","","539","539","539","NC_004829_00111","NC_017502_00111","NC_017503_00109","NC_018406_00111","NC_018407_00112","NC_018408_00111","NC_018409_00111","NC_018410_00111","NC_018411_00111","NC_018412_00111","NC_018413_00111","NC_023030_00112"
"sigA_1","","RNA polymerase sigma factor SigA","12","12","1","1","1538","","","","356","356","356","NC_004829_00935","NC_017502_00936","NC_017503_00903","NC_018406_00849","NC_018407_00826","NC_018408_00866","NC_018409_00833","NC_018410_00806","NC_018411_00815","NC_018412_00857","NC_018413_00811","NC_023030_00878"
"stp_1","","Serine/threonine phosphatase stp","12","12","1","1","348","","","","404","404","404","NC_004829_01468","NC_017502_01468","NC_017503_01404","NC_018406_01396","NC_018407_01373","NC_018408_01423","NC_018409_01389","NC_018410_01344","NC_018411_01366","NC_018412_01403","NC_018413_01346","NC_023030_01439"
"group_1889","","hypothetical protein","12","12","1","1","884","","","","602","602","602","NC_004829_00062","NC_017502_00062","NC_017503_00062","NC_018406_00064","NC_018407_00064","NC_018408_00064","NC_018409_00064","NC_018410_00064","NC_018411_00064","NC_018412_00064","NC_018413_00064","NC_023030_00065"
"engB","","putative GTP-binding protein EngB","12","12","1","1","2011","","","","560","560","560","NC_004829_01320","NC_017502_01321","NC_017503_00494","NC_018406_01242","NC_018407_01219","NC_018408_01269","NC_018409_01235","NC_018410_01193","NC_018411_01215","NC_018412_01250","NC_018413_01203","NC_023030_01294"
"group_1897","","hypothetical protein","12","12","1","1","1106","","","","344","347","346","NC_004829_00362","NC_017502_00360","NC_017503_00353","NC_018406_00403","NC_018407_00382","NC_018408_00381","NC_018409_00382","NC_018410_00369","NC_018411_00370","NC_018412_00370","NC_018413_00368","NC_023030_00368"
"atpG_2","","ATP synthase gamma chain","12","12","1","1","1390","","","","629","629","629","NC_004829_00753","NC_017502_00754","NC_017503_01080","NC_018406_00703","NC_018407_00680","NC_018408_00681","NC_018409_00687","NC_018410_00660","NC_018411_00668","NC_018412_00671","NC_018413_00665","NC_023030_00710"
"group_1899","","hypothetical protein","12","12","1","1","1674","","","","620","620","620","NC_004829_00989","NC_017502_00990","NC_017503_00850","NC_018406_00909","NC_018407_00886","NC_018408_00926","NC_018409_00892","NC_018410_00866","NC_018411_00874","NC_018412_00917","NC_018413_00871","NC_023030_00933"
"group_190","","hypothetical protein","12","12","1","1","1175","","","","275","275","275","NC_004829_00429","NC_017502_00427","NC_017503_00415","NC_018406_00464","NC_018407_00443","NC_018408_00443","NC_018409_00443","NC_018410_00430","NC_018411_00431","NC_018412_00432","NC_018413_00429","NC_023030_00428"
"group_1900","","hypothetical protein","12","12","1","1","323","","","","491","491","491","NC_004829_01493","NC_017502_01493","NC_017503_01429","NC_018406_01420","NC_018407_01398","NC_018408_01447","NC_018409_01414","NC_018410_01369","NC_018411_01391","NC_018412_01428","NC_018413_01371","NC_023030_01464"
"yoaB","","Calcium-transporting ATPase 1","12","12","1","1","543","","","","635","635","635","NC_004829_00603","NC_017502_00602","NC_017503_01223","NC_018406_00596","NC_018407_00574","NC_018408_00574","NC_018409_00579","NC_018410_00554","NC_018411_00561","NC_018412_00563","NC_018413_00558","NC_023030_00560"
"group_1902","","hypothetical protein","12","12","1","1","1523","","","","431","431","431","NC_004829_00949","NC_017502_00950","NC_017503_00889","NC_018406_00863","NC_018407_00840","NC_018408_00880","NC_018409_00847","NC_018410_00820","NC_018411_00829","NC_018412_00871","NC_018413_00825","NC_023030_00892"
"pth","","Peptidyl-tRNA hydrolase","12","12","1","1","301","","","","551","551","551","NC_004829_01520","NC_017502_01520","NC_017503_01453","NC_018406_01445","NC_018407_01424","NC_018408_01472","NC_018409_01439","NC_018410_01394","NC_018411_01416","NC_018412_01453","NC_018413_01396","NC_023030_01489"
"group_1904","","hypothetical protein","12","12","1","1","2000","","","","701","701","701","NC_004829_01311","NC_017502_01312","NC_017503_00503","NC_018406_01231","NC_018407_01208","NC_018408_01258","NC_018409_01224","NC_018410_01182","NC_018411_01204","NC_018412_01239","NC_018413_01192","NC_023030_01283"
"group_1905","","hypothetical protein","12","12","1","1","370","","","","722","722","722","NC_004829_01443","NC_017502_01443","NC_017503_01379","NC_018406_01371","NC_018407_01348","NC_018408_01398","NC_018409_01364","NC_018410_01319","NC_018411_01341","NC_018412_01378","NC_018413_01321","NC_023030_01414"
"oppF_1","","Oligopeptide transport ATP-binding protein OppF","12","12","1","1","1233","","","","542","542","542","NC_004829_01183","NC_017502_01184","NC_017503_00664","NC_018406_01102","NC_018407_01079","NC_018408_01119","NC_018409_01094","NC_018410_01052","NC_018411_01074","NC_018412_01109","NC_018413_01063","NC_023030_01154"
"group_1907","","hypothetical protein","12","12","1","1","521","","","","545","545","545","NC_004829_00624","NC_017502_00623","NC_017503_01202","NC_018406_00616","NC_018407_00594","NC_018408_00595","NC_018409_00600","NC_018410_00574","NC_018411_00582","NC_018412_00584","NC_018413_00579","NC_023030_00582"
"rpsG_2","","30S ribosomal protein S7","12","12","1","1","2196","","","","305","305","305","NC_004829_01243","NC_017502_01244","NC_017503_00609","NC_018406_01161","NC_018407_01138","NC_018408_01188","NC_018409_01154","NC_018410_01112","NC_018411_01133","NC_018412_01169","NC_018413_01122","NC_023030_01211"
"tuf_1","","Elongation factor Tu","12","12","1","1","575","","","","554","554","554","NC_004829_00567","NC_017502_00566","NC_017503_01257","NC_018406_00563","NC_018407_00541","NC_018408_00541","NC_018409_00546","NC_018410_00521","NC_018411_00528","NC_018412_00530","NC_018413_00525","NC_023030_00525"
"group_1912","","hypothetical protein","12","12","1","1","972","","","","428","428","428","NC_004829_00269","NC_017502_00268","NC_017503_00261","NC_018406_00267","NC_018407_00268","NC_018408_00267","NC_018409_00268","NC_018410_00266","NC_018411_00267","NC_018412_00267","NC_018413_00265","NC_023030_00278"
"group_1913","","hypothetical protein","12","12","1","1","1654","","","","422","422","422","NC_004829_00972","NC_017502_00973","NC_017503_00867","NC_018406_00891","NC_018407_00868","NC_018408_00908","NC_018409_00874","NC_018410_00848","NC_018411_00856","NC_018412_00899","NC_018413_00853","NC_023030_00915"
"rpoB_2","","DNA-directed RNA polymerase subunit beta","12","12","1","1","610","","","","1427","1427","1427","NC_004829_00535","NC_017502_00534","NC_017503_01291","NC_018406_00529","NC_018407_00507","NC_018408_00507","NC_018409_00512","NC_018410_00487","NC_018411_00494","NC_018412_00496","NC_018413_00491","NC_023030_00491"
"group_1915","","hypothetical protein","12","12","1","1","1103","","","","518","518","518","NC_004829_00357","NC_017502_00355","NC_017503_00349","NC_018406_00399","NC_018407_00378","NC_018408_00377","NC_018409_00378","NC_018410_00365","NC_018411_00366","NC_018412_00366","NC_018413_00364","NC_023030_00364"
"ftsH_1","","ATP-dependent zinc metalloprotease FtsH","12","12","1","1","892","","","","2195","2195","2195","NC_004829_00054","NC_017502_00054","NC_017503_00054","NC_018406_00056","NC_018407_00056","NC_018408_00056","NC_018409_00056","NC_018410_00056","NC_018411_00056","NC_018412_00056","NC_018413_00056","NC_023030_00057"
"lepA","","Elongation factor 4","12","12","1","1","1964","","","","1799","1799","1799","NC_004829_01285","NC_017502_01286","NC_017503_00530","NC_018406_01203","NC_018407_01180","NC_018408_01230","NC_018409_01196","NC_018410_01154","NC_018411_01175","NC_018412_01211","NC_018413_01164","NC_023030_01254"
"dnaG_1","","DNA primase","12","12","1","1","1536","","","","1535","1535","1535","NC_004829_00937","NC_017502_00938","NC_017503_00901","NC_018406_00851","NC_018407_00828","NC_018408_00868","NC_018409_00835","NC_018410_00808","NC_018411_00817","NC_018412_00859","NC_018413_00813","NC_023030_00880"
"nrdF","","Ribonucleoside-diphosphate reductase 2 subunit beta","12","12","1","1","853","","","","491","491","491","NC_004829_00096","NC_017502_00096","NC_017503_00094","NC_018406_00096","NC_018407_00096","NC_018408_00096","NC_018409_00096","NC_018410_00096","NC_018411_00096","NC_018412_00096","NC_018413_00096","NC_023030_00100"
"rplV","","50S ribosomal protein L22","12","12","1","1","835","","","","434","434","434","NC_004829_00115","NC_017502_00115","NC_017503_00113","NC_018406_00115","NC_018407_00116","NC_018408_00115","NC_018409_00115","NC_018410_00115","NC_018411_00115","NC_018412_00115","NC_018413_00115","NC_023030_00115"
"tkt_2","","Transketolase","12","12","1","1","887","","","","935","935","935","NC_004829_00059","NC_017502_00059","NC_017503_00059","NC_018406_00061","NC_018407_00061","NC_018408_00061","NC_018409_00061","NC_018410_00061","NC_018411_00061","NC_018412_00061","NC_018413_00061","NC_023030_00062"
"tyrS","","Tyrosine--tRNA ligase","12","12","1","1","1361","","","","563","563","563","NC_004829_00721","NC_017502_00722","NC_017503_01111","NC_018406_00674","NC_018407_00652","NC_018408_00653","NC_018409_00659","NC_018410_00632","NC_018411_00640","NC_018412_00643","NC_018413_00637","NC_023030_00672"
"group_1937","","hypothetical protein","12","12","1","1","1997","","","","305","305","305","NC_004829_01308","NC_017502_01309","NC_017503_00507","NC_018406_01227","NC_018407_01204","NC_018408_01254","NC_018409_01220","NC_018410_01178","NC_018411_01200","NC_018412_01235","NC_018413_01188","NC_023030_01279"
"group_1939","","hypothetical protein","12","12","1","1","371","","","","302","302","302","NC_004829_01442","NC_017502_01442","NC_017503_01378","NC_018406_01370","NC_018407_01347","NC_018408_01397","NC_018409_01363","NC_018410_01318","NC_018411_01340","NC_018412_01377","NC_018413_01320","NC_023030_01413"
"group_194","","hypothetical protein","12","12","1","1","594","","","","272","371","305","NC_004829_00549","NC_017502_00548","NC_017503_01277","NC_018406_00544","NC_018407_00522","NC_018408_00522","NC_018409_00527","NC_018410_00502","NC_018411_00509","NC_018412_00511","NC_018413_00506","NC_023030_00505"
"cshB_2","","DEAD-box ATP-dependent RNA helicase CshB","12","12","1","1","1248","","","","371","371","371","NC_004829_01167","NC_017502_01168","NC_017503_00680","NC_018406_01086","NC_018407_01063","NC_018408_01103","NC_018409_01078","NC_018410_01036","NC_018411_01058","NC_018412_01093","NC_018413_01047","NC_023030_01138"
"group_1941","","hypothetical protein","12","12","1","1","404","","","","596","596","596","NC_004829_01409","NC_017502_01409","NC_017503_01345","NC_018406_01337","NC_018407_01314","NC_018408_01364","NC_018409_01330","NC_018410_01285","NC_018411_01307","NC_018412_01344","NC_018413_01287","NC_023030_01379"
"nrnA_3","","Bifunctional oligoribonuclease and PAP phosphatase NrnA","12","12","1","1","1259","","","","698","698","698","NC_004829_01153","NC_017502_01154","NC_017503_00694","NC_018406_01074","NC_018407_01051","NC_018408_01091","NC_018409_01066","NC_018410_01024","NC_018411_01046","NC_018412_01081","NC_018413_01035","NC_023030_01126"
"uvrA_3","","UvrABC system protein A","12","12","1","1","783","","","","1523","1523","1523","NC_004829_00171","NC_017502_00171","NC_017503_00169","NC_018406_00172","NC_018407_00173","NC_018408_00172","NC_018409_00172","NC_018410_00172","NC_018411_00172","NC_018412_00172","NC_018413_00172","NC_023030_00174"
"pgsA","","CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase","12","12","1","1","536","","","","659","683","665","NC_004829_00610","NC_017502_00609","NC_017503_01216","NC_018406_00603","NC_018407_00581","NC_018408_00581","NC_018409_00586","NC_018410_00561","NC_018411_00568","NC_018412_00570","NC_018413_00565","NC_023030_00567"
"polC_3","","DNA polymerase III PolC-type","12","12","1","1","770","","","","407","407","407","NC_004829_00185","NC_017502_00185","NC_017503_00183","NC_018406_00186","NC_018407_00187","NC_018408_00186","NC_018409_00186","NC_018410_00186","NC_018411_00186","NC_018412_00186","NC_018413_00186","NC_023030_00188"
"group_1958","","hypothetical protein","12","12","1","1","1810","","","","287","287","287","NC_004829_00460","NC_017502_00459","NC_017503_01314","NC_018406_00495","NC_018407_00473","NC_018408_00473","NC_018409_00473","NC_018410_00898","NC_018411_00460","NC_018412_00462","NC_018413_00458","NC_023030_00465"
"group_196","","hypothetical protein","12","12","1","1","112","","","","299","470","455","NC_004829_00629","NC_017502_00628","NC_017503_01197","NC_018406_00621","NC_018407_00599","NC_018408_00600","NC_018409_00605","NC_018410_00579","NC_018411_00587","NC_018412_00589","NC_018413_00584","NC_023030_00587"
"arcA_3","","Arginine deiminase","12","12","1","1","1511","","","","1370","1370","1370","NC_004829_01054","NC_017502_01055","NC_017503_00795","NC_018406_00983","NC_018407_00960","NC_018408_01000","NC_018409_00975","NC_018410_00933","NC_018411_00955","NC_018412_00990","NC_018413_00944","NC_023030_01025"
"mraZ","","Transcriptional regulator MraZ","12","12","1","1","1637","","","","344","344","344","NC_004829_00956","NC_017502_00957","NC_017503_00882","NC_018406_00875","NC_018407_00852","NC_018408_00892","NC_018409_00858","NC_018410_00832","NC_018411_00840","NC_018412_00883","NC_018413_00837","NC_023030_00899"
"pstB3_2","","Phosphate import ATP-binding protein PstB 3","12","12","1","1","860","","","","335","335","335","NC_004829_00090","NC_017502_00090","NC_017503_00089","NC_018406_00090","NC_018407_00090","NC_018408_00090","NC_018409_00090","NC_018410_00090","NC_018411_00090","NC_018412_00090","NC_018413_00090","NC_023030_00094"
"gpmI","","2,3-bisphosphoglycerate-independent phosphoglycerate mutase","12","12","1","1","2030","","","","1511","1511","1511","NC_004829_01339","NC_017502_01340","NC_017503_00475","NC_018406_01260","NC_018407_01237","NC_018408_01287","NC_018409_01253","NC_018410_01211","NC_018411_01233","NC_018412_01268","NC_018413_01221","NC_023030_01314"
"pdp_2","","Pyrimidine-nucleoside phosphorylase","12","12","1","1","2037","","","","779","779","779","NC_004829_01346","NC_017502_01347","NC_017503_00468","NC_018406_01267","NC_018407_01244","NC_018408_01294","NC_018409_01260","NC_018410_01218","NC_018411_01240","NC_018412_01275","NC_018413_01228","NC_023030_01321"
"metG_1","","Methionine--tRNA ligase","12","12","1","1","1092","","","","395","395","395","NC_004829_00337","NC_017502_00335","NC_017503_00329","NC_018406_00379","NC_018407_00358","NC_018408_00357","NC_018409_00358","NC_018410_00345","NC_018411_00346","NC_018412_00346","NC_018413_00344","NC_023030_00344"
"group_1973","","hypothetical protein","12","12","1","1","1024","","","","350","350","350","NC_004829_00328","NC_017502_00326","NC_017503_00320","NC_018406_00327","NC_018407_00328","NC_018408_00327","NC_018409_00328","NC_018410_00326","NC_018411_00327","NC_018412_00327","NC_018413_00325","NC_023030_00336"
"hisS_1","","Histidine--tRNA ligase","12","12","1","1","1165","","","","308","308","308","NC_004829_00417","NC_017502_00415","NC_017503_00403","NC_018406_00452","NC_018407_00431","NC_018408_00431","NC_018409_00431","NC_018410_00418","NC_018411_00419","NC_018412_00420","NC_018413_00417","NC_023030_00415"
"group_1981","","hypothetical protein","12","12","1","1","1110","","","","308","308","308","NC_004829_00370","NC_017502_00368","NC_017503_00358","NC_018406_00407","NC_018407_00386","NC_018408_00385","NC_018409_00386","NC_018410_00373","NC_018411_00374","NC_018412_00374","NC_018413_00372","NC_023030_00372"
"eno_3","","Enolase","12","12","1","1","1245","","","","959","959","959","NC_004829_01170","NC_017502_01171","NC_017503_00677","NC_018406_01089","NC_018407_01066","NC_018408_01106","NC_018409_01081","NC_018410_01039","NC_018411_01061","NC_018412_01096","NC_018413_01050","NC_023030_01141"
"upp","","Uracil phosphoribosyltransferase","12","12","1","1","1404","","","","632","632","632","NC_004829_00738","NC_017502_00739","NC_017503_01096","NC_018406_00689","NC_018407_00666","NC_018408_00667","NC_018409_00673","NC_018410_00646","NC_018411_00654","NC_018412_00657","NC_018413_00651","NC_023030_00695"
"nrdE1","","Ribonucleoside-diphosphate reductase subunit alpha 1","12","12","1","1","855","","","","1688","1688","1688","NC_004829_00094","NC_017502_00094","NC_017503_00092","NC_018406_00094","NC_018407_00094","NC_018408_00094","NC_018409_00094","NC_018410_00094","NC_018411_00094","NC_018412_00094","NC_018413_00094","NC_023030_00098"
"apt","","Adenine phosphoribosyltransferase","12","12","1","1","1180","","","","536","536","536","NC_004829_00434","NC_017502_00432","NC_017503_00419","NC_018406_00469","NC_018407_00448","NC_018408_00448","NC_018409_00448","NC_018410_00435","NC_018411_00436","NC_018412_00437","NC_018413_00434","NC_023030_00432"
"group_1988","","hypothetical protein","12","12","1","1","551","","","","968","968","968","NC_004829_00594","NC_017502_00593","NC_017503_01231","NC_018406_00589","NC_018407_00567","NC_018408_00567","NC_018409_00572","NC_018410_00547","NC_018411_00554","NC_018412_00556","NC_018413_00551","NC_023030_00553"
"group_199","","hypothetical protein","12","12","1","1","1328","","","","341","368","343","NC_004829_00687","NC_017502_00687","NC_017503_01144","NC_018406_00639","NC_018407_00617","NC_018408_00618","NC_018409_00623","NC_018410_00596","NC_018411_00605","NC_018412_00607","NC_018413_00602","NC_023030_00637"
"cdaS","","Cyclic di-AMP synthase CdaS","12","12","1","1","1461","","","","632","632","632","NC_004829_01071","NC_017502_01072","NC_017503_00775","NC_018406_01000","NC_018407_00977","NC_018408_01017","NC_018409_00992","NC_018410_00950","NC_018411_00972","NC_018412_01007","NC_018413_00961","NC_023030_01044"
"group_1993","","hypothetical protein","12","12","1","1","1122","","","","374","374","374","NC_004829_00382","NC_017502_00380","NC_017503_00370","NC_018406_00419","NC_018407_00398","NC_018408_00397","NC_018409_00398","NC_018410_00385","NC_018411_00386","NC_018412_00386","NC_018413_00384","NC_023030_00384"
"ftsZ","","Cell division protein FtsZ","12","12","1","1","1515","","","","965","965","965","NC_004829_00953","NC_017502_00954","NC_017503_00885","NC_018406_00872","NC_018407_00849","NC_018408_00889","NC_018409_00855","NC_018410_00829","NC_018411_00837","NC_018412_00880","NC_018413_00834","NC_023030_00896"
"group_200","","hypothetical protein","12","12","1","1","1331","","","","962","1157","1102","NC_004829_00690","NC_017502_00690","NC_017503_01141","NC_018406_00643","NC_018407_00621","NC_018408_00622","NC_018409_00627","NC_018410_00600","NC_018411_00609","NC_018412_00611","NC_018413_00606","NC_023030_00641"
"group_2000","","hypothetical protein","12","12","1","1","1944","","","","431","431","431","NC_004829_01266","NC_017502_01267","NC_017503_00549","NC_018406_01184","NC_018407_01161","NC_018408_01211","NC_018409_01177","NC_018410_01135","NC_018411_01156","NC_018412_01192","NC_018413_01145","NC_023030_01235"
"sftA","","DNA translocase SftA","12","12","1","1","789","","","","1046","1046","1046","NC_004829_00163","NC_017502_00163","NC_017503_00161","NC_018406_00164","NC_018407_00165","NC_018408_00164","NC_018409_00164","NC_018410_00164","NC_018411_00164","NC_018412_00164","NC_018413_00164","NC_023030_00166"
"group_2003","","hypothetical protein","12","12","1","1","1326","","","","413","413","413","NC_004829_00686","NC_017502_00686","NC_017503_01145","NC_018406_00638","NC_018407_00616","NC_018408_00617","NC_018409_00622","NC_018410_00595","NC_018411_00604","NC_018412_00606","NC_018413_00601","NC_023030_00636"
"group_2004","","hypothetical protein","12","12","1","1","2163","","","","236","236","236","NC_004829_01207","NC_017502_01208","NC_017503_00641","NC_018406_01127","NC_018407_01104","NC_018408_01153","NC_018409_01119","NC_018410_01078","NC_018411_01099","NC_018412_01134","NC_018413_01088","NC_023030_01179"
"nadK","","NAD kinase","12","12","1","1","1946","","","","818","821","820","NC_004829_01267","NC_017502_01268","NC_017503_00548","NC_018406_01185","NC_018407_01162","NC_018408_01212","NC_018409_01178","NC_018410_01136","NC_018411_01157","NC_018412_01193","NC_018413_01146","NC_023030_01236"
"group_2007","","hypothetical protein","12","12","1","1","270","","","","254","254","254","NC_004829_01551","NC_017502_01552","NC_017503_01481","NC_018406_01473","NC_018407_01452","NC_018408_01500","NC_018409_01468","NC_018410_01422","NC_018411_01425","NC_018412_01481","NC_018413_01405","NC_023030_01518"
"group_2008","","hypothetical protein","12","12","1","1","1255","","","","503","503","503","NC_004829_01157","NC_017502_01158","NC_017503_00690","NC_018406_01078","NC_018407_01055","NC_018408_01095","NC_018409_01070","NC_018410_01028","NC_018411_01050","NC_018412_01085","NC_018413_01039","NC_023030_01130"
"trmD","","tRNA (guanine-N(1)-)-methyltransferase","12","12","1","1","367","","","","704","704","704","NC_004829_01446","NC_017502_01446","NC_017503_01382","NC_018406_01374","NC_018407_01351","NC_018408_01401","NC_018409_01367","NC_018410_01322","NC_018411_01344","NC_018412_01381","NC_018413_01324","NC_023030_01417"
"sufU","","Zinc-dependent sulfurtransferase SufU","12","12","1","1","1343","","","","434","434","434","NC_004829_00702","NC_017502_00702","NC_017503_01128","NC_018406_00656","NC_018407_00634","NC_018408_00634","NC_018409_00640","NC_018410_00613","NC_018411_00622","NC_018412_00624","NC_018413_00619","NC_023030_00654"
"group_2010","","hypothetical protein","12","12","1","1","1683","","","","206","206","206","NC_004829_00995","NC_017502_00996","NC_017503_00844","NC_018406_00919","NC_018407_00896","NC_018408_00936","NC_018409_00902","NC_018410_00876","NC_018411_00884","NC_018412_00927","NC_018413_00880","NC_023030_00953"
"group_2011","","hypothetical protein","12","12","1","1","1102","","","","752","761","759","NC_004829_00356","NC_017502_00354","NC_017503_00348","NC_018406_00398","NC_018407_00377","NC_018408_00376","NC_018409_00377","NC_018410_00364","NC_018411_00365","NC_018412_00365","NC_018413_00363","NC_023030_00363"
"group_2012","","hypothetical protein","12","12","1","1","356","","","","257","257","257","NC_004829_01459","NC_017502_01459","NC_017503_01395","NC_018406_01387","NC_018407_01364","NC_018408_01414","NC_018409_01380","NC_018410_01335","NC_018411_01357","NC_018412_01394","NC_018413_01337","NC_023030_01430"
"group_2013","","hypothetical protein","12","12","1","1","558","","","","566","566","566","NC_004829_00588","NC_017502_00587","NC_017503_01236","NC_018406_00584","NC_018407_00562","NC_018408_00562","NC_018409_00567","NC_018410_00542","NC_018411_00549","NC_018412_00551","NC_018413_00546","NC_023030_00547"
"pdhB_2","","Pyruvate dehydrogenase E1 component subunit beta","12","12","1","1","1295","","","","539","539","539","NC_004829_01119","NC_017502_01120","NC_017503_00728","NC_018406_01040","NC_018407_01017","NC_018408_01057","NC_018409_01032","NC_018410_00990","NC_018411_01012","NC_018412_01047","NC_018413_01001","NC_023030_01088"
"group_2015","","hypothetical protein","12","12","1","1","1986","","","","254","254","254","NC_004829_01304","NC_017502_01305","NC_017503_00511","NC_018406_01223","NC_018407_01200","NC_018408_01250","NC_018409_01216","NC_018410_01174","NC_018411_01196","NC_018412_01231","NC_018413_01184","NC_023030_01275"
"group_2016","","hypothetical protein","12","12","1","1","1395","","","Hypothetical protein with no hits to refseq/uniprot/clusters/cdd/tigrfams/pfam overlapping another protein with hits","203","203","203","NC_004829_00746","NC_017502_00747","NC_017503_01087","NC_018406_00698","NC_018407_00675","NC_018408_00676","NC_018409_00682","NC_018410_00655","NC_018411_00663","NC_018412_00666","NC_018413_00660","NC_023030_00704"
"plsY","","putative glycerol-3-phosphate acyltransferase","12","12","1","1","1546","","","","428","431","428","NC_004829_00930","NC_017502_00931","NC_017503_00908","NC_018406_00844","NC_018407_00821","NC_018408_00861","NC_018409_00828","NC_018410_00801","NC_018411_00810","NC_018412_00852","NC_018413_00806","NC_023030_00873"
"group_2018","","hypothetical protein","12","12","1","1","1456","","","","233","233","233","NC_004829_01076","NC_017502_01077","NC_017503_00770","NC_018406_01005","NC_018407_00982","NC_018408_01022","NC_018409_00997","NC_018410_00955","NC_018411_00977","NC_018412_01012","NC_018413_00966","NC_023030_01049"
"group_2019","","hypothetical protein","12","12","1","1","333","","","","218","218","218","NC_004829_01484","NC_017502_01484","NC_017503_01419","NC_018406_01411","NC_018407_01389","NC_018408_01438","NC_018409_01405","NC_018410_01360","NC_018411_01382","NC_018412_01419","NC_018413_01362","NC_023030_01454"
"group_202","","hypothetical protein","12","12","1","1","28","","","","1538","2090","2044","NC_004829_00800","NC_017502_00802","NC_017503_01034","NC_018406_00748","NC_018407_00725","NC_018408_00726","NC_018409_00732","NC_018410_00705","NC_018411_00713","NC_018412_00716","NC_018413_00710","NC_023030_00756"
"group_2020","","hypothetical protein","12","12","1","1","1264","","","","272","272","272","NC_004829_01148","NC_017502_01149","NC_017503_00699","NC_018406_01069","NC_018407_01046","NC_018408_01086","NC_018409_01061","NC_018410_01019","NC_018411_01041","NC_018412_01076","NC_018413_01030","NC_023030_01121"
"group_2021","","hypothetical protein","12","12","1","1","1962","","","","413","413","413","NC_004829_01283","NC_017502_01284","NC_017503_00532","NC_018406_01201","NC_018407_01178","NC_018408_01228","NC_018409_01194","NC_018410_01152","NC_018411_01173","NC_018412_01209","NC_018413_01162","NC_023030_01252"
"glyQS_3","","Glycine--tRNA ligase","12","12","1","1","1531","","","","221","221","221","NC_004829_00942","NC_017502_00943","NC_017503_00896","NC_018406_00856","NC_018407_00833","NC_018408_00873","NC_018409_00840","NC_018410_00813","NC_018411_00822","NC_018412_00864","NC_018413_00818","NC_023030_00885"
"group_2024","","hypothetical protein","12","12","1","1","943","","","","299","302","301","NC_004829_00038","NC_017502_00038","NC_017503_00038","NC_018406_00038","NC_018407_00038","NC_018408_00038","NC_018409_00038","NC_018410_00038","NC_018411_00038","NC_018412_00038","NC_018413_00038","NC_023030_00037"
"glpK_1","","Glycerol kinase","12","12","1","1","934","","","","209","209","209","NC_004829_00029","NC_017502_00029","NC_017503_00029","NC_018406_00029","NC_018407_00029","NC_018408_00029","NC_018409_00029","NC_018410_00029","NC_018411_00029","NC_018412_00029","NC_018413_00029","NC_023030_00027"
"group_2026","","putative NADH oxidase","12","12","1","1","1290","","","","269","269","269","NC_004829_01124","NC_017502_01125","NC_017503_00723","NC_018406_01045","NC_018407_01022","NC_018408_01062","NC_018409_01037","NC_018410_00995","NC_018411_01017","NC_018412_01052","NC_018413_01006","NC_023030_01093"
"group_2027","","hypothetical protein","12","12","1","1","1470","","","","215","215","215","NC_004829_01065","NC_017502_01066","NC_017503_00783","NC_018406_00994","NC_018407_00971","NC_018408_01011","NC_018409_00986","NC_018410_00944","NC_018411_00966","NC_018412_01001","NC_018413_00955","NC_023030_01037"
"rpoB_4","","DNA-directed RNA polymerase subunit beta","12","12","1","1","608","","","","236","239","238","NC_004829_00537","NC_017502_00536","NC_017503_01289","NC_018406_00531","NC_018407_00509","NC_018408_00509","NC_018409_00514","NC_018410_00489","NC_018411_00496","NC_018412_00498","NC_018413_00493","NC_023030_00493"
"lon1_1","","Lon protease 1","12","12","1","1","1420","","","","461","461","461","NC_004829_00902","NC_017502_00903","NC_017503_00937","NC_018406_00812","NC_018407_00789","NC_018408_00829","NC_018409_00796","NC_018410_00769","NC_018411_00778","NC_018412_00820","NC_018413_00774","NC_023030_00846"
"group_2030","","Membrane-associated lipoprotein","12","12","1","1","186","","","","242","245","244","NC_004829_01628","NC_017502_01630","NC_017503_01560","NC_018406_01536","NC_018407_01515","NC_018408_01563","NC_018409_01531","NC_018410_01485","NC_018411_01488","NC_018412_01544","NC_018413_01468","NC_023030_01601"
"group_2031","","hypothetical protein","12","12","1","1","911","","","","233","233","233","NC_004829_00003","NC_017502_00003","NC_017503_00003","NC_018406_00003","NC_018407_00003","NC_018408_00003","NC_018409_00003","NC_018410_00003","NC_018411_00003","NC_018412_00003","NC_018413_00003","NC_023030_00002"
"group_2032","","hypothetical protein","12","12","1","1","1455","","","","887","887","887","NC_004829_01077","NC_017502_01078","NC_017503_00769","NC_018406_01006","NC_018407_00983","NC_018408_01023","NC_018409_00998","NC_018410_00956","NC_018411_00978","NC_018412_01013","NC_018413_00967","NC_023030_01050"
"group_2033","","hypothetical protein","12","12","1","1","803","","","","488","488","488","NC_004829_00150","NC_017502_00150","NC_017503_00149","NC_018406_00151","NC_018407_00152","NC_018408_00151","NC_018409_00151","NC_018410_00151","NC_018411_00151","NC_018412_00151","NC_018413_00151","NC_023030_00153"
"group_2034","","hypothetical protein","12","12","1","1","974","","","","581","581","581","NC_004829_00272","NC_017502_00271","NC_017503_00264","NC_018406_00270","NC_018407_00271","NC_018408_00270","NC_018409_00271","NC_018410_00269","NC_018411_00270","NC_018412_00270","NC_018413_00268","NC_023030_00281"
"infB_1","","Translation initiation factor IF-2","12","12","1","1","700","","","","1592","1592","1592","NC_004829_00244","NC_017502_00243","NC_017503_00235","NC_018406_00241","NC_018407_00242","NC_018408_00241","NC_018409_00242","NC_018410_00240","NC_018411_00242","NC_018412_00241","NC_018413_00240","NC_023030_00249"
"asnA_2","","Aspartate--ammonia ligase","12","12","1","1","382","","","","245","245","245","NC_004829_01431","NC_017502_01431","NC_017503_01367","NC_018406_01359","NC_018407_01336","NC_018408_01386","NC_018409_01352","NC_018410_01307","NC_018411_01329","NC_018412_01366","NC_018413_01309","NC_023030_01402"
"plsC","","1-acyl-sn-glycerol-3-phosphate acyltransferase","12","12","1","1","1643","","","","797","797","797","NC_004829_00960","NC_017502_00961","NC_017503_00878","NC_018406_00880","NC_018407_00857","NC_018408_00897","NC_018409_00863","NC_018410_00837","NC_018411_00845","NC_018412_00888","NC_018413_00842","NC_023030_00904"
"glyQS_2","","Glycine--tRNA ligase","12","12","1","1","1532","","","","263","263","263","NC_004829_00941","NC_017502_00942","NC_017503_00897","NC_018406_00855","NC_018407_00832","NC_018408_00872","NC_018409_00839","NC_018410_00812","NC_018411_00821","NC_018412_00863","NC_018413_00817","NC_023030_00884"
"group_2041","","hypothetical protein","12","12","1","1","1232","","","","404","404","404","NC_004829_01184","NC_017502_01185","NC_017503_00663","NC_018406_01103","NC_018407_01080","NC_018408_01120","NC_018409_01095","NC_018410_01053","NC_018411_01075","NC_018412_01110","NC_018413_01064","NC_023030_01156"
"group_2042","","hypothetical protein","12","12","1","1","2046","","","","509","509","509","NC_004829_01357","NC_017502_01358","NC_017503_00458","NC_018406_01277","NC_018407_01254","NC_018408_01304","NC_018409_01270","NC_018410_01228","NC_018411_01250","NC_018412_01285","NC_018413_01238","NC_023030_01332"
"leuS_1","","Leucine--tRNA ligase","12","12","1","1","1481","","","","290","290","290","NC_004829_01025","NC_017502_01026","NC_017503_00827","NC_018406_00955","NC_018407_00932","NC_018408_00972","NC_018409_00947","NC_018410_00905","NC_018411_00927","NC_018412_00962","NC_018413_00915","NC_023030_00993"
"cdd","","Cytidine deaminase","12","12","1","1","2035","","","","284","284","284","NC_004829_01344","NC_017502_01345","NC_017503_00470","NC_018406_01265","NC_018407_01242","NC_018408_01292","NC_018409_01258","NC_018410_01216","NC_018411_01238","NC_018412_01273","NC_018413_01226","NC_023030_01319"
"parC","","DNA topoisomerase 4 subunit A","12","12","1","1","1669","","","","2342","2342","2342","NC_004829_00984","NC_017502_00985","NC_017503_00856","NC_018406_00904","NC_018407_00881","NC_018408_00921","NC_018409_00887","NC_018410_00861","NC_018411_00869","NC_018412_00912","NC_018413_00866","NC_023030_00928"
"group_2046","","hypothetical protein","12","12","1","1","701","","","","269","269","269","NC_004829_00243","NC_017502_00242","NC_017503_00234","NC_018406_00240","NC_018407_00241","NC_018408_00240","NC_018409_00241","NC_018410_00239","NC_018411_00241","NC_018412_00240","NC_018413_00239","NC_023030_00248"
"rpsB_1","","30S ribosomal protein S2","12","12","1","1","2177","","","","431","437","431","NC_004829_01224","NC_017502_01226","NC_017503_00626","NC_018406_01141","NC_018407_01118","NC_018408_01168","NC_018409_01134","NC_018410_01092","NC_018411_01113","NC_018412_01149","NC_018413_01102","NC_023030_01193"
"group_2048","","hypothetical protein","12","12","1","1","1099","","","","641","641","641","NC_004829_00344","NC_017502_00342","NC_017503_00336","NC_018406_00386","NC_018407_00365","NC_018408_00364","NC_018409_00365","NC_018410_00352","NC_018411_00353","NC_018412_00353","NC_018413_00351","NC_023030_00351"
"group_2049","","hypothetical protein","12","12","1","1","380","","","","233","233","233","NC_004829_01433","NC_017502_01433","NC_017503_01369","NC_018406_01361","NC_018407_01338","NC_018408_01388","NC_018409_01354","NC_018410_01309","NC_018411_01331","NC_018412_01368","NC_018413_01311","NC_023030_01404"
"group_2052","","hypothetical protein","12","12","1","1","885","","","","1424","1424","1424","NC_004829_00061","NC_017502_00061","NC_017503_00061","NC_018406_00063","NC_018407_00063","NC_018408_00063","NC_018409_00063","NC_018410_00063","NC_018411_00063","NC_018412_00063","NC_018413_00063","NC_023030_00064"
"alaS_4","","Alanine--tRNA ligase","12","12","1","1","967","","","","239","239","239","NC_004829_00264","NC_017502_00263","NC_017503_00256","NC_018406_00262","NC_018407_00263","NC_018408_00262","NC_018409_00263","NC_018410_00261","NC_018411_00262","NC_018412_00262","NC_018413_00260","NC_023030_00273"
"hprK","","HPr kinase/phosphorylase","12","12","1","1","157","","","","869","869","869","NC_004829_01662","NC_017502_01664","NC_017503_01593","NC_018406_01569","NC_018407_01548","NC_018408_01596","NC_018409_01564","NC_018410_01518","NC_018411_01521","NC_018412_01577","NC_018413_01501","NC_023030_01633"
"group_2055","","High affinity transport system protein p37","12","12","1","1","588","","","","464","464","464","NC_004829_00556","NC_017502_00555","NC_017503_01271","NC_018406_00550","NC_018407_00528","NC_018408_00528","NC_018409_00533","NC_018410_00508","NC_018411_00515","NC_018412_00517","NC_018413_00512","NC_023030_00511"
"group_2056","","hypothetical protein","12","12","1","1","1502","","","","464","464","464","NC_004829_01047","NC_017502_01048","NC_017503_00806","NC_018406_00976","NC_018407_00953","NC_018408_00993","NC_018409_00968","NC_018410_00926","NC_018411_00948","NC_018412_00983","NC_018413_00937","NC_023030_01014"
"group_2057","","hypothetical protein","12","12","1","1","1355","","","","260","260","260","NC_004829_00714","NC_017502_00715","NC_017503_01117","NC_018406_00668","NC_018407_00646","NC_018408_00647","NC_018409_00653","NC_018410_00626","NC_018411_00634","NC_018412_00637","NC_018413_00631","NC_023030_00666"
"group_2058","","hypothetical protein","12","12","1","1","1649","","","","230","230","230","NC_004829_00966","NC_017502_00967","NC_017503_00872","NC_018406_00886","NC_018407_00863","NC_018408_00903","NC_018409_00869","NC_018410_00843","NC_018411_00851","NC_018412_00894","NC_018413_00848","NC_023030_00910"
"group_2059","","hypothetical protein","12","12","1","1","1955","","","","203","206","205","NC_004829_01277","NC_017502_01278","NC_017503_00538","NC_018406_01195","NC_018407_01172","NC_018408_01222","NC_018409_01188","NC_018410_01146","NC_018411_01167","NC_018412_01203","NC_018413_01156","NC_023030_01246"
"kojP","","1,2-alpha-glucosylglycerol phosphorylase","12","12","1","1","2151","","","","170","752","322","NC_004829_00866","NC_017502_00867","NC_017503_01004","NC_018406_00777","NC_018407_00754","NC_018408_00794","NC_018409_00761","NC_018410_00734","NC_018411_00742","NC_018412_00784","NC_018413_00739","NC_023030_00807"
"plsX_1","","Phosphate acyltransferase","12","12","1","1","1267","","","","515","515","515","NC_004829_01145","NC_017502_01146","NC_017503_00702","NC_018406_01066","NC_018407_01043","NC_018408_01083","NC_018409_01058","NC_018410_01016","NC_018411_01038","NC_018412_01073","NC_018413_01027","NC_023030_01118"
"group_2062","","hypothetical protein","12","12","1","1","1265","","","","1724","1724","1724","NC_004829_01147","NC_017502_01148","NC_017503_00700","NC_018406_01068","NC_018407_01045","NC_018408_01085","NC_018409_01060","NC_018410_01018","NC_018411_01040","NC_018412_01075","NC_018413_01029","NC_023030_01120"
"pta","","Phosphate acetyltransferase","12","12","1","1","373","","","","629","629","629","NC_004829_01440","NC_017502_01440","NC_017503_01376","NC_018406_01368","NC_018407_01345","NC_018408_01395","NC_018409_01361","NC_018410_01316","NC_018411_01338","NC_018412_01375","NC_018413_01318","NC_023030_01411"
"group_2064","","hypothetical protein","12","12","1","1","900","","","","443","443","443","NC_004829_00047","NC_017502_00047","NC_017503_00047","NC_018406_00048","NC_018407_00048","NC_018408_00048","NC_018409_00048","NC_018410_00048","NC_018411_00048","NC_018412_00048","NC_018413_00048","NC_023030_00050"
"group_2065","","hypothetical protein","12","12","1","1","1014","","","","236","236","236","NC_004829_00322","NC_017502_00320","NC_017503_00314","NC_018406_00321","NC_018407_00322","NC_018408_00321","NC_018409_00322","NC_018410_00320","NC_018411_00321","NC_018412_00321","NC_018413_00319","NC_023030_00330"
"trxB","","Thioredoxin reductase","12","12","1","1","1454","","","","941","941","941","NC_004829_01078","NC_017502_01079","NC_017503_00768","NC_018406_01007","NC_018407_00984","NC_018408_01024","NC_018409_00999","NC_018410_00957","NC_018411_00979","NC_018412_01014","NC_018413_00968","NC_023030_01051"
"group_2067","","hypothetical protein","12","12","1","1","193","","","","269","269","269","NC_004829_01622","NC_017502_01624","NC_017503_01553","NC_018406_01529","NC_018407_01508","NC_018408_01556","NC_018409_01524","NC_018410_01478","NC_018411_01481","NC_018412_01537","NC_018413_01461","NC_023030_01594"
"dhaL","","PEP-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL","12","12","1","1","891","","","","623","623","623","NC_004829_00055","NC_017502_00055","NC_017503_00055","NC_018406_00057","NC_018407_00057","NC_018408_00057","NC_018409_00057","NC_018410_00057","NC_018411_00057","NC_018412_00057","NC_018413_00057","NC_023030_00058"
"mglA_2","","Galactose/methyl galactoside import ATP-binding protein MglA","12","12","1","1","2048","","","","890","890","890","NC_004829_01359","NC_017502_01360","NC_017503_00456","NC_018406_01279","NC_018407_01256","NC_018408_01306","NC_018409_01272","NC_018410_01230","NC_018411_01252","NC_018412_01287","NC_018413_01240","NC_023030_01334"
"oppD_1","","Oligopeptide transport ATP-binding protein OppD","12","12","1","1","1228","","","","842","1163","1136","NC_004829_01188","NC_017502_01189","NC_017503_00659","NC_018406_01107","NC_018407_01084","NC_018408_01124","NC_018409_01099","NC_018410_01057","NC_018411_01079","NC_018412_01114","NC_018413_01068","NC_023030_01160"
"group_2070","","hypothetical protein","12","12","1","1","1977","","","","1598","1598","1598","NC_004829_01296","NC_017502_01297","NC_017503_00519","NC_018406_01214","NC_018407_01191","NC_018408_01241","NC_018409_01207","NC_018410_01165","NC_018411_01187","NC_018412_01222","NC_018413_01175","NC_023030_01266"
"rpsC","","30S ribosomal protein S3","12","12","1","1","834","","","","287","287","287","NC_004829_00116","NC_017502_00116","NC_017503_00114","NC_018406_00116","NC_018407_00117","NC_018408_00116","NC_018409_00116","NC_018410_00116","NC_018411_00116","NC_018412_00116","NC_018413_00116","NC_023030_00116"
"msrB_2","","Peptide methionine sulfoxide reductase MsrB","12","12","1","1","1306","","","","203","203","203","NC_004829_01108","NC_017502_01109","NC_017503_00739","NC_018406_01030","NC_018407_01007","NC_018408_01047","NC_018409_01022","NC_018410_00980","NC_018411_01002","NC_018412_01037","NC_018413_00991","NC_023030_01078"
"ecfA2","","Energy-coupling factor transporter ATP-binding protein EcfA2","12","12","1","1","2028","","","","734","734","734","NC_004829_01337","NC_017502_01338","NC_017503_00477","NC_018406_01258","NC_018407_01235","NC_018408_01285","NC_018409_01251","NC_018410_01209","NC_018411_01231","NC_018412_01266","NC_018413_01219","NC_023030_01312"
"group_2074","","Calcium-transporting ATPase 1","12","12","1","1","545","","","","560","560","560","NC_004829_00601","NC_017502_00600","NC_017503_01225","NC_018406_00594","NC_018407_00572","NC_018408_00572","NC_018409_00577","NC_018410_00552","NC_018411_00559","NC_018412_00561","NC_018413_00556","NC_023030_00558"
"nrdE","","Ribonucleoside-diphosphate reductase 2 subunit alpha","12","12","1","1","857","","","","272","272","272","NC_004829_00093","NC_017502_00093","NC_017503_00091","NC_018406_00093","NC_018407_00093","NC_018408_00093","NC_018409_00093","NC_018410_00093","NC_018411_00093","NC_018412_00093","NC_018413_00093","NC_023030_00097"
"rnr_2","","Ribonuclease R","12","12","1","1","1459","","","","296","296","296","NC_004829_01073","NC_017502_01074","NC_017503_00773","NC_018406_01002","NC_018407_00979","NC_018408_01019","NC_018409_00994","NC_018410_00952","NC_018411_00974","NC_018412_01009","NC_018413_00963","NC_023030_01046"
"group_2077","","hypothetical protein","12","12","1","1","1121","","","","248","248","248","NC_004829_00381","NC_017502_00379","NC_017503_00369","NC_018406_00418","NC_018407_00397","NC_018408_00396","NC_018409_00397","NC_018410_00384","NC_018411_00385","NC_018412_00385","NC_018413_00383","NC_023030_00383"
"group_2078","","hypothetical protein","12","12","1","1","1587","","","","251","251","251","NC_004829_01095","NC_017502_01096","NC_017503_00752","NC_018406_01024","NC_018407_01001","NC_018408_01041","NC_018409_01016","NC_018410_00974","NC_018411_00996","NC_018412_01031","NC_018413_00985","NC_023030_01069"
"rplF","","50S ribosomal protein L6","12","12","1","1","823","","","","458","458","458","NC_004829_00127","NC_017502_00127","NC_017503_00125","NC_018406_00127","NC_018407_00128","NC_018408_00127","NC_018409_00127","NC_018410_00127","NC_018411_00127","NC_018412_00127","NC_018413_00127","NC_023030_00128"
"trmH_1","","tRNA (guanosine(18)-2'-O)-methyltransferase","12","12","1","1","276","","","","218","218","218","NC_004829_01544","NC_017502_01545","NC_017503_01476","NC_018406_01467","NC_018407_01446","NC_018408_01494","NC_018409_01462","NC_018410_01416","NC_018411_01419","NC_018412_01475","NC_018413_01399","NC_023030_01512"
"group_2081","","hypothetical protein","12","12","1","1","1282","","","","218","218","218","NC_004829_01132","NC_017502_01133","NC_017503_00715","NC_018406_01053","NC_018407_01030","NC_018408_01070","NC_018409_01045","NC_018410_01003","NC_018411_01025","NC_018412_01060","NC_018413_01014","NC_023030_01101"
"smpB","","SsrA-binding protein","12","12","1","1","1501","","","","431","431","431","NC_004829_01046","NC_017502_01047","NC_017503_00807","NC_018406_00975","NC_018407_00952","NC_018408_00992","NC_018409_00967","NC_018410_00925","NC_018411_00947","NC_018412_00982","NC_018413_00936","NC_023030_01013"
"ptsH","","Phosphocarrier protein HPr","12","12","1","1","889","","","","266","266","266","NC_004829_00057","NC_017502_00057","NC_017503_00057","NC_018406_00059","NC_018407_00059","NC_018408_00059","NC_018409_00059","NC_018410_00059","NC_018411_00059","NC_018412_00059","NC_018413_00059","NC_023030_00060"
"smc_4","","Chromosome partition protein Smc","12","12","1","1","1118","","","","890","890","890","NC_004829_00378","NC_017502_00376","NC_017503_00366","NC_018406_00415","NC_018407_00394","NC_018408_00393","NC_018409_00394","NC_018410_00381","NC_018411_00382","NC_018412_00382","NC_018413_00380","NC_023030_00380"
"gyrA","","DNA gyrase subunit A","12","12","1","1","149","","","","2540","2540","2540","NC_004829_01670","NC_017502_01672","NC_017503_01602","NC_018406_01578","NC_018407_01556","NC_018408_01604","NC_018409_01572","NC_018410_01526","NC_018411_01529","NC_018412_01585","NC_018413_01509","NC_023030_01641"
"group_2086","","hypothetical protein","12","12","1","1","1127","","","","824","824","824","NC_004829_00387","NC_017502_00385","NC_017503_00375","NC_018406_00424","NC_018407_00403","NC_018408_00402","NC_018409_00403","NC_018410_00390","NC_018411_00391","NC_018412_00391","NC_018413_00389","NC_023030_00389"
"pepA_2","","Cytosol aminopeptidase","12","12","1","1","1472","","","","1055","1055","1055","NC_004829_01062","NC_017502_01063","NC_017503_00787","NC_018406_00991","NC_018407_00968","NC_018408_01008","NC_018409_00983","NC_018410_00941","NC_018411_00963","NC_018412_00998","NC_018413_00952","NC_023030_01033"
"group_2088","","hypothetical protein","12","12","1","1","791","","","","404","407","406","NC_004829_00161","NC_017502_00161","NC_017503_00159","NC_018406_00162","NC_018407_00163","NC_018408_00162","NC_018409_00162","NC_018410_00162","NC_018411_00162","NC_018412_00162","NC_018413_00162","NC_023030_00164"
"group_2089","","hypothetical protein","12","12","1","1","1176","","","","425","425","425","NC_004829_00430","NC_017502_00428","NC_017503_00416","NC_018406_00465","NC_018407_00444","NC_018408_00444","NC_018409_00444","NC_018410_00431","NC_018411_00432","NC_018412_00433","NC_018413_00430","NC_023030_00429"
"group_2090","","hypothetical protein","12","12","1","1","854","","","","440","440","440","NC_004829_00095","NC_017502_00095","NC_017503_00093","NC_018406_00095","NC_018407_00095","NC_018408_00095","NC_018409_00095","NC_018410_00095","NC_018411_00095","NC_018412_00095","NC_018413_00095","NC_023030_00099"
"group_2091","","hypothetical protein","12","12","1","1","773","","","","269","269","269","NC_004829_00182","NC_017502_00182","NC_017503_00180","NC_018406_00183","NC_018407_00184","NC_018408_00183","NC_018409_00183","NC_018410_00183","NC_018411_00183","NC_018412_00183","NC_018413_00183","NC_023030_00185"
"group_2092","","hypothetical protein","12","12","1","1","1568","","","","590","590","590","NC_004829_00913","NC_017502_00914","NC_017503_00925","NC_018406_00827","NC_018407_00804","NC_018408_00844","NC_018409_00811","NC_018410_00784","NC_018411_00793","NC_018412_00835","NC_018413_00789","NC_023030_00857"
"group_2093","","hypothetical protein","12","12","1","1","728","","","","224","224","224","NC_004829_00223","NC_017502_00222","NC_017503_00214","NC_018406_00219","NC_018407_00220","NC_018408_00219","NC_018409_00219","NC_018410_00218","NC_018411_00220","NC_018412_00219","NC_018413_00218","NC_023030_00221"
"group_2094","","hypothetical protein","12","12","1","1","607","","","","518","518","518","NC_004829_00538","NC_017502_00537","NC_017503_01288","NC_018406_00532","NC_018407_00510","NC_018408_00510","NC_018409_00515","NC_018410_00490","NC_018411_00497","NC_018412_00499","NC_018413_00494","NC_023030_00494"
"group_2095","topA_1","DNA topoisomerase 1","12","12","1","1","358","","","","506","506","506","NC_004829_01457","NC_017502_01457","NC_017503_01393","NC_018406_01385","NC_018407_01362","NC_018408_01412","NC_018409_01378","NC_018410_01333","NC_018411_01355","NC_018412_01392","NC_018413_01335","NC_023030_01428"
"mutM","","Formamidopyrimidine-DNA glycosylase","12","12","1","1","554","","","","428","428","428","NC_004829_00590","NC_017502_00589","NC_017503_01234","NC_018406_00586","NC_018407_00564","NC_018408_00564","NC_018409_00569","NC_018410_00544","NC_018411_00551","NC_018412_00553","NC_018413_00548","NC_023030_00549"
"group_2097","","hypothetical protein","12","12","1","1","8","","","","1268","1268","1268","NC_004829_00777","NC_017502_00778","NC_017503_01056","NC_018406_00727","NC_018407_00704","NC_018408_00705","NC_018409_00711","NC_018410_00684","NC_018411_00692","NC_018412_00695","NC_018413_00689","NC_023030_00734"
"sufB_3","","FeS cluster assembly protein SufB","12","12","1","1","1347","","","","509","509","509","NC_004829_00706","NC_017502_00706","NC_017503_01125","NC_018406_00659","NC_018407_00637","NC_018408_00637","NC_018409_00643","NC_018410_00616","NC_018411_00625","NC_018412_00627","NC_018413_00622","NC_023030_00657"
"clpB1","","Chaperone protein ClpB 1","12","12","1","1","1273","","","","1019","1019","1019","NC_004829_01140","NC_017502_01141","NC_017503_00707","NC_018406_01061","NC_018407_01038","NC_018408_01078","NC_018409_01053","NC_018410_01011","NC_018411_01033","NC_018412_01068","NC_018413_01022","NC_023030_01112"
"polC_6","","DNA polymerase III PolC-type","12","12","1","1","766","","","","242","242","242","NC_004829_00189","NC_017502_00189","NC_017503_00187","NC_018406_00190","NC_018407_00191","NC_018408_00190","NC_018409_00190","NC_018410_00190","NC_018411_00190","NC_018412_00190","NC_018413_00190","NC_023030_00192"
"gla","","Glycerol facilitator-aquaporin gla","12","12","1","1","932","","","","293","293","293","NC_004829_00027","NC_017502_00027","NC_017503_00027","NC_018406_00027","NC_018407_00027","NC_018408_00027","NC_018409_00027","NC_018410_00027","NC_018411_00027","NC_018412_00027","NC_018413_00027","NC_023030_00025"
"rplE","","50S ribosomal protein L5","12","12","1","1","827","","","","287","287","287","NC_004829_00123","NC_017502_00123","NC_017503_00121","NC_018406_00123","NC_018407_00124","NC_018408_00123","NC_018409_00123","NC_018410_00123","NC_018411_00123","NC_018412_00123","NC_018413_00123","NC_023030_00124"
"group_2103","","hypothetical protein","12","12","1","1","762","","","","230","230","230","NC_004829_00193","NC_017502_00193","NC_017503_00191","NC_018406_00194","NC_018407_00195","NC_018408_00194","NC_018409_00194","NC_018410_00194","NC_018411_00194","NC_018412_00194","NC_018413_00194","NC_023030_00196"
"group_2104","","hypothetical protein","12","12","1","1","1953","","","","272","272","272","NC_004829_01275","NC_017502_01276","NC_017503_00540","NC_018406_01193","NC_018407_01170","NC_018408_01220","NC_018409_01186","NC_018410_01144","NC_018411_01165","NC_018412_01201","NC_018413_01154","NC_023030_01244"
"group_2106","","hypothetical protein","12","12","1","1","1324","","","","695","695","695","NC_004829_00683","NC_017502_00683","NC_017503_01148","NC_018406_00635","NC_018407_00613","NC_018408_00614","NC_018409_00619","NC_018410_00592","NC_018411_00601","NC_018412_00603","NC_018413_00598","NC_023030_00633"
"group_2107","","hypothetical protein","12","12","1","1","2026","","","","248","248","248","NC_004829_01335","NC_017502_01336","NC_017503_00479","NC_018406_01256","NC_018407_01233","NC_018408_01283","NC_018409_01249","NC_018410_01207","NC_018411_01229","NC_018412_01264","NC_018413_01217","NC_023030_01310"
"sufB_2","","FeS cluster assembly protein SufB","12","12","1","1","1345","","","","230","230","230","NC_004829_00705","NC_017502_00705","NC_017503_01126","NC_018406_00658","NC_018407_00636","NC_018408_00636","NC_018409_00642","NC_018410_00615","NC_018411_00624","NC_018412_00626","NC_018413_00621","NC_023030_00656"
"bkdA","","3-methyl-2-oxobutanoate dehydrogenase subunit alpha","12","12","1","1","1292","","","","242","245","242","NC_004829_01122","NC_017502_01123","NC_017503_00725","NC_018406_01043","NC_018407_01020","NC_018408_01060","NC_018409_01035","NC_018410_00993","NC_018411_01015","NC_018412_01050","NC_018413_01004","NC_023030_01091"
"group_2110","","hypothetical protein","12","12","1","1","415","","","","287","287","287","NC_004829_01398","NC_017502_01398","NC_017503_01334","NC_018406_01326","NC_018407_01303","NC_018408_01353","NC_018409_01318","NC_018410_01274","NC_018411_01296","NC_018412_01333","NC_018413_01276","NC_023030_01368"
"gatB_2","","Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B","12","12","1","1","401","","","","1019","1019","1019","NC_004829_01412","NC_017502_01412","NC_017503_01348","NC_018406_01340","NC_018407_01317","NC_018408_01367","NC_018409_01333","NC_018410_01288","NC_018411_01310","NC_018412_01347","NC_018413_01290","NC_023030_01382"
"group_2112","","hypothetical protein","12","12","1","1","1215","","","","245","245","245","NC_004829_01199","NC_017502_01200","NC_017503_00649","NC_018406_01119","NC_018407_01096","NC_018408_01145","NC_018409_01111","NC_018410_01070","NC_018411_01091","NC_018412_01126","NC_018413_01080","NC_023030_01171"
"dnaA","","Chromosomal replication initiator protein DnaA","12","12","1","1","912","","","","818","818","818","NC_004829_00004","NC_017502_00004","NC_017503_00004","NC_018406_00004","NC_018407_00004","NC_018408_00004","NC_018409_00004","NC_018410_00004","NC_018411_00004","NC_018412_00004","NC_018413_00004","NC_023030_00003"
"pfkA","","ATP-dependent 6-phosphofructokinase isozyme 1","12","12","1","1","1302","","","","998","998","998","NC_004829_01112","NC_017502_01113","NC_017503_00735","NC_018406_01034","NC_018407_01011","NC_018408_01051","NC_018409_01026","NC_018410_00984","NC_018411_01006","NC_018412_01041","NC_018413_00995","NC_023030_01082"
"group_2115","","hypothetical protein","12","12","1","1","794","","","","473","473","473","NC_004829_00158","NC_017502_00158","NC_017503_00156","NC_018406_00159","NC_018407_00160","NC_018408_00159","NC_018409_00159","NC_018410_00159","NC_018411_00159","NC_018412_00159","NC_018413_00159","NC_023030_00161"
"group_2116","","hypothetical protein","12","12","1","1","1242","","","","272","272","272","NC_004829_01173","NC_017502_01174","NC_017503_00674","NC_018406_01092","NC_018407_01069","NC_018408_01109","NC_018409_01084","NC_018410_01042","NC_018411_01064","NC_018412_01099","NC_018413_01053","NC_023030_01144"
"group_2117","","hypothetical protein","12","12","1","1","761","","","","467","467","467","NC_004829_00194","NC_017502_00194","NC_017503_00192","NC_018406_00195","NC_018407_00196","NC_018408_00195","NC_018409_00195","NC_018410_00195","NC_018411_00195","NC_018412_00195","NC_018413_00195","NC_023030_00197"
"ychF","","Ribosome-binding ATPase YchF","12","12","1","1","306","","","","890","890","890","NC_004829_01515","NC_017502_01515","NC_017503_01448","NC_018406_01440","NC_018407_01419","NC_018408_01467","NC_018409_01434","NC_018410_01389","NC_018411_01411","NC_018412_01448","NC_018413_01391","NC_023030_01484"
"group_2119","","hypothetical protein","12","12","1","1","1988","","","","281","281","281","NC_004829_01303","NC_017502_01304","NC_017503_00512","NC_018406_01222","NC_018407_01199","NC_018408_01249","NC_018409_01215","NC_018410_01173","NC_018411_01195","NC_018412_01230","NC_018413_01183","NC_023030_01274"
"group_2120","","hypothetical protein","12","12","1","1","2161","","","","254","254","254","NC_004829_01205","NC_017502_01206","NC_017503_00643","NC_018406_01125","NC_018407_01102","NC_018408_01151","NC_018409_01117","NC_018410_01076","NC_018411_01097","NC_018412_01132","NC_018413_01086","NC_023030_01177"
"group_2121","","hypothetical protein","12","12","1","1","113","","","","245","245","245","NC_004829_00631","NC_017502_00630","NC_017503_01195","NC_018406_00623","NC_018407_00601","NC_018408_00602","NC_018409_00607","NC_018410_00580","NC_018411_00589","NC_018412_00591","NC_018413_00586","NC_023030_00589"
"group_2122","","hypothetical protein","12","12","1","1","321","","","","578","578","578","NC_004829_01496","NC_017502_01496","NC_017503_01431","NC_018406_01422","NC_018407_01401","NC_018408_01449","NC_018409_01416","NC_018410_01371","NC_018411_01393","NC_018412_01430","NC_018413_01373","NC_023030_01466"
"group_2123","","hypothetical protein","12","12","1","1","727","","","","428","428","428","NC_004829_00224","NC_017502_00223","NC_017503_00215","NC_018406_00220","NC_018407_00221","NC_018408_00220","NC_018409_00220","NC_018410_00219","NC_018411_00221","NC_018412_00220","NC_018413_00219","NC_023030_00222"
"group_2124","","hypothetical protein","12","12","1","1","787","","","","1226","1226","1226","NC_004829_00167","NC_017502_00167","NC_017503_00165","NC_018406_00168","NC_018407_00169","NC_018408_00168","NC_018409_00168","NC_018410_00168","NC_018411_00168","NC_018412_00168","NC_018413_00168","NC_023030_00170"
"group_2125","","hypothetical protein","12","12","1","1","169","","","","239","239","239","NC_004829_01650","NC_017502_01652","NC_017503_01582","NC_018406_01558","NC_018407_01537","NC_018408_01585","NC_018409_01553","NC_018410_01507","NC_018411_01510","NC_018412_01566","NC_018413_01490","NC_023030_01622"
"group_2126","","hypothetical protein","12","12","1","1","2001","","","","257","257","257","NC_004829_01312","NC_017502_01313","NC_017503_00502","NC_018406_01232","NC_018407_01209","NC_018408_01259","NC_018409_01225","NC_018410_01183","NC_018411_01205","NC_018412_01240","NC_018413_01193","NC_023030_01284"
"yitU","","5-amino-6-(5-phospho-D-ribitylamino)uracil phosphatase YitU","12","12","1","1","1949","","","","221","221","221","NC_004829_01271","NC_017502_01272","NC_017503_00544","NC_018406_01189","NC_018407_01166","NC_018408_01216","NC_018409_01182","NC_018410_01140","NC_018411_01161","NC_018412_01197","NC_018413_01150","NC_023030_01240"
"group_2129","","hypothetical protein","12","12","1","1","1464","","","","425","425","425","NC_004829_01069","NC_017502_01070","NC_017503_00778","NC_018406_00998","NC_018407_00975","NC_018408_01015","NC_018409_00990","NC_018410_00948","NC_018411_00970","NC_018412_01005","NC_018413_00959","NC_023030_01041"
"group_213","","hypothetical protein","12","12","1","1","1218","","","","272","272","272","NC_004829_01196","NC_017502_01197","NC_017503_00652","NC_018406_01116","NC_018407_01093","NC_018408_01142","NC_018409_01108","NC_018410_01067","NC_018411_01088","NC_018412_01123","NC_018413_01077","NC_023030_01168"
"group_2130","","hypothetical protein","12","12","1","1","1491","","","","410","410","410","NC_004829_01036","NC_017502_01037","NC_017503_00816","NC_018406_00966","NC_018407_00943","NC_018408_00983","NC_018409_00958","NC_018410_00916","NC_018411_00938","NC_018412_00973","NC_018413_00927","NC_023030_01004"
"group_2131","","hypothetical protein","12","12","1","1","760","","","","203","203","203","NC_004829_00195","NC_017502_00195","NC_017503_00193","NC_018406_00196","NC_018407_00197","NC_018408_00196","NC_018409_00196","NC_018410_00196","NC_018411_00196","NC_018412_00196","NC_018413_00196","NC_023030_00198"
"def2","","Peptide deformylase 2","12","12","1","1","345","","","","494","494","494","NC_004829_01471","NC_017502_01471","NC_017503_01407","NC_018406_01399","NC_018407_01376","NC_018408_01426","NC_018409_01392","NC_018410_01347","NC_018411_01369","NC_018412_01406","NC_018413_01349","NC_023030_01442"
"group_2133","","hypothetical protein","12","12","1","1","1114","","","","164","164","164","NC_004829_00374","NC_017502_00372","NC_017503_00362","NC_018406_00411","NC_018407_00390","NC_018408_00389","NC_018409_00390","NC_018410_00377","NC_018411_00378","NC_018412_00378","NC_018413_00376","NC_023030_00376"
"ptsG_1","","PTS system glucose-specific EIICBA component","12","12","1","1","987","","","","527","530","527","NC_004829_00291","NC_017502_00290","NC_017503_00284","NC_018406_00289","NC_018407_00290","NC_018408_00289","NC_018409_00290","NC_018410_00288","NC_018411_00289","NC_018412_00289","NC_018413_00287","NC_023030_00300"
"thrS_2","","Threonine--tRNA ligase","12","12","1","1","1125","","","","470","479","478","NC_004829_00385","NC_017502_00383","NC_017503_00373","NC_018406_00422","NC_018407_00401","NC_018408_00400","NC_018409_00401","NC_018410_00388","NC_018411_00389","NC_018412_00389","NC_018413_00387","NC_023030_00387"
"group_2136","","hypothetical protein","12","12","1","1","178","","","","587","587","587","NC_004829_01639","NC_017502_01641","NC_017503_01570","NC_018406_01547","NC_018407_01526","NC_018408_01574","NC_018409_01542","NC_018410_01496","NC_018411_01499","NC_018412_01555","NC_018413_01479","NC_023030_01611"
"asnA_1","","Aspartate--ammonia ligase","12","12","1","1","383","","","","185","185","185","NC_004829_01430","NC_017502_01430","NC_017503_01366","NC_018406_01358","NC_018407_01335","NC_018408_01385","NC_018409_01351","NC_018410_01306","NC_018411_01328","NC_018412_01365","NC_018413_01308","NC_023030_01401"
"group_2138","","hypothetical protein","12","12","1","1","1424","","","","1718","1727","1726","NC_004829_00906","NC_017502_00907","NC_017503_00933","NC_018406_00816","NC_018407_00793","NC_018408_00833","NC_018409_00800","NC_018410_00773","NC_018411_00782","NC_018412_00824","NC_018413_00778","NC_023030_00850"
"gyrB_1","","DNA gyrase subunit B","12","12","1","1","148","","","","152","152","152","NC_004829_01671","NC_017502_01673","NC_017503_01603","NC_018406_01579","NC_018407_01557","NC_018408_01605","NC_018409_01573","NC_018410_01527","NC_018411_01530","NC_018412_01586","NC_018413_01510","NC_023030_01642"
"group_214","","hypothetical protein","12","12","1","1","1217","","","","161","278","171","NC_004829_01197","NC_017502_01198","NC_017503_00651","NC_018406_01117","NC_018407_01094","NC_018408_01143","NC_018409_01109","NC_018410_01068","NC_018411_01089","NC_018412_01124","NC_018413_01078","NC_023030_01169"
"group_2140","","hypothetical protein","12","12","1","1","197","","","","527","527","527","NC_004829_01617","NC_017502_01619","NC_017503_01549","NC_018406_01525","NC_018407_01504","NC_018408_01552","NC_018409_01520","NC_018410_01474","NC_018411_01477","NC_018412_01533","NC_018413_01457","NC_023030_01590"
"group_2141","","hypothetical protein","12","12","1","1","534","","","","194","194","194","NC_004829_00612","NC_017502_00611","NC_017503_01214","NC_018406_00605","NC_018407_00583","NC_018408_00583","NC_018409_00588","NC_018410_00563","NC_018411_00570","NC_018412_00572","NC_018413_00567","NC_023030_00569"
"group_2142","","hypothetical protein","12","12","1","1","1963","","","","197","197","197","NC_004829_01284","NC_017502_01285","NC_017503_00531","NC_018406_01202","NC_018407_01179","NC_018408_01229","NC_018409_01195","NC_018410_01153","NC_018411_01174","NC_018412_01210","NC_018413_01163","NC_023030_01253"
"group_2144","","hypothetical protein","12","12","1","1","2181","","","","173","173","173","NC_004829_01228","NC_017502_01230","NC_017503_00622","NC_018406_01145","NC_018407_01122","NC_018408_01172","NC_018409_01138","NC_018410_01096","NC_018411_01117","NC_018412_01153","NC_018413_01106","NC_023030_01197"
"group_2145","","hypothetical protein","12","12","1","1","196","","","","176","176","176","NC_004829_01618","NC_017502_01620","NC_017503_01550","NC_018406_01526","NC_018407_01505","NC_018408_01553","NC_018409_01521","NC_018410_01475","NC_018411_01478","NC_018412_01534","NC_018413_01458","NC_023030_01591"
"rplL","","50S ribosomal protein L7/L12","12","12","1","1","1006","","","","362","365","363","NC_004829_00314","NC_017502_00313","NC_017503_00306","NC_018406_00313","NC_018407_00314","NC_018408_00313","NC_018409_00314","NC_018410_00312","NC_018411_00313","NC_018412_00313","NC_018413_00311","NC_023030_00322"
"group_2147","","hypothetical protein","12","12","1","1","269","","","","152","152","152","NC_004829_01553","NC_017502_01554","NC_017503_01483","NC_018406_01475","NC_018407_01454","NC_018408_01502","NC_018409_01470","NC_018410_01424","NC_018411_01427","NC_018412_01483","NC_018413_01407","NC_023030_01520"
"pheS_1","","Phenylalanine--tRNA ligase alpha subunit","12","12","1","1","2111","","","","785","785","785","NC_004829_00879","NC_017502_00880","NC_017503_00961","NC_018406_00789","NC_018407_00766","NC_018408_00806","NC_018409_00773","NC_018410_00746","NC_018411_00755","NC_018412_00797","NC_018413_00751","NC_023030_00822"
"group_2149","","hypothetical protein","12","12","1","1","695","","","","191","191","191","NC_004829_00248","NC_017502_00247","NC_017503_00239","NC_018406_00245","NC_018407_00246","NC_018408_00245","NC_018409_00246","NC_018410_00244","NC_018411_00246","NC_018412_00245","NC_018413_00244","NC_023030_00044"
"infC","","Translation initiation factor IF-3","12","12","1","1","2114","","","","338","338","338","NC_004829_00874","NC_017502_00875","NC_017503_00965","NC_018406_00785","NC_018407_00762","NC_018408_00802","NC_018409_00769","NC_018410_00742","NC_018411_00750","NC_018412_00792","NC_018413_00747","NC_023030_00817"
"group_2151","","hypothetical protein","12","12","1","1","1551","","","","452","452","452","NC_004829_00925","NC_017502_00926","NC_017503_00913","NC_018406_00839","NC_018407_00816","NC_018408_00856","NC_018409_00823","NC_018410_00796","NC_018411_00805","NC_018412_00847","NC_018413_00801","NC_023030_00869"
"pgk_2","","Phosphoglycerate kinase","12","12","1","1","1379","","","","389","389","389","NC_004829_00768","NC_017502_00769","NC_017503_01065","NC_018406_00718","NC_018407_00695","NC_018408_00696","NC_018409_00702","NC_018410_00675","NC_018411_00683","NC_018412_00686","NC_018413_00680","NC_023030_00725"
"group_2153","","hypothetical protein","12","12","1","1","572","","","","161","161","161","NC_004829_00570","NC_017502_00569","NC_017503_01254","NC_018406_00566","NC_018407_00544","NC_018408_00544","NC_018409_00549","NC_018410_00524","NC_018411_00531","NC_018412_00533","NC_018413_00528","NC_023030_00528"
"group_2154","","hypothetical protein","12","12","1","1","584","","","","179","179","179","NC_004829_00559","NC_017502_00558","NC_017503_01267","NC_018406_00553","NC_018407_00531","NC_018408_00531","NC_018409_00536","NC_018410_00511","NC_018411_00518","NC_018412_00520","NC_018413_00515","NC_023030_00515"
"rnr_3","","Ribonuclease R","12","12","1","1","1458","","","","1061","1061","1061","NC_004829_01074","NC_017502_01075","NC_017503_00772","NC_018406_01003","NC_018407_00980","NC_018408_01020","NC_018409_00995","NC_018410_00953","NC_018411_00975","NC_018412_01010","NC_018413_00964","NC_023030_01047"
"group_2156","","hypothetical protein","12","12","1","1","176","","","","353","353","353","NC_004829_01641","NC_017502_01643","NC_017503_01573","NC_018406_01549","NC_018407_01528","NC_018408_01576","NC_018409_01544","NC_018410_01498","NC_018411_01501","NC_018412_01557","NC_018413_01481","NC_023030_01613"
"group_2157","","hypothetical protein","12","12","1","1","848","","","","173","173","173","NC_004829_00101","NC_017502_00101","NC_017503_00099","NC_018406_00101","NC_018407_00101","NC_018408_00101","NC_018409_00101","NC_018410_00101","NC_018411_00101","NC_018412_00101","NC_018413_00101","NC_023030_00104"
"group_2158","","hypothetical protein","12","12","1","1","1668","","","","719","719","719","NC_004829_00983","NC_017502_00984","NC_017503_00857","NC_018406_00903","NC_018407_00880","NC_018408_00920","NC_018409_00886","NC_018410_00860","NC_018411_00868","NC_018412_00911","NC_018413_00865","NC_023030_00927"
"pepC_2","","Aminopeptidase C","12","12","1","1","1496","","","","302","302","302","NC_004829_01041","NC_017502_01042","NC_017503_00811","NC_018406_00971","NC_018407_00948","NC_018408_00988","NC_018409_00963","NC_018410_00921","NC_018411_00943","NC_018412_00978","NC_018413_00932","NC_023030_01009"
"group_2160","","hypothetical protein","12","12","1","1","1410","","","","197","197","197","NC_004829_00733","NC_017502_00734","NC_017503_01101","NC_018406_00684","NC_018407_00661","NC_018408_00662","NC_018409_00668","NC_018410_00641","NC_018411_00649","NC_018412_00652","NC_018413_00646","NC_023030_00689"
"group_2161","","hypothetical protein","12","12","1","1","195","","","","500","500","500","NC_004829_01619","NC_017502_01621","NC_017503_01551","NC_018406_01527","NC_018407_01506","NC_018408_01554","NC_018409_01522","NC_018410_01476","NC_018411_01479","NC_018412_01535","NC_018413_01459","NC_023030_01592"
"rluC","","Ribosomal large subunit pseudouridine synthase C","12","12","1","1","1263","","","","992","992","992","NC_004829_01149","NC_017502_01150","NC_017503_00698","NC_018406_01070","NC_018407_01047","NC_018408_01087","NC_018409_01062","NC_018410_01020","NC_018411_01042","NC_018412_01077","NC_018413_01031","NC_023030_01122"
"rplQ","","50S ribosomal protein L17","12","12","1","1","365","","","","473","473","473","NC_004829_01448","NC_017502_01448","NC_017503_01384","NC_018406_01376","NC_018407_01353","NC_018408_01403","NC_018409_01369","NC_018410_01324","NC_018411_01346","NC_018412_01383","NC_018413_01326","NC_023030_01419"
"ppa_1","","Inorganic pyrophosphatase","12","12","1","1","1333","","","","164","164","164","NC_004829_00694","NC_017502_00694","NC_017503_01137","NC_018406_00646","NC_018407_00624","NC_018408_00625","NC_018409_00630","NC_018410_00603","NC_018411_00612","NC_018412_00614","NC_018413_00609","NC_023030_00645"
"gltX_2","","Glutamate--tRNA ligase","12","12","1","1","164","","","","317","317","317","NC_004829_01655","NC_017502_01657","NC_017503_01586","NC_018406_01562","NC_018407_01541","NC_018408_01589","NC_018409_01557","NC_018410_01511","NC_018411_01514","NC_018412_01570","NC_018413_01494","NC_023030_01626"
"cmk_1","","Cytidylate kinase","12","12","1","1","1097","","","","500","500","500","NC_004829_00342","NC_017502_00340","NC_017503_00334","NC_018406_00384","NC_018407_00363","NC_018408_00362","NC_018409_00363","NC_018410_00350","NC_018411_00351","NC_018412_00351","NC_018413_00349","NC_023030_00349"
"group_2167","","hypothetical protein","12","12","1","1","2095","","","","314","314","314","NC_004829_00894","NC_017502_00895","NC_017503_00945","NC_018406_00804","NC_018407_00781","NC_018408_00821","NC_018409_00788","NC_018410_00761","NC_018411_00770","NC_018412_00812","NC_018413_00766","NC_023030_00838"
"yigZ","","IMPACT family member YigZ","12","12","1","1","2115","","","","365","365","365","NC_004829_00873","NC_017502_00874","NC_017503_00966","NC_018406_00784","NC_018407_00761","NC_018408_00801","NC_018409_00768","NC_018410_00741","NC_018411_00749","NC_018412_00791","NC_018413_00746","NC_023030_00816"
"thyA_1","","Thymidylate synthase","12","12","1","1","850","","","","155","155","155","NC_004829_00099","NC_017502_00099","NC_017503_00097","NC_018406_00099","NC_018407_00099","NC_018408_00099","NC_018409_00099","NC_018410_00099","NC_018411_00099","NC_018412_00099","NC_018413_00099","NC_023030_00102"
"group_2170","","hypothetical protein","12","12","1","1","526","","","","641","641","641","NC_004829_00618","NC_017502_00617","NC_017503_01208","NC_018406_00610","NC_018407_00588","NC_018408_00589","NC_018409_00594","NC_018410_00568","NC_018411_00576","NC_018412_00578","NC_018413_00573","NC_023030_00575"
"group_2171","","hypothetical protein","12","12","1","1","1474","","","","173","173","173","NC_004829_01060","NC_017502_01061","NC_017503_00789","NC_018406_00989","NC_018407_00966","NC_018408_01006","NC_018409_00981","NC_018410_00939","NC_018411_00961","NC_018412_00996","NC_018413_00950","NC_023030_01031"
"pyrG_1","","CTP synthase","12","12","1","1","1173","","","","851","851","851","NC_004829_00427","NC_017502_00425","NC_017503_00413","NC_018406_00462","NC_018407_00441","NC_018408_00441","NC_018409_00441","NC_018410_00428","NC_018411_00429","NC_018412_00430","NC_018413_00427","NC_023030_00426"
"group_2173","","hypothetical protein","12","12","1","1","25","","","","1628","1628","1628","NC_004829_00796","NC_017502_00798","NC_017503_01038","NC_018406_00744","NC_018407_00721","NC_018408_00722","NC_018409_00728","NC_018410_00701","NC_018411_00709","NC_018412_00712","NC_018413_00706","NC_023030_00752"
"group_2174","","hypothetical protein","12","12","1","1","1998","","","","188","188","188","NC_004829_01309","NC_017502_01310","NC_017503_00505","NC_018406_01229","NC_018407_01206","NC_018408_01256","NC_018409_01222","NC_018410_01180","NC_018411_01202","NC_018412_01237","NC_018413_01190","NC_023030_01281"
"ftsH_2","","ATP-dependent zinc metalloprotease FtsH","12","12","1","1","268","","","","1034","1037","1036","NC_004829_01554","NC_017502_01555","NC_017503_01484","NC_018406_01476","NC_018407_01455","NC_018408_01503","NC_018409_01471","NC_018410_01425","NC_018411_01428","NC_018412_01484","NC_018413_01408","NC_023030_01521"
"glyA_2","","Serine hydroxymethyltransferase","12","12","1","1","1366","","","","971","971","971","NC_004829_00723","NC_017502_00724","NC_017503_01109","NC_018406_00676","NC_018407_00654","NC_018408_00655","NC_018409_00661","NC_018410_00634","NC_018411_00642","NC_018412_00645","NC_018413_00639","NC_023030_00674"
"group_2177","","hypothetical protein","12","12","1","1","618","","","","608","608","608","NC_004829_00528","NC_017502_00527","NC_017503_01296","NC_018406_00522","NC_018407_00500","NC_018408_00500","NC_018409_00505","NC_018410_00480","NC_018411_00487","NC_018412_00489","NC_018413_00484","NC_023030_00486"
"group_2178","","hypothetical protein","12","12","1","1","1942","","","","719","731","730","NC_004829_01264","NC_017502_01265","NC_017503_00551","NC_018406_01182","NC_018407_01159","NC_018408_01209","NC_018409_01175","NC_018410_01133","NC_018411_01154","NC_018412_01190","NC_018413_01143","NC_023030_01233"
"pdhB_1","","Pyruvate dehydrogenase E1 component subunit beta","12","12","1","1","1296","","","","155","155","155","NC_004829_01118","NC_017502_01119","NC_017503_00729","NC_018406_01039","NC_018407_01016","NC_018408_01056","NC_018409_01031","NC_018410_00989","NC_018411_01011","NC_018412_01046","NC_018413_01000","NC_023030_01087"
"potA_2","","Spermidine/putrescine import ATP-binding protein PotA","12","12","1","1","1585","","","","695","695","695","NC_004829_01093","NC_017502_01094","NC_017503_00754","NC_018406_01022","NC_018407_00999","NC_018408_01039","NC_018409_01014","NC_018410_00972","NC_018411_00994","NC_018412_01029","NC_018413_00983","NC_023030_01067"
"group_2182","","hypothetical protein","12","12","1","1","179","","","","503","503","503","NC_004829_01638","NC_017502_01640","NC_017503_01569","NC_018406_01546","NC_018407_01525","NC_018408_01573","NC_018409_01541","NC_018410_01495","NC_018411_01498","NC_018412_01554","NC_018413_01478","NC_023030_01610"
"eno_1","","Enolase","12","12","1","1","1247","","","","173","173","173","NC_004829_01168","NC_017502_01169","NC_017503_00679","NC_018406_01087","NC_018407_01064","NC_018408_01104","NC_018409_01079","NC_018410_01037","NC_018411_01059","NC_018412_01094","NC_018413_01048","NC_023030_01139"
"group_2184","","hypothetical protein","12","12","1","1","1971","","","","176","176","176","NC_004829_01290","NC_017502_01291","NC_017503_00525","NC_018406_01208","NC_018407_01185","NC_018408_01235","NC_018409_01201","NC_018410_01159","NC_018411_01181","NC_018412_01216","NC_018413_01169","NC_023030_01260"
"group_2185","","hypothetical protein","12","12","1","1","1653","","","","494","494","494","NC_004829_00970","NC_017502_00971","NC_017503_00869","NC_018406_00889","NC_018407_00866","NC_018408_00906","NC_018409_00872","NC_018410_00846","NC_018411_00854","NC_018412_00897","NC_018413_00851","NC_023030_00913"
"rplU","","50S ribosomal protein L21","12","12","1","1","2096","","","","302","302","302","NC_004829_00893","NC_017502_00894","NC_017503_00946","NC_018406_00803","NC_018407_00780","NC_018408_00820","NC_018409_00787","NC_018410_00760","NC_018411_00769","NC_018412_00811","NC_018413_00765","NC_023030_00837"
"ruvB","","Holliday junction ATP-dependent DNA helicase RuvB","12","12","1","1","406","","","","920","920","920","NC_004829_01407","NC_017502_01407","NC_017503_01343","NC_018406_01335","NC_018407_01312","NC_018408_01362","NC_018409_01328","NC_018410_01283","NC_018411_01305","NC_018412_01342","NC_018413_01285","NC_023030_01377"
"msrB_1","","Peptide methionine sulfoxide reductase MsrB","12","12","1","1","1592","","","","194","194","194","NC_004829_01107","NC_017502_01108","NC_017503_00740","NC_018406_01029","NC_018407_01006","NC_018408_01046","NC_018409_01021","NC_018410_00979","NC_018411_01001","NC_018412_01036","NC_018413_00990","NC_023030_01077"
"group_2189","","Putative ABC transporter ATP-binding protein MG187 ","12","12","1","1","877","","","","401","401","401","NC_004829_00070","NC_017502_00070","NC_017503_00069","NC_018406_00071","NC_018407_00071","NC_018408_00071","NC_018409_00071","NC_018410_00071","NC_018411_00071","NC_018412_00071","NC_018413_00071","NC_023030_00073"
"group_219","","hypothetical protein","12","12","1","1","1957","","","","1055","1064","1062","NC_004829_01279","NC_017502_01280","NC_017503_00536","NC_018406_01197","NC_018407_01174","NC_018408_01224","NC_018409_01190","NC_018410_01148","NC_018411_01169","NC_018412_01205","NC_018413_01158","NC_023030_01248"
"kch","","Voltage-gated potassium channel Kch","12","12","1","1","1939","","","","458","458","458","NC_004829_01261","NC_017502_01262","NC_017503_00554","NC_018406_01179","NC_018407_01156","NC_018408_01206","NC_018409_01172","NC_018410_01130","NC_018411_01151","NC_018412_01187","NC_018413_01140","NC_023030_01230"
"rplJ","","50S ribosomal protein L10","12","12","1","1","1005","","","","491","491","491","NC_004829_00313","NC_017502_00312","NC_017503_00305","NC_018406_00312","NC_018407_00313","NC_018408_00312","NC_018409_00313","NC_018410_00311","NC_018411_00312","NC_018412_00312","NC_018413_00310","NC_023030_00321"
"ileS_4","","Isoleucine--tRNA ligase","12","12","1","1","17","","","","164","164","164","NC_004829_00788","NC_017502_00789","NC_017503_01046","NC_018406_00736","NC_018407_00713","NC_018408_00714","NC_018409_00720","NC_018410_00693","NC_018411_00701","NC_018412_00704","NC_018413_00698","NC_023030_00744"
"pduW","","putative propionate kinase","12","12","1","1","1286","","","","179","179","179","NC_004829_01128","NC_017502_01129","NC_017503_00719","NC_018406_01049","NC_018407_01026","NC_018408_01066","NC_018409_01041","NC_018410_00999","NC_018411_01021","NC_018412_01056","NC_018413_01010","NC_023030_01097"
"group_2195","","hypothetical protein","12","12","1","1","352","","","","200","200","200","NC_004829_01464","NC_017502_01464","NC_017503_01400","NC_018406_01392","NC_018407_01369","NC_018408_01419","NC_018409_01385","NC_018410_01340","NC_018411_01362","NC_018412_01399","NC_018413_01342","NC_023030_01435"
"group_2196","","hypothetical protein","12","12","1","1","191","","","","596","608","601","NC_004829_01624","NC_017502_01626","NC_017503_01555","NC_018406_01531","NC_018407_01510","NC_018408_01558","NC_018409_01526","NC_018410_01480","NC_018411_01483","NC_018412_01539","NC_018413_01463","NC_023030_01596"
"pdp_1","","Pyrimidine-nucleoside phosphorylase","12","12","1","1","2036","","","","194","194","194","NC_004829_01345","NC_017502_01346","NC_017503_00469","NC_018406_01266","NC_018407_01243","NC_018408_01293","NC_018409_01259","NC_018410_01217","NC_018411_01239","NC_018412_01274","NC_018413_01227","NC_023030_01320"
"uvrB_2","","UvrABC system protein B","12","12","1","1","867","","","","980","989","983","NC_004829_00082","NC_017502_00082","NC_017503_00081","NC_018406_00084","NC_018407_00084","NC_018408_00084","NC_018409_00084","NC_018410_00084","NC_018411_00084","NC_018412_00084","NC_018413_00084","NC_023030_00086"
"rnhC","","Ribonuclease HIII","12","12","1","1","1647","","","","608","608","608","NC_004829_00964","NC_017502_00965","NC_017503_00874","NC_018406_00884","NC_018407_00861","NC_018408_00901","NC_018409_00867","NC_018410_00841","NC_018411_00849","NC_018412_00892","NC_018413_00846","NC_023030_00908"
"mnmE","","tRNA modification GTPase MnmE","12","12","1","1","153","","","","1160","1160","1160","NC_004829_01666","NC_017502_01668","NC_017503_01598","NC_018406_01574","NC_018407_01552","NC_018408_01600","NC_018409_01568","NC_018410_01522","NC_018411_01525","NC_018412_01581","NC_018413_01505","NC_023030_01637"
"group_2201","","hypothetical protein","12","12","1","1","1954","","","","329","329","329","NC_004829_01276","NC_017502_01277","NC_017503_00539","NC_018406_01194","NC_018407_01171","NC_018408_01221","NC_018409_01187","NC_018410_01145","NC_018411_01166","NC_018412_01202","NC_018413_01155","NC_023030_01245"
"era","","GTPase Era","12","12","1","1","1529","","","","848","848","848","NC_004829_00944","NC_017502_00945","NC_017503_00894","NC_018406_00858","NC_018407_00835","NC_018408_00875","NC_018409_00842","NC_018410_00815","NC_018411_00824","NC_018412_00866","NC_018413_00820","NC_023030_00887"
"group_2204","","hypothetical protein","12","12","1","1","775","","","","152","152","152","NC_004829_00180","NC_017502_00180","NC_017503_00178","NC_018406_00181","NC_018407_00182","NC_018408_00181","NC_018409_00181","NC_018410_00181","NC_018411_00181","NC_018412_00181","NC_018413_00181","NC_023030_00183"
"uvrC","","UvrABC system protein C","12","12","1","1","2116","","","","1658","1658","1658","NC_004829_00872","NC_017502_00873","NC_017503_00967","NC_018406_00783","NC_018407_00760","NC_018408_00800","NC_018409_00767","NC_018410_00740","NC_018411_00748","NC_018412_00790","NC_018413_00745","NC_023030_00815"
"group_2206","","High affinity transport system protein p37","12","12","1","1","586","","","","176","176","176","NC_004829_00557","NC_017502_00556","NC_017503_01270","NC_018406_00551","NC_018407_00529","NC_018408_00529","NC_018409_00534","NC_018410_00509","NC_018411_00516","NC_018412_00518","NC_018413_00513","NC_023030_00512"
"group_2207","","hypothetical protein","12","12","1","1","1239","","","","155","155","155","NC_004829_01176","NC_017502_01177","NC_017503_00671","NC_018406_01095","NC_018407_01072","NC_018408_01112","NC_018409_01087","NC_018410_01045","NC_018411_01067","NC_018412_01102","NC_018413_01056","NC_023030_01147"
"group_2208","","hypothetical protein","12","12","1","1","1421","","","","167","167","167","NC_004829_00903","NC_017502_00904","NC_017503_00936","NC_018406_00813","NC_018407_00790","NC_018408_00830","NC_018409_00797","NC_018410_00770","NC_018411_00779","NC_018412_00821","NC_018413_00775","NC_023030_00847"
"deoD_2","","Purine nucleoside phosphorylase DeoD-type","12","12","1","1","2041","","","","521","521","521","NC_004829_01350","NC_017502_01351","NC_017503_00464","NC_018406_01271","NC_018407_01248","NC_018408_01298","NC_018409_01264","NC_018410_01222","NC_018411_01244","NC_018412_01279","NC_018413_01232","NC_023030_01325"
"valS_4","","Valine--tRNA ligase","12","12","1","1","2010","","","","194","194","194","NC_004829_01319","NC_017502_01320","NC_017503_00495","NC_018406_01241","NC_018407_01218","NC_018408_01268","NC_018409_01234","NC_018410_01192","NC_018411_01214","NC_018412_01249","NC_018413_01202","NC_023030_01293"
"yloB_2","","Calcium-transporting ATPase","12","12","1","1","542","","","","512","512","512","NC_004829_00604","NC_017502_00603","NC_017503_01222","NC_018406_00597","NC_018407_00575","NC_018408_00575","NC_018409_00580","NC_018410_00555","NC_018411_00562","NC_018412_00564","NC_018413_00559","NC_023030_00561"
"group_2212","","hypothetical protein","12","12","1","1","1951","","","","155","155","155","NC_004829_01273","NC_017502_01274","NC_017503_00542","NC_018406_01191","NC_018407_01168","NC_018408_01218","NC_018409_01184","NC_018410_01142","NC_018411_01163","NC_018412_01199","NC_018413_01152","NC_023030_01242"
"group_2214","","hypothetical protein","12","12","1","1","214","","","","188","188","188","NC_004829_01605","NC_017502_01607","NC_017503_01536","NC_018406_01513","NC_018407_01492","NC_018408_01540","NC_018409_01508","NC_018410_01462","NC_018411_01465","NC_018412_01521","NC_018413_01445","NC_023030_01575"
"group_2215","","Nucleoid-associated protein","12","12","1","1","411","","","","302","302","302","NC_004829_01402","NC_017502_01402","NC_017503_01338","NC_018406_01330","NC_018407_01307","NC_018408_01357","NC_018409_01322","NC_018410_01278","NC_018411_01300","NC_018412_01337","NC_018413_01280","NC_023030_01372"
"cmk_2","","Cytidylate kinase","12","12","1","1","1098","","","","161","161","161","NC_004829_00343","NC_017502_00341","NC_017503_00335","NC_018406_00385","NC_018407_00364","NC_018408_00363","NC_018409_00364","NC_018410_00351","NC_018411_00352","NC_018412_00352","NC_018413_00350","NC_023030_00350"
"group_2217","","hypothetical protein","12","12","1","1","1656","","","","173","173","173","NC_004829_00975","NC_017502_00976","NC_017503_00864","NC_018406_00894","NC_018407_00871","NC_018408_00911","NC_018409_00877","NC_018410_00851","NC_018411_00859","NC_018412_00902","NC_018413_00856","NC_023030_00918"
"group_2218","","hypothetical protein","12","12","1","1","1172","","","","179","179","179","NC_004829_00426","NC_017502_00424","NC_017503_00412","NC_018406_00461","NC_018407_00440","NC_018408_00440","NC_018409_00440","NC_018410_00427","NC_018411_00428","NC_018412_00429","NC_018413_00426","NC_023030_00425"
"group_2219","","hypothetical protein","12","12","1","1","185","","","","152","152","152","NC_004829_01629","NC_017502_01631","NC_017503_01561","NC_018406_01537","NC_018407_01516","NC_018408_01564","NC_018409_01532","NC_018410_01486","NC_018411_01489","NC_018412_01545","NC_018413_01469","NC_023030_01602"
"group_2220","","hypothetical protein","12","12","1","1","198","","","","464","464","464","NC_004829_01616","NC_017502_01618","NC_017503_01548","NC_018406_01524","NC_018407_01503","NC_018408_01551","NC_018409_01519","NC_018410_01473","NC_018411_01476","NC_018412_01532","NC_018413_01456","NC_023030_01589"
"group_2221","","hypothetical protein","12","12","1","1","1552","","","","725","725","725","NC_004829_00924","NC_017502_00925","NC_017503_00914","NC_018406_00838","NC_018407_00815","NC_018408_00855","NC_018409_00822","NC_018410_00795","NC_018411_00804","NC_018412_00846","NC_018413_00800","NC_023030_00868"
"group_2222","","hypothetical protein","12","12","1","1","741","","","","338","338","338","NC_004829_00212","NC_017502_00211","NC_017503_00203","NC_018406_00208","NC_018407_00209","NC_018408_00208","NC_018409_00208","NC_018410_00207","NC_018411_00209","NC_018412_00208","NC_018413_00207","NC_023030_00210"
"rplC_1","","50S ribosomal protein L3","12","12","1","1","840","","","","371","371","371","NC_004829_00109","NC_017502_00109","NC_017503_00107","NC_018406_00109","NC_018407_00110","NC_018408_00109","NC_018409_00109","NC_018410_00109","NC_018411_00109","NC_018412_00109","NC_018413_00109","NC_023030_00110"
"pdhD","","Dihydrolipoyl dehydrogenase","12","12","1","1","1299","","","","911","911","911","NC_004829_01115","NC_017502_01116","NC_017503_00732","NC_018406_01036","NC_018407_01013","NC_018408_01053","NC_018409_01028","NC_018410_00986","NC_018411_01008","NC_018412_01043","NC_018413_00997","NC_023030_01084"
"alkH_2","","Aldehyde dehydrogenase","12","12","1","1","171","","","","1118","1118","1118","NC_004829_01648","NC_017502_01650","NC_017503_01580","NC_018406_01556","NC_018407_01535","NC_018408_01583","NC_018409_01551","NC_018410_01505","NC_018411_01508","NC_018412_01564","NC_018413_01488","NC_023030_01620"
"group_2226","","hypothetical protein","12","12","1","1","818","","","","509","509","509","NC_004829_00134","NC_017502_00134","NC_017503_00132","NC_018406_00134","NC_018407_00135","NC_018408_00134","NC_018409_00134","NC_018410_00134","NC_018411_00134","NC_018412_00134","NC_018413_00134","NC_023030_00135"
"trpS","","Tryptophan--tRNA ligase","12","12","1","1","1948","","","","905","905","905","NC_004829_01269","NC_017502_01270","NC_017503_00546","NC_018406_01187","NC_018407_01164","NC_018408_01214","NC_018409_01180","NC_018410_01138","NC_018411_01159","NC_018412_01195","NC_018413_01148","NC_023030_01238"
"deoD_1","","Purine nucleoside phosphorylase DeoD-type","12","12","1","1","2040","","","","170","170","170","NC_004829_01349","NC_017502_01350","NC_017503_00465","NC_018406_01270","NC_018407_01247","NC_018408_01297","NC_018409_01263","NC_018410_01221","NC_018411_01243","NC_018412_01278","NC_018413_01231","NC_023030_01324"
"cysA","","Sulfate/thiosulfate import ATP-binding protein CysA","12","12","1","1","523","","","","398","398","398","NC_004829_00622","NC_017502_00621","NC_017503_01204","NC_018406_00614","NC_018407_00592","NC_018408_00593","NC_018409_00598","NC_018410_00572","NC_018411_00580","NC_018412_00582","NC_018413_00577","NC_023030_00579"
"group_2231","","hypothetical protein","12","12","1","1","1530","","","","725","725","725","NC_004829_00943","NC_017502_00944","NC_017503_00895","NC_018406_00857","NC_018407_00834","NC_018408_00874","NC_018409_00841","NC_018410_00814","NC_018411_00823","NC_018412_00865","NC_018413_00819","NC_023030_00886"
"yumC","","Ferredoxin--NADP reductase 2","12","12","1","1","2236","","","","986","986","986","NC_004829_00808","NC_017502_00810","NC_017503_01025","NC_018406_00759","NC_018407_00736","NC_018408_00737","NC_018409_00743","NC_018410_00716","NC_018411_00724","NC_018412_00727","NC_018413_00721","NC_023030_00765"
"group_2233","","hypothetical protein","12","12","1","1","200","","","","320","320","320","NC_004829_01614","NC_017502_01616","NC_017503_01546","NC_018406_01522","NC_018407_01501","NC_018408_01549","NC_018409_01517","NC_018410_01471","NC_018411_01474","NC_018412_01530","NC_018413_01454","NC_023030_01586"
"lysS","","Lysine--tRNA ligase","12","12","1","1","806","","","","1478","1478","1478","NC_004829_00147","NC_017502_00147","NC_017503_00145","NC_018406_00148","NC_018407_00149","NC_018408_00148","NC_018409_00148","NC_018410_00148","NC_018411_00148","NC_018412_00148","NC_018413_00148","NC_023030_00148"
"fusA_1","","Elongation factor G","12","12","1","1","2193","","","","1673","1700","1679","NC_004829_01240","NC_017502_01241","NC_017503_00612","NC_018406_01158","NC_018407_01135","NC_018408_01185","NC_018409_01151","NC_018410_01109","NC_018411_01130","NC_018412_01166","NC_018413_01119","NC_023030_01208"
"group_2236","","hypothetical protein","12","12","1","1","1651","","","","632","632","632","NC_004829_00967","NC_017502_00968","NC_017503_00871","NC_018406_00887","NC_018407_00864","NC_018408_00904","NC_018409_00870","NC_018410_00844","NC_018411_00852","NC_018412_00895","NC_018413_00849","NC_023030_00911"
"group_2237","","hypothetical protein","12","12","1","1","30","","","","551","551","551","NC_004829_00802","NC_017502_00804","NC_017503_01032","NC_018406_00750","NC_018407_00727","NC_018408_00728","NC_018409_00734","NC_018410_00707","NC_018411_00715","NC_018412_00718","NC_018413_00712","NC_023030_00759"
"group_2238","","hypothetical protein","12","12","1","1","1590","","","","929","929","929","NC_004829_01098","NC_017502_01099","NC_017503_00749","NC_018406_01027","NC_018407_01004","NC_018408_01044","NC_018409_01019","NC_018410_00977","NC_018411_00999","NC_018412_01034","NC_018413_00988","NC_023030_01072"
"rpsZ","","30S ribosomal protein S14 type Z","12","12","1","1","825","","","","182","182","182","NC_004829_00125","NC_017502_00125","NC_017503_00123","NC_018406_00125","NC_018407_00126","NC_018408_00125","NC_018409_00125","NC_018410_00125","NC_018411_00125","NC_018412_00125","NC_018413_00125","NC_023030_00126"
"group_2240","","hypothetical protein","12","12","1","1","790","","","","191","191","191","NC_004829_00162","NC_017502_00162","NC_017503_00160","NC_018406_00163","NC_018407_00164","NC_018408_00163","NC_018409_00163","NC_018410_00163","NC_018411_00163","NC_018412_00163","NC_018413_00163","NC_023030_00165"
"group_2241","","hypothetical protein","12","12","1","1","2027","","","","194","194","194","NC_004829_01336","NC_017502_01337","NC_017503_00478","NC_018406_01257","NC_018407_01234","NC_018408_01284","NC_018409_01250","NC_018410_01208","NC_018411_01230","NC_018412_01265","NC_018413_01218","NC_023030_01311"
"metK_2","","S-adenosylmethionine synthase","12","12","1","1","1450","","","","197","197","197","NC_004829_01082","NC_017502_01083","NC_017503_00764","NC_018406_01011","NC_018407_00988","NC_018408_01028","NC_018409_01003","NC_018410_00961","NC_018411_00983","NC_018412_01018","NC_018413_00972","NC_023030_01056"
"group_2243","","hypothetical protein","12","12","1","1","903","","","","353","353","353","NC_004829_00044","NC_017502_00044","NC_017503_00044","NC_018406_00044","NC_018407_00044","NC_018408_00044","NC_018409_00044","NC_018410_00044","NC_018411_00044","NC_018412_00044","NC_018413_00044","NC_023030_00047"
"group_2244","","Putative ABC transporter ATP-binding protein MG187 ","12","12","1","1","876","","","","1304","1304","1304","NC_004829_00071","NC_017502_00071","NC_017503_00070","NC_018406_00072","NC_018407_00072","NC_018408_00072","NC_018409_00072","NC_018410_00072","NC_018411_00072","NC_018412_00072","NC_018413_00072","NC_023030_00074"
"group_2245","","hypothetical protein","12","12","1","1","879","","","","188","188","188","NC_004829_00068","NC_017502_00068","NC_017503_00067","NC_018406_00069","NC_018407_00069","NC_018408_00069","NC_018409_00069","NC_018410_00069","NC_018411_00069","NC_018412_00069","NC_018413_00069","NC_023030_00071"
"group_2246","","hypothetical protein","12","12","1","1","344","","","","191","191","191","NC_004829_01472","NC_017502_01472","NC_017503_01408","NC_018406_01400","NC_018407_01377","NC_018408_01427","NC_018409_01393","NC_018410_01348","NC_018411_01370","NC_018412_01407","NC_018413_01350","NC_023030_01443"
"group_2247","","hypothetical protein","12","12","1","1","2228","","","","818","827","824","NC_004829_00816","NC_017502_00818","NC_017503_01016","NC_018406_00767","NC_018407_00744","NC_018408_00745","NC_018409_00751","NC_018410_00724","NC_018411_00732","NC_018412_00735","NC_018413_00729","NC_023030_00773"
"group_2248","","hypothetical protein","12","12","1","1","116","","","","191","194","193","NC_004829_00634","NC_017502_00633","NC_017503_01192","NC_018406_00626","NC_018407_00604","NC_018408_00605","NC_018409_00610","NC_018410_00583","NC_018411_00592","NC_018412_00594","NC_018413_00589","NC_023030_00592"
"group_2249","","hypothetical protein","12","12","1","1","381","","","","200","200","200","NC_004829_01432","NC_017502_01432","NC_017503_01368","NC_018406_01360","NC_018407_01337","NC_018408_01387","NC_018409_01353","NC_018410_01308","NC_018411_01330","NC_018412_01367","NC_018413_01310","NC_023030_01403"
"group_2250","","hypothetical protein","12","12","1","1","1252","","","","200","200","200","NC_004829_01162","NC_017502_01163","NC_017503_00685","NC_018406_01082","NC_018407_01059","NC_018408_01099","NC_018409_01074","NC_018410_01032","NC_018411_01054","NC_018412_01089","NC_018413_01043","NC_023030_01134"
"tsaD","","tRNA N6-adenosine threonylcarbamoyltransferase","12","12","1","1","1448","","","","962","962","962","NC_004829_01083","NC_017502_01084","NC_017503_00763","NC_018406_01012","NC_018407_00989","NC_018408_01029","NC_018409_01004","NC_018410_00962","NC_018411_00984","NC_018412_01019","NC_018413_00973","NC_023030_01057"
"nox_1","","NADH oxidase","12","12","1","1","1289","","","","587","587","587","NC_004829_01125","NC_017502_01126","NC_017503_00722","NC_018406_01046","NC_018407_01023","NC_018408_01063","NC_018409_01038","NC_018410_00996","NC_018411_01018","NC_018412_01053","NC_018413_01007","NC_023030_01094"
"group_2253","","putative tRNA/rRNA methyltransferase","12","12","1","1","1262","","","","563","563","563","NC_004829_01150","NC_017502_01151","NC_017503_00697","NC_018406_01071","NC_018407_01048","NC_018408_01088","NC_018409_01063","NC_018410_01021","NC_018411_01043","NC_018412_01078","NC_018413_01032","NC_023030_01123"
"group_2254","","hypothetical protein","12","12","1","1","899","","","","707","713","712","NC_004829_00048","NC_017502_00048","NC_017503_00048","NC_018406_00049","NC_018407_00049","NC_018408_00049","NC_018409_00049","NC_018410_00049","NC_018411_00049","NC_018412_00049","NC_018413_00049","NC_023030_00051"
"mnmG_2","","tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG","12","12","1","1","338","","","","1133","1133","1133","NC_004829_01478","NC_017502_01478","NC_017503_01414","NC_018406_01405","NC_018407_01383","NC_018408_01432","NC_018409_01399","NC_018410_01354","NC_018411_01376","NC_018412_01413","NC_018413_01356","NC_023030_01449"
"group_2256","","hypothetical protein","12","12","1","1","730","","","","152","152","152","NC_004829_00222","NC_017502_00221","NC_017503_00213","NC_018406_00218","NC_018407_00219","NC_018408_00218","NC_018409_00218","NC_018410_00217","NC_018411_00219","NC_018412_00218","NC_018413_00217","NC_023030_00220"
"group_226","","hypothetical protein","12","12","1","1","417","","","","296","437","307","NC_004829_01396","NC_017502_01396","NC_017503_01332","NC_018406_01324","NC_018407_01301","NC_018408_01351","NC_018409_01316","NC_018410_01272","NC_018411_01294","NC_018412_01331","NC_018413_01274","NC_023030_01366"
"rlmB","","23S rRNA (guanosine-2'-O-)-methyltransferase RlmB","12","12","1","1","273","","","","557","557","557","NC_004829_01545","NC_017502_01546","NC_017503_01477","NC_018406_01468","NC_018407_01447","NC_018408_01495","NC_018409_01463","NC_018410_01417","NC_018411_01420","NC_018412_01476","NC_018413_01400","NC_023030_01513"
"group_232","","hypothetical protein","12","12","1","1","258","","","","290","644","573","NC_004829_01573","NC_017502_01574","NC_017503_01504","NC_018406_01482","NC_018407_01461","NC_018408_01509","NC_018409_01477","NC_018410_01431","NC_018411_01434","NC_018412_01490","NC_018413_01414","NC_023030_01541"
"group_233","","hypothetical protein","12","12","1","1","251","","","","155","251","228","NC_004829_01578","NC_017502_01579","NC_017503_01509","NC_018406_01487","NC_018407_01466","NC_018408_01514","NC_018409_01482","NC_018410_01436","NC_018411_01439","NC_018412_01495","NC_018413_01419","NC_023030_01546"
"mdlD_2","","NAD(P)-dependent benzaldehyde dehydrogenase","12","12","1","1","170","","","","242","299","294","NC_004829_01649","NC_017502_01651","NC_017503_01581","NC_018406_01557","NC_018407_01536","NC_018408_01584","NC_018409_01552","NC_018410_01506","NC_018411_01509","NC_018412_01565","NC_018413_01489","NC_023030_01621"
"folD","","Bifunctional protein FolD protein","12","12","1","1","162","","","","851","851","851","NC_004829_01657","NC_017502_01659","NC_017503_01588","NC_018406_01564","NC_018407_01543","NC_018408_01591","NC_018409_01559","NC_018410_01513","NC_018411_01516","NC_018412_01572","NC_018413_01496","NC_023030_01628"
"plpA","","Fibronectin-binding protein PlpA","12","12","1","1","20","","","","2087","2576","2482","NC_004829_00792","NC_017502_00793","NC_017503_01042","NC_018406_00740","NC_018407_00717","NC_018408_00718","NC_018409_00724","NC_018410_00697","NC_018411_00705","NC_018412_00708","NC_018413_00702","NC_023030_00748"
"yheI_2","","putative multidrug resistance ABC transporter ATP-binding/permease protein YheI","12","12","1","1","915","","","","560","869","593","NC_004829_00007","NC_017502_00007","NC_017503_00007","NC_018406_00007","NC_018407_00007","NC_018408_00007","NC_018409_00007","NC_018410_00007","NC_018411_00007","NC_018412_00007","NC_018413_00007","NC_023030_00005"
"group_248","","putative ABC transporter ATP-binding protein","12","12","1","1","918","","","","437","500","489","NC_004829_00010","NC_017502_00010","NC_017503_00010","NC_018406_00010","NC_018407_00010","NC_018408_00010","NC_018409_00010","NC_018410_00010","NC_018411_00010","NC_018412_00010","NC_018413_00010","NC_023030_00009"
"rsmA_1","","Ribosomal RNA small subunit methyltransferase A","12","12","1","1","922","","","","299","299","299","NC_004829_00015","NC_017502_00015","NC_017503_00015","NC_018406_00015","NC_018407_00015","NC_018408_00015","NC_018409_00015","NC_018410_00015","NC_018411_00015","NC_018412_00015","NC_018413_00015","NC_023030_00013"
"rsmA_2","","Ribosomal RNA small subunit methyltransferase A","12","12","1","1","923","","","","470","470","470","NC_004829_00016","NC_017502_00016","NC_017503_00016","NC_018406_00016","NC_018407_00016","NC_018408_00016","NC_018409_00016","NC_018410_00016","NC_018411_00016","NC_018412_00016","NC_018413_00016","NC_023030_00014"
"glpK_2","","Glycerol kinase","12","12","1","1","935","","","","131","188","178","NC_004829_00030","NC_017502_00030","NC_017503_00030","NC_018406_00030","NC_018407_00030","NC_018408_00030","NC_018409_00030","NC_018410_00030","NC_018411_00030","NC_018412_00030","NC_018413_00030","NC_023030_00028"
"lhgO","","L-2-hydroxyglutarate oxidase LhgO","12","12","1","1","937","","","","557","848","822","NC_004829_00034","NC_017502_00034","NC_017503_00034","NC_018406_00034","NC_018407_00034","NC_018408_00034","NC_018409_00034","NC_018410_00034","NC_018411_00034","NC_018412_00034","NC_018413_00034","NC_023030_00033"
"group_254","","hypothetical protein","12","12","1","1","904","","","","923","1019","1011","NC_004829_00043","NC_017502_00043","NC_017503_00043","NC_018406_00043","NC_018407_00043","NC_018408_00043","NC_018409_00043","NC_018410_00043","NC_018411_00043","NC_018412_00043","NC_018413_00043","NC_023030_00046"
"pstA","","Phosphate transport system permease protein PstA","12","12","1","1","863","","","","323","632","554","NC_004829_00087","NC_017502_00087","NC_017503_00086","NC_018406_00088","NC_018407_00088","NC_018408_00088","NC_018409_00088","NC_018410_00088","NC_018411_00088","NC_018412_00088","NC_018413_00088","NC_023030_00092"
"adk_2","","Adenylate kinase","12","12","1","1","816","","","","296","296","296","NC_004829_00136","NC_017502_00136","NC_017503_00134","NC_018406_00136","NC_018407_00137","NC_018408_00136","NC_018409_00136","NC_018410_00136","NC_018411_00136","NC_018412_00136","NC_018413_00136","NC_023030_00137"
"ldh_2","","L-lactate dehydrogenase","12","12","1","1","812","","","","377","401","379","NC_004829_00139","NC_017502_00139","NC_017503_00138","NC_018406_00140","NC_018407_00141","NC_018408_00140","NC_018409_00140","NC_018410_00140","NC_018411_00140","NC_018412_00140","NC_018413_00140","NC_023030_00141"
"dnaJ_1","","Chaperone protein DnaJ","12","12","1","1","805","","","","356","842","761","NC_004829_00148","NC_017502_00148","NC_017503_00147","NC_018406_00149","NC_018407_00150","NC_018408_00149","NC_018409_00149","NC_018410_00149","NC_018411_00149","NC_018412_00149","NC_018413_00149","NC_023030_00150"
"group_265","","hypothetical protein","12","12","1","1","802","","","","269","377","368","NC_004829_00151","NC_017502_00151","NC_017503_00150","NC_018406_00152","NC_018407_00153","NC_018408_00152","NC_018409_00152","NC_018410_00152","NC_018411_00152","NC_018412_00152","NC_018413_00152","NC_023030_00154"
"group_267","","hypothetical protein","12","12","1","1","758","","","","404","404","404","NC_004829_00198","NC_017502_00198","NC_017503_00195","NC_018406_00199","NC_018407_00200","NC_018408_00199","NC_018409_00199","NC_018410_00198","NC_018411_00199","NC_018412_00199","NC_018413_00198","NC_023030_00200"
"group_268","","hypothetical protein","12","12","1","1","749","","","","749","749","749","NC_004829_00205","NC_017502_00204","NC_017503_00199","NC_018406_00204","NC_018407_00205","NC_018408_00204","NC_018409_00204","NC_018410_00203","NC_018411_00205","NC_018412_00204","NC_018413_00203","NC_023030_00205"
"group_269","","hypothetical protein","12","12","1","1","733","","","","398","398","398","NC_004829_00219","NC_017502_00218","NC_017503_00210","NC_018406_00215","NC_018407_00216","NC_018408_00215","NC_018409_00215","NC_018410_00214","NC_018411_00216","NC_018412_00215","NC_018413_00214","NC_023030_00217"
"group_270","","hypothetical protein","12","12","1","1","732","","","","338","338","338","NC_004829_00220","NC_017502_00219","NC_017503_00211","NC_018406_00216","NC_018407_00217","NC_018408_00216","NC_018409_00216","NC_018410_00215","NC_018411_00217","NC_018412_00216","NC_018413_00215","NC_023030_00218"
"group_272","","hypothetical protein","12","12","1","1","714","","","","221","221","221","NC_004829_00236","NC_017502_00235","NC_017503_00226","NC_018406_00227","NC_018407_00228","NC_018408_00227","NC_018409_00227","NC_018410_00226","NC_018411_00228","NC_018412_00227","NC_018413_00226","NC_023030_00235"
"mnmA","","tRNA-specific 2-thiouridylase MnmA","12","12","1","1","962","","","","407","407","407","NC_004829_00259","NC_017502_00258","NC_017503_00251","NC_018406_00257","NC_018407_00258","NC_018408_00257","NC_018409_00258","NC_018410_00256","NC_018411_00257","NC_018412_00257","NC_018413_00255","NC_023030_00268"
"group_276","","hypothetical protein","12","12","1","1","970","","","","416","569","556","NC_004829_00267","NC_017502_00266","NC_017503_00259","NC_018406_00265","NC_018407_00266","NC_018408_00265","NC_018409_00266","NC_018410_00264","NC_018411_00265","NC_018412_00265","NC_018413_00263","NC_023030_00276"
"fmt","","Methionyl-tRNA formyltransferase","12","12","1","1","978","","","","482","482","482","NC_004829_00277","NC_017502_00276","NC_017503_00269","NC_018406_00275","NC_018407_00276","NC_018408_00275","NC_018409_00276","NC_018410_00274","NC_018411_00275","NC_018412_00275","NC_018413_00273","NC_023030_00286"
"group_278","","hypothetical protein","12","12","1","1","980","","","","206","563","325","NC_004829_00279","NC_017502_00278","NC_017503_00271","NC_018406_00277","NC_018407_00278","NC_018408_00277","NC_018409_00278","NC_018410_00276","NC_018411_00277","NC_018412_00277","NC_018413_00275","NC_023030_00288"
"group_279","","hypothetical protein","12","12","1","1","1000","","","","335","542","404","NC_004829_00307","NC_017502_00306","NC_017503_00299","NC_018406_00306","NC_018407_00307","NC_018408_00306","NC_018409_00307","NC_018410_00305","NC_018411_00306","NC_018412_00306","NC_018413_00304","NC_023030_00315"
"group_280","","hypothetical protein","12","12","1","1","1002","","","Hypothetical protein with no hits to refseq/uniprot/clusters/cdd/tigrfams/pfam overlapping another protein with hits","212","212","212","NC_004829_00309","NC_017502_00308","NC_017503_00301","NC_018406_00308","NC_018407_00309","NC_018408_00308","NC_018409_00309","NC_018410_00307","NC_018411_00308","NC_018412_00308","NC_018413_00306","NC_023030_00317"
"group_281","","hypothetical protein","12","12","1","1","1107","","","","338","407","395","NC_004829_00363","NC_017502_00361","NC_017503_00354","NC_018406_00404","NC_018407_00383","NC_018408_00382","NC_018409_00383","NC_018410_00370","NC_018411_00371","NC_018412_00371","NC_018413_00369","NC_023030_00369"
"group_282","","hypothetical protein","12","12","1","1","1130","","","","269","269","269","NC_004829_00390","NC_017502_00388","NC_017503_00377","NC_018406_00427","NC_018407_00406","NC_018408_00405","NC_018409_00406","NC_018410_00393","NC_018411_00394","NC_018412_00394","NC_018413_00392","NC_023030_00391"
"group_283","","hypothetical protein","12","12","1","1","1132","","","","185","185","185","NC_004829_00393","NC_017502_00391","NC_017503_00380","NC_018406_00430","NC_018407_00409","NC_018408_00408","NC_018409_00409","NC_018410_00396","NC_018411_00397","NC_018412_00397","NC_018413_00395","NC_023030_00394"
"group_285","","hypothetical protein","12","12","1","1","1144","","","","635","635","635","NC_004829_00402","NC_017502_00400","NC_017503_00387","NC_018406_00438","NC_018407_00417","NC_018408_00417","NC_018409_00417","NC_018410_00404","NC_018411_00405","NC_018412_00406","NC_018413_00403","NC_023030_00401"
"group_286","","hypothetical protein","12","12","1","1","1157","","","","203","278","209","NC_004829_00409","NC_017502_00407","NC_017503_00396","NC_018406_00445","NC_018407_00424","NC_018408_00424","NC_018409_00424","NC_018410_00411","NC_018411_00412","NC_018412_00413","NC_018413_00410","NC_023030_00408"
"group_288","","hypothetical protein","12","12","1","1","1159","","","","497","497","497","NC_004829_00411","NC_017502_00409","NC_017503_00398","NC_018406_00447","NC_018407_00426","NC_018408_00426","NC_018409_00426","NC_018410_00413","NC_018411_00414","NC_018412_00415","NC_018413_00412","NC_023030_00410"
"group_289","","hypothetical protein","12","12","1","1","1160","","","","1115","1190","1177","NC_004829_00412","NC_017502_00410","NC_017503_00399","NC_018406_00448","NC_018407_00427","NC_018408_00427","NC_018409_00427","NC_018410_00414","NC_018411_00415","NC_018412_00416","NC_018413_00413","NC_023030_00411"
"group_290","","hypothetical protein","12","12","1","1","1178","","","","482","971","563","NC_004829_00432","NC_017502_00430","NC_017503_00418","NC_018406_00467","NC_018407_00446","NC_018408_00446","NC_018409_00446","NC_018410_00433","NC_018411_00434","NC_018412_00435","NC_018413_00432","NC_023030_00431"
"group_292","","hypothetical protein","12","12","1","1","1183","","","","236","290","285","NC_004829_00437","NC_017502_00435","NC_017503_00422","NC_018406_00472","NC_018407_00451","NC_018408_00451","NC_018409_00451","NC_018410_00438","NC_018411_00439","NC_018412_00440","NC_018413_00437","NC_023030_00435"
"group_293","","hypothetical protein","12","12","1","1","1745","","","","215","215","215","NC_004829_00448","NC_017502_00447","NC_017503_00433","NC_018406_00483","NC_018407_00462","NC_018408_00462","NC_018409_00462","NC_018410_00449","NC_018411_00450","NC_018412_00451","NC_018413_00448","NC_023030_00447"
"group_299","","hypothetical protein","12","12","1","1","612","","","","122","137","127","NC_004829_00533","NC_017502_00532","NC_017503_01293","NC_018406_00527","NC_018407_00505","NC_018408_00505","NC_018409_00510","NC_018410_00485","NC_018411_00492","NC_018412_00494","NC_018413_00489","NC_023030_00489"
"rpoC_4","","DNA-directed RNA polymerase subunit beta'","12","12","1","1","602","","","","488","563","508","NC_004829_00542","NC_017502_00541","NC_017503_01284","NC_018406_00537","NC_018407_00515","NC_018408_00515","NC_018409_00520","NC_018410_00495","NC_018411_00502","NC_018412_00504","NC_018413_00499","NC_023030_00498"
"group_301","","hypothetical protein","12","12","1","1","600","","","","2012","2186","2041","NC_004829_00544","NC_017502_00543","NC_017503_01282","NC_018406_00539","NC_018407_00517","NC_018408_00517","NC_018409_00522","NC_018410_00497","NC_018411_00504","NC_018412_00506","NC_018413_00501","NC_023030_00500"
"group_302","","hypothetical protein","12","12","1","1","599","","","","1004","1004","1004","NC_004829_00545","NC_017502_00544","NC_017503_01281","NC_018406_00540","NC_018407_00518","NC_018408_00518","NC_018409_00523","NC_018410_00498","NC_018411_00505","NC_018412_00507","NC_018413_00502","NC_023030_00501"
"group_303","","hypothetical protein","12","12","1","1","598","","","","251","251","251","NC_004829_00546","NC_017502_00545","NC_017503_01280","NC_018406_00541","NC_018407_00519","NC_018408_00519","NC_018409_00524","NC_018410_00499","NC_018411_00506","NC_018412_00508","NC_018413_00503","NC_023030_00502"
"group_304","","hypothetical protein","12","12","1","1","573","","","","302","350","342","NC_004829_00569","NC_017502_00568","NC_017503_01255","NC_018406_00565","NC_018407_00543","NC_018408_00543","NC_018409_00548","NC_018410_00523","NC_018411_00530","NC_018412_00532","NC_018413_00527","NC_023030_00527"
"group_305","","hypothetical protein","12","12","1","1","571","","","","125","290","276","NC_004829_00571","NC_017502_00570","NC_017503_01253","NC_018406_00567","NC_018407_00545","NC_018408_00545","NC_018409_00550","NC_018410_00525","NC_018411_00532","NC_018412_00534","NC_018413_00529","NC_023030_00530"
"dnaE1_1","","DNA polymerase III subunit alpha","12","12","1","1","561","","","","365","629","585","NC_004829_00585","NC_017502_00584","NC_017503_01239","NC_018406_00581","NC_018407_00559","NC_018408_00559","NC_018409_00564","NC_018410_00539","NC_018411_00546","NC_018412_00548","NC_018413_00543","NC_023030_00544"
"group_313","","hypothetical protein","12","12","1","1","109","","","","143","143","143","NC_004829_00625","NC_017502_00624","NC_017503_01201","NC_018406_00617","NC_018407_00595","NC_018408_00596","NC_018409_00601","NC_018410_00575","NC_018411_00583","NC_018412_00585","NC_018413_00580","NC_023030_00583"
"group_315","","hypothetical protein","12","12","1","1","87","","","","137","137","137","NC_004829_00676","NC_017502_00676","NC_017503_01155","NC_018406_00628","NC_018407_00606","NC_018408_00607","NC_018409_00612","NC_018410_00585","NC_018411_00594","NC_018412_00596","NC_018413_00591","NC_023030_00626"
"group_316","","hypothetical protein","12","12","1","1","1323","","","","254","335","267","NC_004829_00682","NC_017502_00682","NC_017503_01149","NC_018406_00634","NC_018407_00612","NC_018408_00613","NC_018409_00618","NC_018410_00591","NC_018411_00600","NC_018412_00602","NC_018413_00597","NC_023030_00632"
"group_318","","hypothetical protein","12","12","1","1","1332","","","","269","350","282","NC_004829_00693","NC_017502_00693","NC_017503_01138","NC_018406_00645","NC_018407_00623","NC_018408_00624","NC_018409_00629","NC_018410_00602","NC_018411_00611","NC_018412_00613","NC_018413_00608","NC_023030_00644"
"sufB_1","","FeS cluster assembly protein SufB","12","12","1","1","1344","","","","302","542","502","NC_004829_00704","NC_017502_00704","NC_017503_01127","NC_018406_00657","NC_018407_00635","NC_018408_00635","NC_018409_00641","NC_018410_00614","NC_018411_00623","NC_018412_00625","NC_018413_00620","NC_023030_00655"
"gpsA","","Glycerol-3-phosphate dehydrogenase [NAD(P) ]","12","12","1","1","1350","","","","629","629","629","NC_004829_00709","NC_017502_00709","NC_017503_01122","NC_018406_00663","NC_018407_00641","NC_018408_00641","NC_018409_00647","NC_018410_00620","NC_018411_00629","NC_018412_00631","NC_018413_00626","NC_023030_00661"
"dnaJ_8","","Chaperone protein DnaJ","12","12","1","1","1352","","","","281","314","292","NC_004829_00711","NC_017502_00711","NC_017503_01120","NC_018406_00665","NC_018407_00643","NC_018408_00643","NC_018409_00649","NC_018410_00622","NC_018411_00631","NC_018412_00633","NC_018413_00628","NC_023030_00663"
"atpA_2","","ATP synthase subunit alpha, sodium ion specific","12","12","1","1","1392","","","","593","806","752","NC_004829_00750","NC_017502_00751","NC_017503_01083","NC_018406_00701","NC_018407_00678","NC_018408_00679","NC_018409_00685","NC_018410_00658","NC_018411_00666","NC_018412_00669","NC_018413_00663","NC_023030_00708"
"group_326","","hypothetical protein","12","12","1","1","1387","","","","131","173","159","NC_004829_00757","NC_017502_00758","NC_017503_01076","NC_018406_00707","NC_018407_00684","NC_018408_00685","NC_018409_00691","NC_018410_00664","NC_018411_00672","NC_018412_00675","NC_018413_00669","NC_023030_00714"
"group_327","","hypothetical protein","12","12","1","1","1386","","","","158","158","158","NC_004829_00758","NC_017502_00759","NC_017503_01075","NC_018406_00708","NC_018407_00685","NC_018408_00686","NC_018409_00692","NC_018410_00665","NC_018411_00673","NC_018412_00676","NC_018413_00670","NC_023030_00715"
"group_328","","hypothetical protein","12","12","1","1","1374","","","","149","149","149","NC_004829_00773","NC_017502_00774","NC_017503_01060","NC_018406_00723","NC_018407_00700","NC_018408_00701","NC_018409_00707","NC_018410_00680","NC_018411_00688","NC_018412_00691","NC_018413_00685","NC_023030_00730"
"group_329","","hypothetical protein","12","12","1","1","11","","","","164","164","164","NC_004829_00781","NC_017502_00782","NC_017503_01052","NC_018406_00730","NC_018407_00707","NC_018408_00708","NC_018409_00714","NC_018410_00687","NC_018411_00695","NC_018412_00698","NC_018413_00692","NC_023030_00738"
"isiB","","Flavodoxin","12","12","1","1","19","","","","179","230","196","NC_004829_00791","NC_017502_00792","NC_017503_01043","NC_018406_00739","NC_018407_00716","NC_018408_00717","NC_018409_00723","NC_018410_00696","NC_018411_00704","NC_018412_00707","NC_018413_00701","NC_023030_00747"
"group_331","","hypothetical protein","12","12","1","1","2233","","","","215","215","215","NC_004829_00811","NC_017502_00813","NC_017503_01022","NC_018406_00762","NC_018407_00739","NC_018408_00740","NC_018409_00746","NC_018410_00719","NC_018411_00727","NC_018412_00730","NC_018413_00724","NC_023030_00768"
"group_332","","hypothetical protein","12","12","1","1","2232","","","","959","1421","1382","NC_004829_00812","NC_017502_00814","NC_017503_01020","NC_018406_00763","NC_018407_00740","NC_018408_00741","NC_018409_00747","NC_018410_00720","NC_018411_00728","NC_018412_00731","NC_018413_00725","NC_023030_00769"
"group_334","","hypothetical protein","12","12","1","1","2229","","","","176","185","177","NC_004829_00815","NC_017502_00817","NC_017503_01017","NC_018406_00766","NC_018407_00743","NC_018408_00744","NC_018409_00750","NC_018410_00723","NC_018411_00731","NC_018412_00734","NC_018413_00728","NC_023030_00772"
"group_337","","hypothetical protein","12","12","1","1","2124","","","","221","224","221","NC_004829_00867","NC_017502_00868","NC_017503_00972","NC_018406_00778","NC_018407_00755","NC_018408_00795","NC_018409_00762","NC_018410_00735","NC_018411_00743","NC_018412_00785","NC_018413_00740","NC_023030_00810"
"dxs","","1-deoxy-D-xylulose-5-phosphate synthase","12","12","1","1","2120","","","","1508","1508","1508","NC_004829_00868","NC_017502_00869","NC_017503_00971","NC_018406_00779","NC_018407_00756","NC_018408_00796","NC_018409_00763","NC_018410_00736","NC_018411_00744","NC_018412_00786","NC_018413_00741","NC_023030_00811"
"group_339","","hypothetical protein","12","12","1","1","2102","","","","275","383","365","NC_004829_00889","NC_017502_00890","NC_017503_00950","NC_018406_00799","NC_018407_00776","NC_018408_00816","NC_018409_00783","NC_018410_00756","NC_018411_00765","NC_018412_00807","NC_018413_00761","NC_023030_00833"
"msbA","","Lipid A export ATP-binding/permease protein MsbA","12","12","1","1","2099","","","","557","563","562","NC_004829_00890","NC_017502_00891","NC_017503_00949","NC_018406_00800","NC_018407_00777","NC_018408_00817","NC_018409_00784","NC_018410_00757","NC_018411_00766","NC_018412_00808","NC_018413_00762","NC_023030_00834"
"group_341","","hypothetical protein","12","12","1","1","1557","","","","425","425","425","NC_004829_00919","NC_017502_00920","NC_017503_00919","NC_018406_00833","NC_018407_00810","NC_018408_00850","NC_018409_00817","NC_018410_00790","NC_018411_00799","NC_018412_00841","NC_018413_00795","NC_023030_00863"
"group_342","","hypothetical protein","12","12","1","1","1555","","","","698","755","742","NC_004829_00921","NC_017502_00922","NC_017503_00917","NC_018406_00835","NC_018407_00812","NC_018408_00852","NC_018409_00819","NC_018410_00792","NC_018411_00801","NC_018412_00843","NC_018413_00797","NC_023030_00865"
"glyQS_1","","Glycine--tRNA ligase","12","12","1","1","1533","","","","395","395","395","NC_004829_00940","NC_017502_00941","NC_017503_00898","NC_018406_00854","NC_018407_00831","NC_018408_00871","NC_018409_00838","NC_018410_00811","NC_018411_00820","NC_018412_00862","NC_018413_00816","NC_023030_00883"
"rsmH","","Ribosomal RNA small subunit methyltransferase H","12","12","1","1","1636","","","","941","941","941","NC_004829_00955","NC_017502_00956","NC_017503_00883","NC_018406_00874","NC_018407_00851","NC_018408_00891","NC_018409_00857","NC_018410_00831","NC_018411_00839","NC_018412_00882","NC_018413_00836","NC_023030_00898"
"scpA","","hypothetical protein","12","12","1","1","1641","","","","1049","1184","1164","NC_004829_00958","NC_017502_00959","NC_017503_00880","NC_018406_00878","NC_018407_00855","NC_018408_00895","NC_018409_00861","NC_018410_00835","NC_018411_00843","NC_018412_00886","NC_018413_00840","NC_023030_00902"
"group_346","","hypothetical protein","12","12","1","1","1646","","","","233","242","233","NC_004829_00963","NC_017502_00964","NC_017503_00875","NC_018406_00883","NC_018407_00860","NC_018408_00900","NC_018409_00866","NC_018410_00840","NC_018411_00848","NC_018412_00891","NC_018413_00845","NC_023030_00907"
"group_347","","hypothetical protein","12","12","1","1","1648","","","","395","395","395","NC_004829_00965","NC_017502_00966","NC_017503_00873","NC_018406_00885","NC_018407_00862","NC_018408_00902","NC_018409_00868","NC_018410_00842","NC_018411_00850","NC_018412_00893","NC_018413_00847","NC_023030_00909"
"group_348","","hypothetical protein","12","12","1","1","1657","","","","956","956","956","NC_004829_00976","NC_017502_00977","NC_017503_00863","NC_018406_00895","NC_018407_00872","NC_018408_00912","NC_018409_00878","NC_018410_00852","NC_018411_00860","NC_018412_00903","NC_018413_00857","NC_023030_00919"
"group_349","","hypothetical protein","12","12","1","1","1666","","","","449","467","462","NC_004829_00981","NC_017502_00982","NC_017503_00859","NC_018406_00901","NC_018407_00878","NC_018408_00918","NC_018409_00884","NC_018410_00858","NC_018411_00866","NC_018412_00909","NC_018413_00863","NC_023030_00925"
"parE_2","","DNA topoisomerase 4 subunit B","12","12","1","1","1671","","","","509","554","512","NC_004829_00986","NC_017502_00987","NC_017503_00853","NC_018406_00906","NC_018407_00883","NC_018408_00923","NC_018409_00889","NC_018410_00863","NC_018411_00871","NC_018412_00914","NC_018413_00868","NC_023030_00930"
"group_351","","hypothetical protein","12","12","1","1","1680","","","","185","212","189","NC_004829_00992","NC_017502_00993","NC_017503_00847","NC_018406_00916","NC_018407_00893","NC_018408_00933","NC_018409_00899","NC_018410_00873","NC_018411_00881","NC_018412_00924","NC_018413_00877","NC_023030_00949"
"group_352","","hypothetical protein","12","12","1","1","1681","","","","269","269","269","NC_004829_00993","NC_017502_00994","NC_017503_00846","NC_018406_00917","NC_018407_00894","NC_018408_00934","NC_018409_00900","NC_018410_00874","NC_018411_00882","NC_018412_00925","NC_018413_00878","NC_023030_00950"
"group_353","","hypothetical protein","12","12","1","1","1709","","","","365","365","365","NC_004829_01021","NC_017502_01022","NC_017503_00831","NC_018406_00951","NC_018407_00928","NC_018408_00968","NC_018409_00943","NC_018410_00901","NC_018411_00923","NC_018412_00958","NC_018413_00911","NC_023030_00989"
"leuS_3","","Leucine--tRNA ligase","12","12","1","1","1483","","","","443","503","493","NC_004829_01027","NC_017502_01028","NC_017503_00825","NC_018406_00957","NC_018407_00934","NC_018408_00974","NC_018409_00949","NC_018410_00907","NC_018411_00929","NC_018412_00964","NC_018413_00917","NC_023030_00995"
"group_355","","hypothetical protein","12","12","1","1","1492","","","","461","461","461","NC_004829_01037","NC_017502_01038","NC_017503_00815","NC_018406_00967","NC_018407_00944","NC_018408_00984","NC_018409_00959","NC_018410_00917","NC_018411_00939","NC_018412_00974","NC_018413_00928","NC_023030_01005"
"group_356","","hypothetical protein","12","12","1","1","1494","","","","143","143","143","NC_004829_01039","NC_017502_01040","NC_017503_00813","NC_018406_00969","NC_018407_00946","NC_018408_00986","NC_018409_00961","NC_018410_00919","NC_018411_00941","NC_018412_00976","NC_018413_00930","NC_023030_01007"
"group_361","","hypothetical protein","12","12","1","1","1586","","","","1394","1394","1394","NC_004829_01094","NC_017502_01095","NC_017503_00753","NC_018406_01023","NC_018407_01000","NC_018408_01040","NC_018409_01015","NC_018410_00973","NC_018411_00995","NC_018412_01030","NC_018413_00984","NC_023030_01068"
"rny","","Ribonuclease Y","12","12","1","1","1589","","","","881","905","887","NC_004829_01097","NC_017502_01098","NC_017503_00750","NC_018406_01026","NC_018407_01003","NC_018408_01043","NC_018409_01018","NC_018410_00976","NC_018411_00998","NC_018412_01033","NC_018413_00987","NC_023030_01071"
"lplJ","","Lipoate-protein ligase LplJ","12","12","1","1","1301","","","","191","995","794","NC_004829_01113","NC_017502_01114","NC_017503_00734","NC_018406_01035","NC_018407_01012","NC_018408_01052","NC_018409_01027","NC_018410_00985","NC_018411_01007","NC_018412_01042","NC_018413_00996","NC_023030_01083"
"ackA_1","","Acetate kinase","12","12","1","1","1287","","","","503","572","508","NC_004829_01127","NC_017502_01128","NC_017503_00720","NC_018406_01048","NC_018407_01025","NC_018408_01065","NC_018409_01040","NC_018410_00998","NC_018411_01020","NC_018412_01055","NC_018413_01009","NC_023030_01096"
"group_366","","hypothetical protein","12","12","1","1","1280","","","","254","266","255","NC_004829_01134","NC_017502_01135","NC_017503_00713","NC_018406_01055","NC_018407_01032","NC_018408_01072","NC_018409_01047","NC_018410_01005","NC_018411_01027","NC_018412_01062","NC_018413_01016","NC_023030_01103"
"group_368","","hypothetical protein","12","12","1","1","1275","","","","137","476","447","NC_004829_01139","NC_017502_01140","NC_017503_00708","NC_018406_01060","NC_018407_01037","NC_018408_01077","NC_018409_01052","NC_018410_01010","NC_018411_01032","NC_018412_01067","NC_018413_01021","NC_023030_01110"
"group_369","","putative HIT-like protein","12","12","1","1","1241","","","","410","410","410","NC_004829_01174","NC_017502_01175","NC_017503_00673","NC_018406_01093","NC_018407_01070","NC_018408_01110","NC_018409_01085","NC_018410_01043","NC_018411_01065","NC_018412_01100","NC_018413_01054","NC_023030_01145"
"group_370","","hypothetical protein","12","12","1","1","2168","","","","539","539","539","NC_004829_01213","NC_017502_01215","NC_017503_00635","NC_018406_01132","NC_018407_01109","NC_018408_01158","NC_018409_01124","NC_018410_01083","NC_018411_01104","NC_018412_01139","NC_018413_01093","NC_023030_01185"
"group_371","","hypothetical protein","12","12","1","1","2172","","","","1361","2300","1517","NC_004829_01217","NC_017502_01219","NC_017503_00631","NC_018406_01136","NC_018407_01113","NC_018408_01162","NC_018409_01128","NC_018410_01087","NC_018411_01108","NC_018412_01143","NC_018413_01097","NC_023030_01189"
"group_372","","hypothetical protein","12","12","1","1","2174","","","","248","299","290","NC_004829_01220","NC_017502_01222","NC_017503_00630","NC_018406_01138","NC_018407_01115","NC_018408_01165","NC_018409_01130","NC_018410_01089","NC_018411_01110","NC_018412_01146","NC_018413_01099","NC_023030_01190"
"group_373","","hypothetical protein","12","12","1","1","2179","","","","182","182","182","NC_004829_01226","NC_017502_01228","NC_017503_00624","NC_018406_01143","NC_018407_01120","NC_018408_01170","NC_018409_01136","NC_018410_01094","NC_018411_01115","NC_018412_01151","NC_018413_01104","NC_023030_01195"
"group_374","","hypothetical protein","12","12","1","1","2180","","","","134","134","134","NC_004829_01227","NC_017502_01229","NC_017503_00623","NC_018406_01144","NC_018407_01121","NC_018408_01171","NC_018409_01137","NC_018410_01095","NC_018411_01116","NC_018412_01152","NC_018413_01105","NC_023030_01196"
"group_375","","hypothetical protein","12","12","1","1","2189","","","","230","230","230","NC_004829_01235","NC_017502_01237","NC_017503_00616","NC_018406_01154","NC_018407_01131","NC_018408_01181","NC_018409_01147","NC_018410_01105","NC_018411_01126","NC_018412_01162","NC_018413_01115","NC_023030_01204"
"group_376","","hypothetical protein","12","12","1","1","2191","","","","488","488","488","NC_004829_01237","NC_017502_01239","NC_017503_00614","NC_018406_01156","NC_018407_01133","NC_018408_01183","NC_018409_01149","NC_018410_01107","NC_018411_01128","NC_018412_01164","NC_018413_01117","NC_023030_01206"
"group_377","","hypothetical protein","12","12","1","1","2201","","","","224","224","224","NC_004829_01247","NC_017502_01248","NC_017503_00605","NC_018406_01165","NC_018407_01142","NC_018408_01192","NC_018409_01158","NC_018410_01116","NC_018411_01137","NC_018412_01173","NC_018413_01126","NC_023030_01215"
"group_378","","hypothetical protein","12","12","1","1","2206","","","","578","605","584","NC_004829_01249","NC_017502_01250","NC_017503_00603","NC_018406_01167","NC_018407_01144","NC_018408_01194","NC_018409_01160","NC_018410_01118","NC_018411_01139","NC_018412_01175","NC_018413_01128","NC_023030_01217"
"group_383","","hypothetical protein","12","12","1","1","1943","","","","554","554","554","NC_004829_01265","NC_017502_01266","NC_017503_00550","NC_018406_01183","NC_018407_01160","NC_018408_01210","NC_018409_01176","NC_018410_01134","NC_018411_01155","NC_018412_01191","NC_018413_01144","NC_023030_01234"
"group_385","","hypothetical protein","12","12","1","1","1950","","","","212","212","212","NC_004829_01272","NC_017502_01273","NC_017503_00543","NC_018406_01190","NC_018407_01167","NC_018408_01217","NC_018409_01183","NC_018410_01141","NC_018411_01162","NC_018412_01198","NC_018413_01151","NC_023030_01241"
"hmw1","","Cytadherence high molecular weight protein 1","12","12","1","1","1961","","","","401","401","401","NC_004829_01282","NC_017502_01283","NC_017503_00533","NC_018406_01200","NC_018407_01177","NC_018408_01227","NC_018409_01193","NC_018410_01151","NC_018411_01172","NC_018412_01208","NC_018413_01161","NC_023030_01251"
"group_390","","hypothetical protein","12","12","1","1","1969","","","","692","707","705","NC_004829_01288","NC_017502_01289","NC_017503_00527","NC_018406_01206","NC_018407_01183","NC_018408_01233","NC_018409_01199","NC_018410_01157","NC_018411_01179","NC_018412_01214","NC_018413_01167","NC_023030_01258"
"group_391","","hypothetical protein","12","12","1","1","1972","","","","845","845","845","NC_004829_01291","NC_017502_01292","NC_017503_00524","NC_018406_01209","NC_018407_01186","NC_018408_01236","NC_018409_01202","NC_018410_01160","NC_018411_01182","NC_018412_01217","NC_018413_01170","NC_023030_01261"
"group_392","","hypothetical protein","12","12","1","1","1974","","","","653","659","653","NC_004829_01293","NC_017502_01294","NC_017503_00522","NC_018406_01211","NC_018407_01188","NC_018408_01238","NC_018409_01204","NC_018410_01162","NC_018411_01184","NC_018412_01219","NC_018413_01172","NC_023030_01263"
"group_393","","hypothetical protein","12","12","1","1","2003","","","","881","881","881","NC_004829_01314","NC_017502_01315","NC_017503_00500","NC_018406_01234","NC_018407_01211","NC_018408_01261","NC_018409_01227","NC_018410_01185","NC_018411_01207","NC_018412_01242","NC_018413_01195","NC_023030_01286"
"group_394","","hypothetical protein","12","12","1","1","2013","","","","581","761","746","NC_004829_01322","NC_017502_01323","NC_017503_00492","NC_018406_01244","NC_018407_01221","NC_018408_01271","NC_018409_01237","NC_018410_01195","NC_018411_01217","NC_018412_01252","NC_018413_01205","NC_023030_01297"
"group_397","","hypothetical protein","12","12","1","1","2050","","","","227","227","227","NC_004829_01361","NC_017502_01362","NC_017503_00454","NC_018406_01281","NC_018407_01258","NC_018408_01308","NC_018409_01274","NC_018410_01232","NC_018411_01254","NC_018412_01289","NC_018413_01242","NC_023030_01336"
"group_401","","hypothetical protein","12","12","1","1","388","","","","242","263","249","NC_004829_01425","NC_017502_01425","NC_017503_01361","NC_018406_01353","NC_018407_01330","NC_018408_01380","NC_018409_01346","NC_018410_01301","NC_018411_01323","NC_018412_01360","NC_018413_01303","NC_023030_01396"
"group_402","","hypothetical protein","12","12","1","1","379","","","","272","272","272","NC_004829_01434","NC_017502_01434","NC_017503_01370","NC_018406_01362","NC_018407_01339","NC_018408_01389","NC_018409_01355","NC_018410_01310","NC_018411_01332","NC_018412_01369","NC_018413_01312","NC_023030_01405"
"rpsP","","30S ribosomal protein S16","12","12","1","1","366","","","","149","149","149","NC_004829_01447","NC_017502_01447","NC_017503_01383","NC_018406_01375","NC_018407_01352","NC_018408_01402","NC_018409_01368","NC_018410_01323","NC_018411_01345","NC_018412_01382","NC_018413_01325","NC_023030_01418"
"topA_1","","hypothetical protein","12","12","1","1","359","","","","128","248","158","NC_004829_01456","NC_017502_01456","NC_017503_01392","NC_018406_01384","NC_018407_01361","NC_018408_01411","NC_018409_01377","NC_018410_01332","NC_018411_01354","NC_018412_01391","NC_018413_01334","NC_023030_01427"
"gmk","","Guanylate kinase","12","12","1","1","346","","","","587","587","587","NC_004829_01470","NC_017502_01470","NC_017503_01406","NC_018406_01398","NC_018407_01375","NC_018408_01425","NC_018409_01391","NC_018410_01346","NC_018411_01368","NC_018412_01405","NC_018413_01348","NC_023030_01441"
"group_406","","hypothetical protein","12","12","1","1","332","","","","476","488","478","NC_004829_01485","NC_017502_01485","NC_017503_01420","NC_018406_01412","NC_018407_01390","NC_018408_01439","NC_018409_01406","NC_018410_01361","NC_018411_01383","NC_018412_01420","NC_018413_01363","NC_023030_01455"
"group_409","","hypothetical protein","12","12","1","1","319","","","","143","332","293","NC_004829_01498","NC_017502_01498","NC_017503_01433","NC_018406_01424","NC_018407_01403","NC_018408_01451","NC_018409_01418","NC_018410_01373","NC_018411_01395","NC_018412_01432","NC_018413_01375","NC_023030_01468"
"group_410","","hypothetical protein","12","12","1","1","317","","","","182","182","182","NC_004829_01500","NC_017502_01500","NC_017503_01435","NC_018406_01426","NC_018407_01405","NC_018408_01453","NC_018409_01420","NC_018410_01375","NC_018411_01397","NC_018412_01434","NC_018413_01377","NC_023030_01470"
"cysS","","Cysteine--tRNA ligase","12","12","1","1","271","","","","533","533","533","NC_004829_01547","NC_017502_01548","NC_017503_01479","NC_018406_01470","NC_018407_01449","NC_018408_01497","NC_018409_01465","NC_018410_01419","NC_018411_01422","NC_018412_01478","NC_018413_01402","NC_023030_01515"
"group_416","","hypothetical protein","12","12","1","1","252","","","","998","1013","1001","NC_004829_01577","NC_017502_01578","NC_017503_01508","NC_018406_01486","NC_018407_01465","NC_018408_01513","NC_018409_01481","NC_018410_01435","NC_018411_01438","NC_018412_01494","NC_018413_01418","NC_023030_01545"
"group_418","","hypothetical protein","12","12","1","1","216","","","","554","563","557","NC_004829_01601","NC_017502_01603","NC_017503_01532","NC_018406_01509","NC_018407_01488","NC_018408_01536","NC_018409_01504","NC_018410_01458","NC_018411_01461","NC_018412_01517","NC_018413_01441","NC_023030_01571"
"ligA_3","","DNA ligase","12","12","1","1","203","","","","545","743","684","NC_004829_01610","NC_017502_01612","NC_017503_01542","NC_018406_01517","NC_018407_01496","NC_018408_01544","NC_018409_01512","NC_018410_01466","NC_018411_01469","NC_018412_01525","NC_018413_01449","NC_023030_01582"
"group_420","","hypothetical protein","12","12","1","1","194","","","","350","350","350","NC_004829_01620","NC_017502_01622","NC_017503_01552","NC_018406_01528","NC_018407_01507","NC_018408_01555","NC_018409_01523","NC_018410_01477","NC_018411_01480","NC_018412_01536","NC_018413_01460","NC_023030_01593"
"group_421","","hypothetical protein","12","12","1","1","189","","","","191","290","273","NC_004829_01626","NC_017502_01628","NC_017503_01557","NC_018406_01533","NC_018407_01512","NC_018408_01560","NC_018409_01528","NC_018410_01482","NC_018411_01485","NC_018412_01541","NC_018413_01465","NC_023030_01598"
"group_422","","hypothetical protein","12","12","1","1","184","","","","278","278","278","NC_004829_01630","NC_017502_01632","NC_017503_01562","NC_018406_01538","NC_018407_01517","NC_018408_01565","NC_018409_01533","NC_018410_01487","NC_018411_01490","NC_018412_01546","NC_018413_01470","NC_023030_01603"
"group_423","","hypothetical protein","12","12","1","1","168","","","","440","956","870","NC_004829_01651","NC_017502_01653","NC_017503_01583","NC_018406_01559","NC_018407_01538","NC_018408_01586","NC_018409_01554","NC_018410_01508","NC_018411_01511","NC_018412_01567","NC_018413_01491","NC_023030_01623"
"ycfH","","putative metal-dependent hydrolase YcfH","12","12","1","1","154","","","","737","800","794","NC_004829_01665","NC_017502_01667","NC_017503_01597","NC_018406_01573","NC_018407_01551","NC_018408_01599","NC_018409_01567","NC_018410_01521","NC_018411_01524","NC_018412_01580","NC_018413_01504","NC_023030_01636"
"group_432","","hypothetical protein","12","12","1","1","529","","","","1250","1253","1250","NC_004829_00616","NC_017502_00615","NC_017503_01210","NC_018406_00609","NC_018407_00587","NC_018408_00587","NC_018409_00592","NC_018410_00567","NC_018411_00574","NC_018412_00576","NC_018413_00571","NC_023030_00573"
"group_433","","hypothetical protein","12","12","1","1","255","","","","566","569","568","NC_004829_01575","NC_017502_01576","NC_017503_01506","NC_018406_01484","NC_018407_01463","NC_018408_01511","NC_018409_01479","NC_018410_01433","NC_018411_01436","NC_018412_01492","NC_018413_01416","NC_023030_01543"
"rpmH","","50S ribosomal protein L34","12","12","1","1","919","","","","149","149","149","NC_004829_00011","NC_017502_00011","NC_017503_00011","NC_018406_00011","NC_018407_00011","NC_018408_00011","NC_018409_00011","NC_018410_00011","NC_018411_00011","NC_018412_00011","NC_018413_00011","NC_023030_00010"
"rnpA","","hypothetical protein","12","12","1","1","920","","","","221","245","225","NC_004829_00012","NC_017502_00012","NC_017503_00012","NC_018406_00012","NC_018407_00012","NC_018408_00012","NC_018409_00012","NC_018410_00012","NC_018411_00012","NC_018412_00012","NC_018413_00012","NC_023030_00011"
"group_443","","hypothetical protein","12","12","1","1","924","","","","338","338","338","NC_004829_00017","NC_017502_00017","NC_017503_00017","NC_018406_00017","NC_018407_00017","NC_018408_00017","NC_018409_00017","NC_018410_00017","NC_018411_00017","NC_018412_00017","NC_018413_00017","NC_023030_00015"
"group_444","","hypothetical protein","12","12","1","1","925","","","","245","245","245","NC_004829_00018","NC_017502_00018","NC_017503_00018","NC_018406_00018","NC_018407_00018","NC_018408_00018","NC_018409_00018","NC_018410_00018","NC_018411_00018","NC_018412_00018","NC_018413_00018","NC_023030_00016"
"argS_1","","Arginine--tRNA ligase","12","12","1","1","926","","","","473","473","473","NC_004829_00019","NC_017502_00019","NC_017503_00019","NC_018406_00019","NC_018407_00019","NC_018408_00019","NC_018409_00019","NC_018410_00019","NC_018411_00019","NC_018412_00019","NC_018413_00019","NC_023030_00017"
"group_446","","hypothetical protein","12","12","1","1","927","","","","161","233","215","NC_004829_00020","NC_017502_00020","NC_017503_00020","NC_018406_00020","NC_018407_00020","NC_018408_00020","NC_018409_00020","NC_018410_00020","NC_018411_00020","NC_018412_00020","NC_018413_00020","NC_023030_00018"
"argS_3","","Arginine--tRNA ligase","12","12","1","1","929","","","","350","350","350","NC_004829_00022","NC_017502_00022","NC_017503_00022","NC_018406_00022","NC_018407_00022","NC_018408_00022","NC_018409_00022","NC_018410_00022","NC_018411_00022","NC_018412_00022","NC_018413_00022","NC_023030_00020"
"group_448","","hypothetical protein","12","12","1","1","931","","","","284","284","284","NC_004829_00025","NC_017502_00025","NC_017503_00025","NC_018406_00025","NC_018407_00025","NC_018408_00025","NC_018409_00025","NC_018410_00025","NC_018411_00025","NC_018412_00025","NC_018413_00025","NC_023030_00023"
"glpF","","putative glycerol uptake facilitator protein","12","12","1","1","933","","","","341","341","341","NC_004829_00028","NC_017502_00028","NC_017503_00028","NC_018406_00028","NC_018407_00028","NC_018408_00028","NC_018409_00028","NC_018410_00028","NC_018411_00028","NC_018412_00028","NC_018413_00028","NC_023030_00026"
"glpK_4","","Glycerol kinase","12","12","1","1","936","","","","134","134","134","NC_004829_00033","NC_017502_00033","NC_017503_00033","NC_018406_00033","NC_018407_00033","NC_018408_00033","NC_018409_00033","NC_018410_00033","NC_018411_00033","NC_018412_00033","NC_018413_00033","NC_023030_00031"
"dadA1","","D-amino acid dehydrogenase 1","12","12","1","1","939","","","","266","266","266","NC_004829_00035","NC_017502_00035","NC_017503_00035","NC_018406_00035","NC_018407_00035","NC_018408_00035","NC_018409_00035","NC_018410_00035","NC_018411_00035","NC_018412_00035","NC_018413_00035","NC_023030_00034"
"group_454","","hypothetical protein","12","12","1","1","947","","","","563","563","563","NC_004829_00041","NC_017502_00041","NC_017503_00041","NC_018406_00041","NC_018407_00041","NC_018408_00041","NC_018409_00041","NC_018410_00041","NC_018411_00041","NC_018412_00041","NC_018413_00041","NC_023030_00040"
"group_455","","hypothetical protein","12","12","1","1","901","","","","572","572","572","NC_004829_00046","NC_017502_00046","NC_017503_00046","NC_018406_00046","NC_018407_00046","NC_018408_00046","NC_018409_00046","NC_018410_00046","NC_018411_00046","NC_018412_00046","NC_018413_00046","NC_023030_00049"
"group_456","","hypothetical protein","12","12","1","1","895","","","","128","128","128","NC_004829_00051","NC_017502_00051","NC_017503_00051","NC_018406_00053","NC_018407_00053","NC_018408_00053","NC_018409_00053","NC_018410_00053","NC_018411_00053","NC_018412_00053","NC_018413_00053","NC_023030_00054"
"ispF","","2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase","12","12","1","1","894","","","","383","467","460","NC_004829_00052","NC_017502_00052","NC_017503_00052","NC_018406_00054","NC_018407_00054","NC_018408_00054","NC_018409_00054","NC_018410_00054","NC_018411_00054","NC_018412_00054","NC_018413_00054","NC_023030_00055"
"group_458","","hypothetical protein","12","12","1","1","890","","","","827","890","837","NC_004829_00056","NC_017502_00056","NC_017503_00056","NC_018406_00058","NC_018407_00058","NC_018408_00058","NC_018409_00058","NC_018410_00058","NC_018411_00058","NC_018412_00058","NC_018413_00058","NC_023030_00059"
"group_459","","hypothetical protein","12","12","1","1","882","","","","212","212","212","NC_004829_00064","NC_017502_00064","NC_017503_00064","NC_018406_00066","NC_018407_00066","NC_018408_00066","NC_018409_00066","NC_018410_00066","NC_018411_00066","NC_018412_00066","NC_018413_00066","NC_023030_00067"
"group_460","","hypothetical protein","12","12","1","1","875","","","","293","293","293","NC_004829_00072","NC_017502_00072","NC_017503_00071","NC_018406_00073","NC_018407_00073","NC_018408_00073","NC_018409_00073","NC_018410_00073","NC_018411_00073","NC_018412_00073","NC_018413_00073","NC_023030_00075"
"group_461","","hypothetical protein","12","12","1","1","872","","","","161","161","161","NC_004829_00075","NC_017502_00075","NC_017503_00074","NC_018406_00077","NC_018407_00077","NC_018408_00077","NC_018409_00077","NC_018410_00077","NC_018411_00077","NC_018412_00077","NC_018413_00077","NC_023030_00079"
"group_462","","hypothetical protein","12","12","1","1","871","","","","122","122","122","NC_004829_00076","NC_017502_00076","NC_017503_00075","NC_018406_00078","NC_018407_00078","NC_018408_00078","NC_018409_00078","NC_018410_00078","NC_018411_00078","NC_018412_00078","NC_018413_00078","NC_023030_00080"
"nrnA_1","","Bifunctional oligoribonuclease and PAP phosphatase NrnA","12","12","1","1","870","","","","224","224","224","NC_004829_00078","NC_017502_00078","NC_017503_00077","NC_018406_00080","NC_018407_00080","NC_018408_00080","NC_018409_00080","NC_018410_00080","NC_018411_00080","NC_018412_00080","NC_018413_00080","NC_023030_00082"
"nrnA_2","","Bifunctional oligoribonuclease and PAP phosphatase NrnA","12","12","1","1","869","","","","359","461","376","NC_004829_00079","NC_017502_00079","NC_017503_00078","NC_018406_00081","NC_018407_00081","NC_018408_00081","NC_018409_00081","NC_018410_00081","NC_018411_00081","NC_018412_00081","NC_018413_00081","NC_023030_00083"
"uvrB_1","","UvrABC system protein B","12","12","1","1","868","","","","971","1010","1006","NC_004829_00081","NC_017502_00081","NC_017503_00080","NC_018406_00083","NC_018407_00083","NC_018408_00083","NC_018409_00083","NC_018410_00083","NC_018411_00083","NC_018412_00083","NC_018413_00083","NC_023030_00085"
"group_466","","hypothetical protein","12","12","1","1","866","","","","239","302","270","NC_004829_00083","NC_017502_00083","NC_017503_00082","NC_018406_00085","NC_018407_00085","NC_018408_00085","NC_018409_00085","NC_018410_00085","NC_018411_00085","NC_018412_00085","NC_018413_00085","NC_023030_00087"
"group_467","","hypothetical protein","12","12","1","1","865","","","","392","440","436","NC_004829_00084","NC_017502_00084","NC_017503_00083","NC_018406_00086","NC_018407_00086","NC_018408_00086","NC_018409_00086","NC_018410_00086","NC_018411_00086","NC_018412_00086","NC_018413_00086","NC_023030_00088"
"pstC","","hypothetical protein","12","12","1","1","864","","","","440","596","453","NC_004829_00086","NC_017502_00086","NC_017503_00085","NC_018406_00087","NC_018407_00087","NC_018408_00087","NC_018409_00087","NC_018410_00087","NC_018411_00087","NC_018412_00087","NC_018413_00087","NC_023030_00091"
"thyA_2","","Thymidylate synthase","12","12","1","1","849","","","","377","377","377","NC_004829_00100","NC_017502_00100","NC_017503_00098","NC_018406_00100","NC_018407_00100","NC_018408_00100","NC_018409_00100","NC_018410_00100","NC_018411_00100","NC_018412_00100","NC_018413_00100","NC_023030_00103"
"group_471","","hypothetical protein","12","12","1","1","847","","","","137","140","139","NC_004829_00102","NC_017502_00102","NC_017503_00100","NC_018406_00102","NC_018407_00102","NC_018408_00102","NC_018409_00102","NC_018410_00102","NC_018411_00102","NC_018412_00102","NC_018413_00102","NC_023030_00105"
"group_472","","hypothetical protein","12","12","1","1","844","","","","206","443","225","NC_004829_00105","NC_017502_00105","NC_017503_00103","NC_018406_00105","NC_018407_00105","NC_018408_00105","NC_018409_00105","NC_018410_00105","NC_018411_00105","NC_018412_00105","NC_018413_00105","NC_023030_00107"
"group_473","","hypothetical protein","12","12","1","1","842","","","","374","374","374","NC_004829_00107","NC_017502_00107","NC_017503_00105","NC_018406_00107","NC_018407_00108","NC_018408_00107","NC_018409_00107","NC_018410_00107","NC_018411_00107","NC_018412_00107","NC_018413_00107","NC_023030_00108"
"rplP","","50S ribosomal protein L16","12","12","1","1","833","","","","122","122","122","NC_004829_00117","NC_017502_00117","NC_017503_00115","NC_018406_00117","NC_018407_00118","NC_018408_00117","NC_018409_00117","NC_018410_00117","NC_018411_00117","NC_018412_00117","NC_018413_00117","NC_023030_00117"
"rpmC","","50S ribosomal protein L29","12","12","1","1","831","","","","461","461","461","NC_004829_00119","NC_017502_00119","NC_017503_00117","NC_018406_00119","NC_018407_00120","NC_018408_00119","NC_018409_00119","NC_018410_00119","NC_018411_00119","NC_018412_00119","NC_018413_00119","NC_023030_00120"
"rpsE","","30S ribosomal protein S5","12","12","1","1","821","","","","665","680","668","NC_004829_00131","NC_017502_00131","NC_017503_00129","NC_018406_00131","NC_018407_00132","NC_018408_00131","NC_018409_00131","NC_018410_00131","NC_018411_00131","NC_018412_00131","NC_018413_00131","NC_023030_00132"
"map_1","","Methionine aminopeptidase 1","12","12","1","1","815","","","","449","449","449","NC_004829_00137","NC_017502_00137","NC_017503_00135","NC_018406_00137","NC_018407_00138","NC_018408_00137","NC_018409_00137","NC_018410_00137","NC_018411_00137","NC_018412_00137","NC_018413_00137","NC_023030_00138"
"group_478","","hypothetical protein","12","12","1","1","810","","","","581","581","581","NC_004829_00143","NC_017502_00143","NC_017503_00142","NC_018406_00144","NC_018407_00145","NC_018408_00144","NC_018409_00144","NC_018410_00144","NC_018411_00144","NC_018412_00144","NC_018413_00144","NC_023030_00145"
"group_479","","hypothetical protein","12","12","1","1","809","","","","701","731","726","NC_004829_00144","NC_017502_00144","NC_017503_00143","NC_018406_00145","NC_018407_00146","NC_018408_00145","NC_018409_00145","NC_018410_00145","NC_018411_00145","NC_018412_00145","NC_018413_00145","NC_023030_00146"
"group_480","","hypothetical protein","12","12","1","1","807","","","","401","401","401","NC_004829_00146","NC_017502_00146","NC_017503_00144","NC_018406_00147","NC_018407_00148","NC_018408_00147","NC_018409_00147","NC_018410_00147","NC_018411_00147","NC_018412_00147","NC_018413_00147","NC_023030_00147"
"group_481","","hypothetical protein","12","12","1","1","804","","","","749","749","749","NC_004829_00149","NC_017502_00149","NC_017503_00148","NC_018406_00150","NC_018407_00151","NC_018408_00150","NC_018409_00150","NC_018410_00150","NC_018411_00150","NC_018412_00150","NC_018413_00150","NC_023030_00152"
"ptsI_1","","Phosphoenolpyruvate-protein phosphotransferase","12","12","1","1","797","","","","926","926","926","NC_004829_00155","NC_017502_00155","NC_017503_00153","NC_018406_00156","NC_018407_00157","NC_018408_00156","NC_018409_00156","NC_018410_00156","NC_018411_00156","NC_018412_00156","NC_018413_00156","NC_023030_00158"
"ptsI_3","","Phosphoenolpyruvate-protein phosphotransferase","12","12","1","1","795","","","","233","233","233","NC_004829_00157","NC_017502_00157","NC_017503_00155","NC_018406_00158","NC_018407_00159","NC_018408_00158","NC_018409_00158","NC_018410_00158","NC_018411_00158","NC_018412_00158","NC_018413_00158","NC_023030_00160"
"group_484","","hypothetical protein","12","12","1","1","786","","","","725","800","787","NC_004829_00168","NC_017502_00168","NC_017503_00166","NC_018406_00169","NC_018407_00170","NC_018408_00169","NC_018409_00169","NC_018410_00169","NC_018411_00169","NC_018412_00169","NC_018413_00169","NC_023030_00171"
"tsf_2","","Elongation factor Ts","12","12","1","1","782","","","","701","701","701","NC_004829_00173","NC_017502_00173","NC_017503_00171","NC_018406_00174","NC_018407_00175","NC_018408_00174","NC_018409_00174","NC_018410_00174","NC_018411_00174","NC_018412_00174","NC_018413_00174","NC_023030_00176"
"frr","","Ribosome-recycling factor","12","12","1","1","780","","","","389","443","425","NC_004829_00175","NC_017502_00175","NC_017503_00173","NC_018406_00176","NC_018407_00177","NC_018408_00176","NC_018409_00176","NC_018410_00176","NC_018411_00176","NC_018412_00176","NC_018413_00176","NC_023030_00178"
"dxr","","1-deoxy-D-xylulose 5-phosphate reductoisomerase","12","12","1","1","777","","","","743","743","743","NC_004829_00178","NC_017502_00178","NC_017503_00176","NC_018406_00179","NC_018407_00180","NC_018408_00179","NC_018409_00179","NC_018410_00179","NC_018411_00179","NC_018412_00179","NC_018413_00179","NC_023030_00181"
"group_488","","Putative zinc metalloprotease","12","12","1","1","776","","","","161","347","316","NC_004829_00179","NC_017502_00179","NC_017503_00177","NC_018406_00180","NC_018407_00181","NC_018408_00180","NC_018409_00180","NC_018410_00180","NC_018411_00180","NC_018412_00180","NC_018413_00180","NC_023030_00182"
"polC_1","","DNA polymerase III PolC-type","12","12","1","1","772","","","","785","785","785","NC_004829_00183","NC_017502_00183","NC_017503_00181","NC_018406_00184","NC_018407_00185","NC_018408_00184","NC_018409_00184","NC_018410_00184","NC_018411_00184","NC_018412_00184","NC_018413_00184","NC_023030_00186"
"polC_2","","DNA polymerase III PolC-type","12","12","1","1","771","","","","680","809","701","NC_004829_00184","NC_017502_00184","NC_017503_00182","NC_018406_00185","NC_018407_00186","NC_018408_00185","NC_018409_00185","NC_018410_00185","NC_018411_00185","NC_018412_00185","NC_018413_00185","NC_023030_00187"
"group_491","","hypothetical protein","12","12","1","1","763","","","","146","146","146","NC_004829_00192","NC_017502_00192","NC_017503_00190","NC_018406_00193","NC_018407_00194","NC_018408_00193","NC_018409_00193","NC_018410_00193","NC_018411_00193","NC_018412_00193","NC_018413_00193","NC_023030_00195"
"group_492","","hypothetical protein","12","12","1","1","759","","","","131","131","131","NC_004829_00196","NC_017502_00196","NC_017503_00194","NC_018406_00197","NC_018407_00198","NC_018408_00197","NC_018409_00197","NC_018410_00197","NC_018411_00197","NC_018412_00197","NC_018413_00197","NC_023030_00199"
"group_493","","hypothetical protein","12","12","1","1","755","","","","338","338","338","NC_004829_00199","NC_017502_00199","NC_017503_00196","NC_018406_00200","NC_018407_00201","NC_018408_00200","NC_018409_00200","NC_018410_00199","NC_018411_00200","NC_018412_00200","NC_018413_00199","NC_023030_00201"
"group_495","","hypothetical protein","12","12","1","1","737","","","","452","452","452","NC_004829_00215","NC_017502_00214","NC_017503_00206","NC_018406_00211","NC_018407_00212","NC_018408_00211","NC_018409_00211","NC_018410_00210","NC_018411_00212","NC_018412_00211","NC_018413_00210","NC_023030_00213"
"skfE","","SkfA peptide export ATP-binding protein SkfE","12","12","1","1","736","","","","284","284","284","NC_004829_00216","NC_017502_00215","NC_017503_00207","NC_018406_00212","NC_018407_00213","NC_018408_00212","NC_018409_00212","NC_018410_00211","NC_018411_00213","NC_018412_00212","NC_018413_00211","NC_023030_00214"
"group_497","","hypothetical protein","12","12","1","1","734","","","","386","386","386","NC_004829_00218","NC_017502_00217","NC_017503_00209","NC_018406_00214","NC_018407_00215","NC_018408_00214","NC_018409_00214","NC_018410_00213","NC_018411_00215","NC_018412_00214","NC_018413_00213","NC_023030_00216"
"group_499","","hypothetical protein","12","12","1","1","726","","","","893","926","923","NC_004829_00225","NC_017502_00224","NC_017503_00216","NC_018406_00221","NC_018407_00222","NC_018408_00221","NC_018409_00221","NC_018410_00220","NC_018411_00222","NC_018412_00221","NC_018413_00220","NC_023030_00223"
"nusA_1","","Transcription termination/antitermination protein NusA","12","12","1","1","705","","","","410","410","410","NC_004829_00240","NC_017502_00239","NC_017503_00230","NC_018406_00236","NC_018407_00237","NC_018408_00236","NC_018409_00237","NC_018410_00235","NC_018411_00237","NC_018412_00236","NC_018413_00235","NC_023030_00244"
"group_503","","hypothetical protein","12","12","1","1","959","","","","251","251","251","NC_004829_00256","NC_017502_00255","NC_017503_00248","NC_018406_00254","NC_018407_00255","NC_018408_00254","NC_018409_00255","NC_018410_00253","NC_018411_00254","NC_018412_00254","NC_018413_00252","NC_023030_00265"
"truB","","tRNA pseudouridine synthase B","12","12","1","1","960","","","","644","644","644","NC_004829_00257","NC_017502_00256","NC_017503_00249","NC_018406_00255","NC_018407_00256","NC_018408_00255","NC_018409_00256","NC_018410_00254","NC_018411_00255","NC_018412_00255","NC_018413_00253","NC_023030_00266"
"ribF","","Riboflavin biosynthesis protein RibF","12","12","1","1","961","","","","1112","1112","1112","NC_004829_00258","NC_017502_00257","NC_017503_00250","NC_018406_00256","NC_018407_00257","NC_018408_00256","NC_018409_00257","NC_018410_00255","NC_018411_00256","NC_018412_00256","NC_018413_00254","NC_023030_00267"
"cat1_1","","Succinyl-CoA:coenzyme A transferase","12","12","1","1","963","","","","1316","1316","1316","NC_004829_00260","NC_017502_00259","NC_017503_00252","NC_018406_00258","NC_018407_00259","NC_018408_00258","NC_018409_00259","NC_018410_00257","NC_018411_00258","NC_018412_00258","NC_018413_00256","NC_023030_00269"
"alaS_1","","Alanine--tRNA ligase","12","12","1","1","964","","","","122","158","152","NC_004829_00261","NC_017502_00260","NC_017503_00253","NC_018406_00259","NC_018407_00260","NC_018408_00259","NC_018409_00260","NC_018410_00258","NC_018411_00259","NC_018412_00259","NC_018413_00257","NC_023030_00270"
"alaS_3","","Alanine--tRNA ligase","12","12","1","1","966","","","","593","593","593","NC_004829_00263","NC_017502_00262","NC_017503_00255","NC_018406_00261","NC_018407_00262","NC_018408_00261","NC_018409_00262","NC_018410_00260","NC_018411_00261","NC_018412_00261","NC_018413_00259","NC_023030_00272"
"group_509","","hypothetical protein","12","12","1","1","968","","","","530","602","548","NC_004829_00265","NC_017502_00264","NC_017503_00257","NC_018406_00263","NC_018407_00264","NC_018408_00263","NC_018409_00264","NC_018410_00262","NC_018411_00263","NC_018412_00263","NC_018413_00261","NC_023030_00274"
"yrrK","","Putative pre-16S rRNA nuclease","12","12","1","1","969","","","","428","428","428","NC_004829_00266","NC_017502_00265","NC_017503_00258","NC_018406_00264","NC_018407_00265","NC_018408_00264","NC_018409_00265","NC_018410_00263","NC_018411_00264","NC_018412_00264","NC_018413_00262","NC_023030_00275"
"ydcP_1","","putative protease YdcP","12","12","1","1","971","","","","521","521","521","NC_004829_00268","NC_017502_00267","NC_017503_00260","NC_018406_00266","NC_018407_00267","NC_018408_00266","NC_018409_00267","NC_018410_00265","NC_018411_00266","NC_018412_00266","NC_018413_00264","NC_023030_00277"
"group_512","","hypothetical protein","12","12","1","1","975","","","","224","224","224","NC_004829_00273","NC_017502_00272","NC_017503_00265","NC_018406_00271","NC_018407_00272","NC_018408_00271","NC_018409_00272","NC_018410_00270","NC_018411_00271","NC_018412_00271","NC_018413_00269","NC_023030_00282"
"group_513","","hypothetical protein","12","12","1","1","977","","","","344","344","344","NC_004829_00275","NC_017502_00274","NC_017503_00267","NC_018406_00273","NC_018407_00274","NC_018408_00273","NC_018409_00274","NC_018410_00272","NC_018411_00273","NC_018412_00273","NC_018413_00271","NC_023030_00284"
"group_514","","hypothetical protein","12","12","1","1","981","","","","1271","1271","1271","NC_004829_00280","NC_017502_00279","NC_017503_00272","NC_018406_00278","NC_018407_00279","NC_018408_00278","NC_018409_00279","NC_018410_00277","NC_018411_00278","NC_018412_00278","NC_018413_00276","NC_023030_00289"
"group_515","","hypothetical protein","12","12","1","1","983","","","","488","488","488","NC_004829_00281","NC_017502_00280","NC_017503_00273","NC_018406_00279","NC_018407_00280","NC_018408_00279","NC_018409_00280","NC_018410_00278","NC_018411_00279","NC_018412_00279","NC_018413_00277","NC_023030_00290"
"group_516","","hypothetical protein","12","12","1","1","985","","","","455","455","455","NC_004829_00283","NC_017502_00282","NC_017503_00276","NC_018406_00281","NC_018407_00282","NC_018408_00281","NC_018409_00282","NC_018410_00280","NC_018411_00281","NC_018412_00281","NC_018413_00279","NC_023030_00292"
"group_517","","putative transcriptional regulatory protein","12","12","1","1","986","","","","413","452","419","NC_004829_00284","NC_017502_00283","NC_017503_00277","NC_018406_00282","NC_018407_00283","NC_018408_00282","NC_018409_00283","NC_018410_00281","NC_018411_00282","NC_018412_00282","NC_018413_00280","NC_023030_00293"
"group_518","","hypothetical protein","12","12","1","1","988","","","","218","218","218","NC_004829_00292","NC_017502_00291","NC_017503_00285","NC_018406_00290","NC_018407_00291","NC_018408_00290","NC_018409_00291","NC_018410_00289","NC_018411_00290","NC_018412_00290","NC_018413_00288","NC_023030_00301"
"glcB","","PTS system glucoside-specific EIICBA component","12","12","1","1","989","","","","281","281","281","NC_004829_00293","NC_017502_00292","NC_017503_00286","NC_018406_00291","NC_018407_00292","NC_018408_00291","NC_018409_00292","NC_018410_00290","NC_018411_00291","NC_018412_00291","NC_018413_00289","NC_023030_00302"
"ptsG_2","","PTS system glucose-specific EIICBA component","12","12","1","1","990","","","","977","1025","985","NC_004829_00294","NC_017502_00293","NC_017503_00287","NC_018406_00292","NC_018407_00293","NC_018408_00292","NC_018409_00293","NC_018410_00291","NC_018411_00292","NC_018412_00292","NC_018413_00290","NC_023030_00303"
"group_521","","hypothetical protein","12","12","1","1","991","","","","200","293","215","NC_004829_00295","NC_017502_00294","NC_017503_00288","NC_018406_00293","NC_018407_00294","NC_018408_00293","NC_018409_00294","NC_018410_00292","NC_018411_00293","NC_018412_00293","NC_018413_00291","NC_023030_00304"
"prmC","","hypothetical protein","12","12","1","1","997","","","","362","713","479","NC_004829_00304","NC_017502_00303","NC_017503_00296","NC_018406_00302","NC_018407_00303","NC_018408_00302","NC_018409_00303","NC_018410_00301","NC_018411_00302","NC_018412_00302","NC_018413_00300","NC_023030_00312"
"group_523","","hypothetical protein","12","12","1","1","998","","","","233","233","233","NC_004829_00305","NC_017502_00304","NC_017503_00297","NC_018406_00303","NC_018407_00304","NC_018408_00303","NC_018409_00304","NC_018410_00302","NC_018411_00303","NC_018412_00303","NC_018413_00301","NC_023030_00313"
"group_524","","hypothetical protein","12","12","1","1","1001","","","","143","143","143","NC_004829_00308","NC_017502_00307","NC_017503_00300","NC_018406_00307","NC_018407_00308","NC_018408_00307","NC_018409_00308","NC_018410_00306","NC_018411_00307","NC_018412_00307","NC_018413_00305","NC_023030_00316"
"group_525","","DNA-binding protein HRL53","12","12","1","1","1003","","","","356","371","368","NC_004829_00310","NC_017502_00309","NC_017503_00302","NC_018406_00309","NC_018407_00310","NC_018408_00309","NC_018409_00310","NC_018410_00308","NC_018411_00309","NC_018412_00309","NC_018413_00307","NC_023030_00318"
"group_526","","hypothetical protein","12","12","1","1","1010","","","","728","815","807","NC_004829_00318","NC_017502_00316","NC_017503_00310","NC_018406_00317","NC_018407_00318","NC_018408_00317","NC_018409_00318","NC_018410_00316","NC_018411_00317","NC_018412_00317","NC_018413_00315","NC_023030_00326"
"der_2","","GTPase Der","12","12","1","1","1095","","","","464","464","464","NC_004829_00340","NC_017502_00338","NC_017503_00332","NC_018406_00382","NC_018407_00361","NC_018408_00360","NC_018409_00361","NC_018410_00348","NC_018411_00349","NC_018412_00349","NC_018413_00347","NC_023030_00347"
"group_529","","hypothetical protein","12","12","1","1","1108","","","","377","377","377","NC_004829_00368","NC_017502_00366","NC_017503_00355","NC_018406_00405","NC_018407_00384","NC_018408_00383","NC_018409_00384","NC_018410_00371","NC_018411_00372","NC_018412_00372","NC_018413_00370","NC_023030_00370"
"group_530","","hypothetical protein","12","12","1","1","1109","","","","173","227","213","NC_004829_00369","NC_017502_00367","NC_017503_00357","NC_018406_00406","NC_018407_00385","NC_018408_00384","NC_018409_00385","NC_018410_00372","NC_018411_00373","NC_018412_00373","NC_018413_00371","NC_023030_00371"
"miaA_2","","tRNA dimethylallyltransferase","12","12","1","1","1112","","","","341","341","341","NC_004829_00372","NC_017502_00370","NC_017503_00360","NC_018406_00409","NC_018407_00388","NC_018408_00387","NC_018409_00388","NC_018410_00375","NC_018411_00376","NC_018412_00376","NC_018413_00374","NC_023030_00374"
"hemN","","Oxygen-independent coproporphyrinogen-III oxidase-like protein","12","12","1","1","1113","","","","560","692","681","NC_004829_00373","NC_017502_00371","NC_017503_00361","NC_018406_00410","NC_018407_00389","NC_018408_00388","NC_018409_00389","NC_018410_00376","NC_018411_00377","NC_018412_00377","NC_018413_00375","NC_023030_00375"
"smc_2","","Chromosome partition protein Smc","12","12","1","1","1116","","","","428","908","856","NC_004829_00376","NC_017502_00374","NC_017503_00364","NC_018406_00413","NC_018407_00392","NC_018408_00391","NC_018409_00392","NC_018410_00379","NC_018411_00380","NC_018412_00380","NC_018413_00378","NC_023030_00378"
"smc_3","","Chromosome partition protein Smc","12","12","1","1","1117","","","","809","893","865","NC_004829_00377","NC_017502_00375","NC_017503_00365","NC_018406_00414","NC_018407_00393","NC_018408_00392","NC_018409_00393","NC_018410_00380","NC_018411_00381","NC_018412_00381","NC_018413_00379","NC_023030_00379"
"ftsY_1","","Signal recognition particle receptor FtsY","12","12","1","1","1119","","","","557","557","557","NC_004829_00379","NC_017502_00377","NC_017503_00367","NC_018406_00416","NC_018407_00395","NC_018408_00394","NC_018409_00395","NC_018410_00382","NC_018411_00383","NC_018412_00383","NC_018413_00381","NC_023030_00381"
"group_536","","hypothetical protein","12","12","1","1","1123","","","","236","236","236","NC_004829_00383","NC_017502_00381","NC_017503_00371","NC_018406_00420","NC_018407_00399","NC_018408_00398","NC_018409_00399","NC_018410_00386","NC_018411_00387","NC_018412_00387","NC_018413_00385","NC_023030_00385"
"thrS_3","","Threonine--tRNA ligase","12","12","1","1","1126","","","","380","380","380","NC_004829_00386","NC_017502_00384","NC_017503_00374","NC_018406_00423","NC_018407_00402","NC_018408_00401","NC_018409_00402","NC_018410_00389","NC_018411_00390","NC_018412_00390","NC_018413_00388","NC_023030_00388"
"group_538","","hypothetical protein","12","12","1","1","1131","","","","236","236","236","NC_004829_00391","NC_017502_00389","NC_017503_00378","NC_018406_00428","NC_018407_00407","NC_018408_00406","NC_018409_00407","NC_018410_00394","NC_018411_00395","NC_018412_00395","NC_018413_00393","NC_023030_00392"
"mgpA","","Adhesin P1","12","12","1","1","1143","","","","725","848","735","NC_004829_00401","NC_017502_00399","NC_017503_00386","NC_018406_00437","NC_018407_00416","NC_018408_00416","NC_018409_00416","NC_018410_00403","NC_018411_00404","NC_018412_00405","NC_018413_00402","NC_023030_00400"
"group_542","","hypothetical protein","12","12","1","1","1154","","","","149","236","228","NC_004829_00407","NC_017502_00405","NC_017503_00394","NC_018406_00443","NC_018407_00422","NC_018408_00422","NC_018409_00422","NC_018410_00409","NC_018411_00410","NC_018412_00411","NC_018413_00408","NC_023030_00406"
"group_543","","Mgp-operon protein 3","12","12","1","1","1155","","","","350","395","364","NC_004829_00408","NC_017502_00406","NC_017503_00395","NC_018406_00444","NC_018407_00423","NC_018408_00423","NC_018409_00423","NC_018410_00410","NC_018411_00411","NC_018412_00412","NC_018413_00409","NC_023030_00407"
"group_544","","hypothetical protein","12","12","1","1","1163","","","","296","296","296","NC_004829_00415","NC_017502_00413","NC_017503_00401","NC_018406_00450","NC_018407_00429","NC_018408_00429","NC_018409_00429","NC_018410_00416","NC_018411_00417","NC_018412_00418","NC_018413_00415","NC_023030_00413"
"hisS_3","","Histidine--tRNA ligase","12","12","1","1","1167","","","","647","677","649","NC_004829_00419","NC_017502_00417","NC_017503_00405","NC_018406_00454","NC_018407_00433","NC_018408_00433","NC_018409_00433","NC_018410_00420","NC_018411_00421","NC_018412_00422","NC_018413_00419","NC_023030_00417"
"aspS1_1","","Aspartate--tRNA(Asp) ligase","12","12","1","1","1168","","","","1145","1145","1145","NC_004829_00421","NC_017502_00419","NC_017503_00407","NC_018406_00456","NC_018407_00435","NC_018408_00435","NC_018409_00435","NC_018410_00422","NC_018411_00423","NC_018412_00424","NC_018413_00421","NC_023030_00419"
"aspS1_2","","Aspartate--tRNA(Asp) ligase","12","12","1","1","1169","","","","416","416","416","NC_004829_00422","NC_017502_00420","NC_017503_00408","NC_018406_00457","NC_018407_00436","NC_018408_00436","NC_018409_00436","NC_018410_00423","NC_018411_00424","NC_018412_00425","NC_018413_00422","NC_023030_00420"
"relA_1","","Bifunctional (p)ppGpp synthase/hydrolase RelA","12","12","1","1","1170","","","","473","473","473","NC_004829_00424","NC_017502_00422","NC_017503_00410","NC_018406_00459","NC_018407_00438","NC_018408_00438","NC_018409_00438","NC_018410_00425","NC_018411_00426","NC_018412_00427","NC_018413_00424","NC_023030_00422"
"pyrG_2","","CTP synthase","12","12","1","1","1174","","","","440","440","440","NC_004829_00428","NC_017502_00426","NC_017503_00414","NC_018406_00463","NC_018407_00442","NC_018408_00442","NC_018409_00442","NC_018410_00429","NC_018411_00430","NC_018412_00431","NC_018413_00428","NC_023030_00427"
"group_550","","hypothetical protein","12","12","1","1","1177","","","","575","674","665","NC_004829_00431","NC_017502_00429","NC_017503_00417","NC_018406_00466","NC_018407_00445","NC_018408_00445","NC_018409_00445","NC_018410_00432","NC_018411_00433","NC_018412_00434","NC_018413_00431","NC_023030_00430"
"group_551","","hypothetical protein","12","12","1","1","1185","","","","185","263","211","NC_004829_00444","NC_017502_00442","NC_017503_00429","NC_018406_00479","NC_018407_00458","NC_018408_00458","NC_018409_00458","NC_018410_00445","NC_018411_00446","NC_018412_00447","NC_018413_00444","NC_023030_00443"
"dut","","Deoxyuridine 5'-triphosphate nucleotidohydrolase","12","12","1","1","622","","","","443","443","443","NC_004829_00524","NC_017502_00523","NC_017503_01300","NC_018406_00518","NC_018407_00496","NC_018408_00496","NC_018409_00501","NC_018410_00476","NC_018411_00483","NC_018412_00485","NC_018413_00480","NC_023030_00482"
"group_567","","hypothetical protein","12","12","1","1","621","","","","575","575","575","NC_004829_00525","NC_017502_00524","NC_017503_01299","NC_018406_00519","NC_018407_00497","NC_018408_00497","NC_018409_00502","NC_018410_00477","NC_018411_00484","NC_018412_00486","NC_018413_00481","NC_023030_00483"
"rluD","","Ribosomal large subunit pseudouridine synthase D","12","12","1","1","620","","","","935","935","935","NC_004829_00526","NC_017502_00525","NC_017503_01298","NC_018406_00520","NC_018407_00498","NC_018408_00498","NC_018409_00503","NC_018410_00478","NC_018411_00485","NC_018412_00487","NC_018413_00482","NC_023030_00484"
"group_569","","hypothetical protein","12","12","1","1","619","","","","230","230","230","NC_004829_00527","NC_017502_00526","NC_017503_01297","NC_018406_00521","NC_018407_00499","NC_018408_00499","NC_018409_00504","NC_018410_00479","NC_018411_00486","NC_018412_00488","NC_018413_00483","NC_023030_00485"
"xylF","","2-hydroxymuconate semialdehyde hydrolase","12","12","1","1","613","","","","551","551","551","NC_004829_00532","NC_017502_00531","NC_017503_01294","NC_018406_00526","NC_018407_00504","NC_018408_00504","NC_018409_00509","NC_018410_00484","NC_018411_00491","NC_018412_00493","NC_018413_00488","NC_023030_00488"
"group_571","","hypothetical protein","12","12","1","1","601","","","","674","674","674","NC_004829_00543","NC_017502_00542","NC_017503_01283","NC_018406_00538","NC_018407_00516","NC_018408_00516","NC_018409_00521","NC_018410_00496","NC_018411_00503","NC_018412_00505","NC_018413_00500","NC_023030_00499"
"group_572","","hypothetical protein","12","12","1","1","596","","","","587","587","587","NC_004829_00548","NC_017502_00547","NC_017503_01278","NC_018406_00543","NC_018407_00521","NC_018408_00521","NC_018409_00526","NC_018410_00501","NC_018411_00508","NC_018412_00510","NC_018413_00505","NC_023030_00504"
"group_573","","hypothetical protein","12","12","1","1","593","","","","257","257","257","NC_004829_00550","NC_017502_00549","NC_017503_01276","NC_018406_00545","NC_018407_00523","NC_018408_00523","NC_018409_00528","NC_018410_00503","NC_018411_00510","NC_018412_00512","NC_018413_00507","NC_023030_00506"
"group_574","","hypothetical protein","12","12","1","1","591","","","","455","455","455","NC_004829_00552","NC_017502_00551","NC_017503_01274","NC_018406_00547","NC_018407_00525","NC_018408_00525","NC_018409_00530","NC_018410_00505","NC_018411_00512","NC_018412_00514","NC_018413_00509","NC_023030_00508"
"group_576","","hypothetical protein","12","12","1","1","582","","","","632","656","652","NC_004829_00560","NC_017502_00559","NC_017503_01266","NC_018406_00554","NC_018407_00532","NC_018408_00532","NC_018409_00537","NC_018410_00512","NC_018411_00519","NC_018412_00521","NC_018413_00516","NC_023030_00516"
"proS","","Proline--tRNA ligase","12","12","1","1","580","","","","776","776","776","NC_004829_00561","NC_017502_00560","NC_017503_01263","NC_018406_00556","NC_018407_00534","NC_018408_00534","NC_018409_00539","NC_018410_00514","NC_018411_00521","NC_018412_00523","NC_018413_00518","NC_023030_00519"
"group_578","","hypothetical protein","12","12","1","1","579","","","","326","416","333","NC_004829_00562","NC_017502_00561","NC_017503_01262","NC_018406_00557","NC_018407_00535","NC_018408_00535","NC_018409_00540","NC_018410_00515","NC_018411_00522","NC_018412_00524","NC_018413_00519","NC_023030_00520"
"group_579","","hypothetical protein","12","12","1","1","577","","","","383","500","422","NC_004829_00564","NC_017502_00563","NC_017503_01260","NC_018406_00559","NC_018407_00537","NC_018408_00537","NC_018409_00542","NC_018410_00517","NC_018411_00524","NC_018412_00526","NC_018413_00521","NC_023030_00522"
"pheT_1","","Phenylalanine--tRNA ligase beta subunit","12","12","1","1","570","","","","635","635","635","NC_004829_00572","NC_017502_00571","NC_017503_01252","NC_018406_00568","NC_018407_00546","NC_018408_00546","NC_018409_00551","NC_018410_00526","NC_018411_00533","NC_018412_00535","NC_018413_00530","NC_023030_00531"
"group_581","","hypothetical protein","12","12","1","1","569","","","","245","263","251","NC_004829_00573","NC_017502_00572","NC_017503_01251","NC_018406_00569","NC_018407_00547","NC_018408_00547","NC_018409_00552","NC_018410_00527","NC_018411_00534","NC_018412_00536","NC_018413_00531","NC_023030_00532"
"group_582","","hypothetical protein","12","12","1","1","567","","","","308","308","308","NC_004829_00575","NC_017502_00574","NC_017503_01249","NC_018406_00571","NC_018407_00549","NC_018408_00549","NC_018409_00554","NC_018410_00529","NC_018411_00536","NC_018412_00538","NC_018413_00533","NC_023030_00534"
"group_583","","hypothetical protein","12","12","1","1","566","","","","728","728","728","NC_004829_00576","NC_017502_00575","NC_017503_01248","NC_018406_00572","NC_018407_00550","NC_018408_00550","NC_018409_00555","NC_018410_00530","NC_018411_00537","NC_018412_00539","NC_018413_00534","NC_023030_00535"
"group_584","","hypothetical protein","12","12","1","1","565","","","","338","338","338","NC_004829_00580","NC_017502_00579","NC_017503_01244","NC_018406_00576","NC_018407_00554","NC_018408_00554","NC_018409_00559","NC_018410_00534","NC_018411_00541","NC_018412_00543","NC_018413_00538","NC_023030_00539"
"group_585","","hypothetical protein","12","12","1","1","564","","","","221","221","221","NC_004829_00581","NC_017502_00580","NC_017503_01243","NC_018406_00577","NC_018407_00555","NC_018408_00555","NC_018409_00560","NC_018410_00535","NC_018411_00542","NC_018412_00544","NC_018413_00539","NC_023030_00540"
"group_586","","hypothetical protein","12","12","1","1","563","","","","293","299","293","NC_004829_00582","NC_017502_00581","NC_017503_01242","NC_018406_00578","NC_018407_00556","NC_018408_00556","NC_018409_00561","NC_018410_00536","NC_018411_00543","NC_018412_00545","NC_018413_00540","NC_023030_00541"
"polA","","DNA polymerase I, thermostable","12","12","1","1","555","","","","866","866","866","NC_004829_00589","NC_017502_00588","NC_017503_01235","NC_018406_00585","NC_018407_00563","NC_018408_00563","NC_018409_00568","NC_018410_00543","NC_018411_00550","NC_018412_00552","NC_018413_00547","NC_023030_00548"
"coaE","","Dephospho-CoA kinase","12","12","1","1","553","","","","602","602","602","NC_004829_00592","NC_017502_00591","NC_017503_01233","NC_018406_00587","NC_018407_00565","NC_018408_00565","NC_018409_00570","NC_018410_00545","NC_018411_00552","NC_018412_00554","NC_018413_00549","NC_023030_00551"
"yloB_1","","Calcium-transporting ATPase","12","12","1","1","546","","","","206","206","206","NC_004829_00600","NC_017502_00599","NC_017503_01226","NC_018406_00593","NC_018407_00571","NC_018408_00571","NC_018409_00576","NC_018410_00551","NC_018411_00558","NC_018412_00560","NC_018413_00555","NC_023030_00557"
"group_591","","hypothetical protein","12","12","1","1","541","","","","188","188","188","NC_004829_00605","NC_017502_00604","NC_017503_01221","NC_018406_00598","NC_018407_00576","NC_018408_00576","NC_018409_00581","NC_018410_00556","NC_018411_00563","NC_018412_00565","NC_018413_00560","NC_023030_00562"
"asnS_1","","Asparagine--tRNA ligase","12","12","1","1","538","","","","695","695","695","NC_004829_00607","NC_017502_00606","NC_017503_01219","NC_018406_00600","NC_018407_00578","NC_018408_00578","NC_018409_00583","NC_018410_00558","NC_018411_00565","NC_018412_00567","NC_018413_00562","NC_023030_00564"
"group_594","","hypothetical protein","12","12","1","1","535","","","","158","158","158","NC_004829_00611","NC_017502_00610","NC_017503_01215","NC_018406_00604","NC_018407_00582","NC_018408_00582","NC_018409_00587","NC_018410_00562","NC_018411_00569","NC_018412_00571","NC_018413_00566","NC_023030_00568"
"group_596","","hypothetical protein","12","12","1","1","532","","","","251","251","251","NC_004829_00614","NC_017502_00613","NC_017503_01212","NC_018406_00607","NC_018407_00585","NC_018408_00585","NC_018409_00590","NC_018410_00565","NC_018411_00572","NC_018412_00574","NC_018413_00569","NC_023030_00571"
"group_598","","hypothetical protein","12","12","1","1","525","","","","329","329","329","NC_004829_00620","NC_017502_00619","NC_017503_01206","NC_018406_00612","NC_018407_00590","NC_018408_00591","NC_018409_00596","NC_018410_00570","NC_018411_00578","NC_018412_00580","NC_018413_00575","NC_023030_00577"
"cmpD","","Bicarbonate transport ATP-binding protein CmpD","12","12","1","1","524","","","","716","716","716","NC_004829_00621","NC_017502_00620","NC_017503_01205","NC_018406_00613","NC_018407_00591","NC_018408_00592","NC_018409_00597","NC_018410_00571","NC_018411_00579","NC_018412_00581","NC_018413_00576","NC_023030_00578"
"group_600","","hypothetical protein","12","12","1","1","522","","","","518","518","518","NC_004829_00623","NC_017502_00622","NC_017503_01203","NC_018406_00615","NC_018407_00593","NC_018408_00594","NC_018409_00599","NC_018410_00573","NC_018411_00581","NC_018412_00583","NC_018413_00578","NC_023030_00580"
"group_601","","hypothetical protein","12","12","1","1","110","","","","1112","1121","1112","NC_004829_00627","NC_017502_00626","NC_017503_01199","NC_018406_00619","NC_018407_00597","NC_018408_00598","NC_018409_00603","NC_018410_00577","NC_018411_00585","NC_018412_00587","NC_018413_00582","NC_023030_00585"
"group_602","","hypothetical protein","12","12","1","1","111","","","","224","362","235","NC_004829_00628","NC_017502_00627","NC_017503_01198","NC_018406_00620","NC_018407_00598","NC_018408_00599","NC_018409_00604","NC_018410_00578","NC_018411_00586","NC_018412_00588","NC_018413_00583","NC_023030_00586"
"group_613","","hypothetical protein","12","12","1","1","1320","","","","359","398","362","NC_004829_00679","NC_017502_00679","NC_017503_01152","NC_018406_00631","NC_018407_00609","NC_018408_00610","NC_018409_00615","NC_018410_00588","NC_018411_00597","NC_018412_00599","NC_018413_00594","NC_023030_00629"
"group_614","","hypothetical protein","12","12","1","1","1322","","","","203","203","203","NC_004829_00681","NC_017502_00681","NC_017503_01150","NC_018406_00633","NC_018407_00611","NC_018408_00612","NC_018409_00617","NC_018410_00590","NC_018411_00599","NC_018412_00601","NC_018413_00596","NC_023030_00631"
"group_615","","hypothetical protein","12","12","1","1","1340","","","","638","638","638","NC_004829_00700","NC_017502_00700","NC_017503_01131","NC_018406_00652","NC_018407_00630","NC_018408_00630","NC_018409_00636","NC_018410_00609","NC_018411_00618","NC_018412_00620","NC_018413_00615","NC_023030_00651"
"ffh_1","","Signal recognition particle protein","12","12","1","1","1358","","","","128","128","128","NC_004829_00717","NC_017502_00718","NC_017503_01114","NC_018406_00671","NC_018407_00649","NC_018408_00650","NC_018409_00656","NC_018410_00629","NC_018411_00637","NC_018412_00640","NC_018413_00634","NC_023030_00669"
"glyA_1","","Serine hydroxymethyltransferase","12","12","1","1","1362","","","","146","146","146","NC_004829_00722","NC_017502_00723","NC_017503_01110","NC_018406_00675","NC_018407_00653","NC_018408_00654","NC_018409_00660","NC_018410_00633","NC_018411_00641","NC_018412_00644","NC_018413_00638","NC_023030_00673"
"group_619","","hypothetical protein","12","12","1","1","1403","","","","272","272","272","NC_004829_00739","NC_017502_00740","NC_017503_01095","NC_018406_00690","NC_018407_00667","NC_018408_00668","NC_018409_00674","NC_018410_00647","NC_018411_00655","NC_018412_00658","NC_018413_00652","NC_023030_00696"
"group_620","","hypothetical protein","12","12","1","1","1401","","","","392","392","392","NC_004829_00741","NC_017502_00742","NC_017503_01093","NC_018406_00692","NC_018407_00669","NC_018408_00670","NC_018409_00676","NC_018410_00649","NC_018411_00657","NC_018412_00660","NC_018413_00654","NC_023030_00698"
"atpH","","ATP synthase subunit delta, sodium ion specific","12","12","1","1","1394","","","","530","545","535","NC_004829_00748","NC_017502_00749","NC_017503_01085","NC_018406_00699","NC_018407_00676","NC_018408_00677","NC_018409_00683","NC_018410_00656","NC_018411_00664","NC_018412_00667","NC_018413_00661","NC_023030_00706"
"atpG_1","","ATP synthase gamma chain","12","12","1","1","1391","","","","236","236","236","NC_004829_00752","NC_017502_00753","NC_017503_01081","NC_018406_00702","NC_018407_00679","NC_018408_00680","NC_018409_00686","NC_018410_00659","NC_018411_00667","NC_018412_00670","NC_018413_00664","NC_023030_00709"
"group_623","","hypothetical protein","12","12","1","1","1388","","","","392","392","392","NC_004829_00755","NC_017502_00756","NC_017503_01078","NC_018406_00705","NC_018407_00682","NC_018408_00683","NC_018409_00689","NC_018410_00662","NC_018411_00670","NC_018412_00673","NC_018413_00667","NC_023030_00712"
"group_624","","hypothetical protein","12","12","1","1","1385","","","","155","749","204","NC_004829_00760","NC_017502_00761","NC_017503_01073","NC_018406_00710","NC_018407_00687","NC_018408_00688","NC_018409_00694","NC_018410_00667","NC_018411_00675","NC_018412_00678","NC_018413_00672","NC_023030_00717"
"group_625","","DegV domain-containing protein","12","12","1","1","1384","","","","299","314","302","NC_004829_00763","NC_017502_00764","NC_017503_01070","NC_018406_00713","NC_018407_00690","NC_018408_00691","NC_018409_00697","NC_018410_00670","NC_018411_00678","NC_018412_00681","NC_018413_00675","NC_023030_00720"
"gap1","","Glyceraldehyde-3-phosphate dehydrogenase 1","12","12","1","1","1382","","","","257","257","257","NC_004829_00765","NC_017502_00766","NC_017503_01068","NC_018406_00715","NC_018407_00692","NC_018408_00693","NC_018409_00699","NC_018410_00672","NC_018411_00680","NC_018412_00683","NC_018413_00677","NC_023030_00722"
"gap","","Glyceraldehyde-3-phosphate dehydrogenase","12","12","1","1","1381","","","","530","551","535","NC_004829_00766","NC_017502_00767","NC_017503_01067","NC_018406_00716","NC_018407_00693","NC_018408_00694","NC_018409_00700","NC_018410_00673","NC_018411_00681","NC_018412_00684","NC_018413_00678","NC_023030_00723"
"group_628","","hypothetical protein","12","12","1","1","1377","","","","218","260","253","NC_004829_00770","NC_017502_00771","NC_017503_01063","NC_018406_00720","NC_018407_00697","NC_018408_00698","NC_018409_00704","NC_018410_00677","NC_018411_00685","NC_018412_00688","NC_018413_00682","NC_023030_00727"
"group_629","","hypothetical protein","12","12","1","1","1375","","","","419","419","419","NC_004829_00772","NC_017502_00773","NC_017503_01061","NC_018406_00722","NC_018407_00699","NC_018408_00700","NC_018409_00706","NC_018410_00679","NC_018411_00687","NC_018412_00690","NC_018413_00684","NC_023030_00729"
"group_630","","hypothetical protein","12","12","1","1","6","","","","602","602","602","NC_004829_00774","NC_017502_00775","NC_017503_01059","NC_018406_00724","NC_018407_00701","NC_018408_00702","NC_018409_00708","NC_018410_00681","NC_018411_00689","NC_018412_00692","NC_018413_00686","NC_023030_00731"
"group_631","","hypothetical protein","12","12","1","1","9","","","","551","872","818","NC_004829_00778","NC_017502_00779","NC_017503_01055","NC_018406_00728","NC_018407_00705","NC_018408_00706","NC_018409_00712","NC_018410_00685","NC_018411_00693","NC_018412_00696","NC_018413_00690","NC_023030_00735"
"trmL","","tRNA (cytidine(34)-2'-O)-methyltransferase","12","12","1","1","13","","","","491","491","491","NC_004829_00783","NC_017502_00784","NC_017503_01050","NC_018406_00732","NC_018407_00709","NC_018408_00710","NC_018409_00716","NC_018410_00689","NC_018411_00697","NC_018412_00700","NC_018413_00694","NC_023030_00740"
"ileS_3","","Isoleucine--tRNA ligase","12","12","1","1","16","","","","440","440","440","NC_004829_00786","NC_017502_00787","NC_017503_01047","NC_018406_00735","NC_018407_00712","NC_018408_00713","NC_018409_00719","NC_018410_00692","NC_018411_00700","NC_018412_00703","NC_018413_00697","NC_023030_00743"
"group_634","","hypothetical protein","12","12","1","1","29","","","","170","170","170","NC_004829_00801","NC_017502_00803","NC_017503_01033","NC_018406_00749","NC_018407_00726","NC_018408_00727","NC_018409_00733","NC_018410_00706","NC_018411_00714","NC_018412_00717","NC_018413_00711","NC_023030_00758"
"group_635","","hypothetical protein","12","12","1","1","31","","","","350","350","350","NC_004829_00803","NC_017502_00805","NC_017503_01031","NC_018406_00751","NC_018407_00728","NC_018408_00729","NC_018409_00735","NC_018410_00708","NC_018411_00716","NC_018412_00719","NC_018413_00713","NC_023030_00760"
"group_636","","hypothetical protein","12","12","1","1","32","","","","290","290","290","NC_004829_00804","NC_017502_00806","NC_017503_01030","NC_018406_00752","NC_018407_00729","NC_018408_00730","NC_018409_00736","NC_018410_00709","NC_018411_00717","NC_018412_00720","NC_018413_00714","NC_023030_00761"
"group_637","","hypothetical protein","12","12","1","1","33","","","","632","674","635","NC_004829_00805","NC_017502_00807","NC_017503_01029","NC_018406_00753","NC_018407_00730","NC_018408_00731","NC_018409_00737","NC_018410_00710","NC_018411_00718","NC_018412_00721","NC_018413_00715","NC_023030_00762"
"arcA_1","","Arginine deiminase","12","12","1","1","2238","","","","272","272","272","NC_004829_00806","NC_017502_00808","NC_017503_01028","NC_018406_00754","NC_018407_00731","NC_018408_00732","NC_018409_00738","NC_018410_00711","NC_018411_00719","NC_018412_00722","NC_018413_00716","NC_023030_00763"
"acoC","","Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system","12","12","1","1","2231","","","","788","794","788","NC_004829_00813","NC_017502_00815","NC_017503_01019","NC_018406_00764","NC_018407_00741","NC_018408_00742","NC_018409_00748","NC_018410_00721","NC_018411_00729","NC_018412_00732","NC_018413_00726","NC_023030_00770"
"rsgI2","","hypothetical protein","12","12","1","1","2058","","","","377","1205","952","NC_004829_01364","NC_017502_01365","NC_017503_00451","NC_018406_01284","NC_018407_01261","NC_018408_01311","NC_018409_01277","NC_018410_01235","NC_018411_01257","NC_018412_01292","NC_018413_01245","NC_023030_01339"
"group_640","","DnaJ-like protein MG200","12","12","1","1","2230","","","","350","410","390","NC_004829_00814","NC_017502_00816","NC_017503_01018","NC_018406_00765","NC_018407_00742","NC_018408_00743","NC_018409_00749","NC_018410_00722","NC_018411_00730","NC_018412_00733","NC_018413_00727","NC_023030_00771"
"group_648","","hypothetical protein","12","12","1","1","2119","","","","128","128","128","NC_004829_00869","NC_017502_00870","NC_017503_00970","NC_018406_00780","NC_018407_00757","NC_018408_00797","NC_018409_00764","NC_018410_00737","NC_018411_00745","NC_018412_00787","NC_018413_00742","NC_023030_00812"
"hrcA","","Heat-inducible transcription repressor HrcA","12","12","1","1","2117","","","","797","797","797","NC_004829_00871","NC_017502_00872","NC_017503_00968","NC_018406_00782","NC_018407_00759","NC_018408_00799","NC_018409_00766","NC_018410_00739","NC_018411_00747","NC_018412_00789","NC_018413_00744","NC_023030_00814"
"group_650","","hypothetical protein","12","12","1","1","2113","","","","182","182","182","NC_004829_00875","NC_017502_00876","NC_017503_00964","NC_018406_00786","NC_018407_00763","NC_018408_00803","NC_018409_00770","NC_018410_00743","NC_018411_00751","NC_018412_00793","NC_018413_00748","NC_023030_00818"
"pheS_2","","Phenylalanine--tRNA ligase alpha subunit","12","12","1","1","2110","","","","179","236","183","NC_004829_00880","NC_017502_00881","NC_017503_00960","NC_018406_00790","NC_018407_00767","NC_018408_00807","NC_018409_00774","NC_018410_00747","NC_018411_00756","NC_018412_00798","NC_018413_00752","NC_023030_00823"
"pheT_2","","Phenylalanine--tRNA ligase beta subunit","12","12","1","1","2109","","","","545","545","545","NC_004829_00881","NC_017502_00882","NC_017503_00959","NC_018406_00791","NC_018407_00768","NC_018408_00808","NC_018409_00775","NC_018410_00748","NC_018411_00757","NC_018412_00799","NC_018413_00753","NC_023030_00824"
"group_653","","hypothetical protein","12","12","1","1","2107","","","","407","407","407","NC_004829_00883","NC_017502_00884","NC_017503_00957","NC_018406_00793","NC_018407_00770","NC_018408_00810","NC_018409_00777","NC_018410_00750","NC_018411_00759","NC_018412_00801","NC_018413_00755","NC_023030_00826"
"pheT_3","","Phenylalanine--tRNA ligase beta subunit","12","12","1","1","2106","","","","602","602","602","NC_004829_00884","NC_017502_00885","NC_017503_00956","NC_018406_00794","NC_018407_00771","NC_018408_00811","NC_018409_00778","NC_018410_00751","NC_018411_00760","NC_018412_00802","NC_018413_00756","NC_023030_00827"
"group_656","","hypothetical protein","12","12","1","1","2098","","","","185","185","185","NC_004829_00891","NC_017502_00892","NC_017503_00948","NC_018406_00801","NC_018407_00778","NC_018408_00818","NC_018409_00785","NC_018410_00758","NC_018411_00767","NC_018412_00809","NC_018413_00763","NC_023030_00835"
"group_657","","putative ABC transporter ATP-binding protein","12","12","1","1","2097","","","","1520","1553","1550","NC_004829_00892","NC_017502_00893","NC_017503_00947","NC_018406_00802","NC_018407_00779","NC_018408_00819","NC_018409_00786","NC_018410_00759","NC_018411_00768","NC_018412_00810","NC_018413_00764","NC_023030_00836"
"nfo","","putative endonuclease 4","12","12","1","1","2094","","","","809","911","894","NC_004829_00897","NC_017502_00898","NC_017503_00942","NC_018406_00807","NC_018407_00784","NC_018408_00824","NC_018409_00791","NC_018410_00764","NC_018411_00773","NC_018412_00815","NC_018413_00769","NC_023030_00841"
"group_659","","hypothetical protein","12","12","1","1","2093","","","","503","503","503","NC_004829_00898","NC_017502_00899","NC_017503_00941","NC_018406_00808","NC_018407_00785","NC_018408_00825","NC_018409_00792","NC_018410_00765","NC_018411_00774","NC_018412_00816","NC_018413_00770","NC_023030_00842"
"group_66","","hypothetical protein","12","12","1","1","1720","","","","365","896","667","NC_004829_01019","NC_017502_01020","NC_017503_00834","NC_018406_00949","NC_018407_00926","NC_018408_00966","NC_018409_00941","NC_018410_00899","NC_018411_00921","NC_018412_00956","NC_018413_00909","NC_023030_00987"
"group_660","","hypothetical protein","12","12","1","1","1417","","","","269","374","304","NC_004829_00899","NC_017502_00900","NC_017503_00940","NC_018406_00809","NC_018407_00786","NC_018408_00826","NC_018409_00793","NC_018410_00766","NC_018411_00775","NC_018412_00817","NC_018413_00771","NC_023030_00843"
"lon1_2","","Lon protease 1","12","12","1","1","1422","","","","242","257","247","NC_004829_00904","NC_017502_00905","NC_017503_00935","NC_018406_00814","NC_018407_00791","NC_018408_00831","NC_018409_00798","NC_018410_00771","NC_018411_00780","NC_018412_00822","NC_018413_00776","NC_023030_00848"
"ecsA","","ABC-type transporter ATP-binding protein EcsA","12","12","1","1","1425","","","","305","305","305","NC_004829_00907","NC_017502_00908","NC_017503_00932","NC_018406_00817","NC_018407_00794","NC_018408_00834","NC_018409_00801","NC_018410_00774","NC_018411_00783","NC_018412_00825","NC_018413_00779","NC_023030_00851"
"yxlF","","putative ABC transporter ATP-binding protein YxlF","12","12","1","1","1426","","","","644","644","644","NC_004829_00908","NC_017502_00909","NC_017503_00931","NC_018406_00818","NC_018407_00795","NC_018408_00835","NC_018409_00802","NC_018410_00775","NC_018411_00784","NC_018412_00826","NC_018413_00780","NC_023030_00852"
"group_664","","hypothetical protein","12","12","1","1","1563","","","","209","209","209","NC_004829_00914","NC_017502_00915","NC_017503_00924","NC_018406_00828","NC_018407_00805","NC_018408_00845","NC_018409_00812","NC_018410_00785","NC_018411_00794","NC_018412_00836","NC_018413_00790","NC_023030_00858"
"pcrA_1","","ATP-dependent DNA helicase PcrA","12","12","1","1","1560","","","","308","308","308","NC_004829_00916","NC_017502_00917","NC_017503_00922","NC_018406_00830","NC_018407_00807","NC_018408_00847","NC_018409_00814","NC_018410_00787","NC_018411_00796","NC_018412_00838","NC_018413_00792","NC_023030_00860"
"pcrA_2","","ATP-dependent DNA helicase PcrA","12","12","1","1","1559","","","","362","422","417","NC_004829_00917","NC_017502_00918","NC_017503_00921","NC_018406_00831","NC_018407_00808","NC_018408_00848","NC_018409_00815","NC_018410_00788","NC_018411_00797","NC_018412_00839","NC_018413_00793","NC_023030_00861"
"group_668","","hypothetical protein","12","12","1","1","1556","","","","161","161","161","NC_004829_00920","NC_017502_00921","NC_017503_00918","NC_018406_00834","NC_018407_00811","NC_018408_00851","NC_018409_00818","NC_018410_00791","NC_018411_00800","NC_018412_00842","NC_018413_00796","NC_023030_00864"
"group_669","","hypothetical protein","12","12","1","1","1550","","","","629","629","629","NC_004829_00926","NC_017502_00927","NC_017503_00912","NC_018406_00840","NC_018407_00817","NC_018408_00857","NC_018409_00824","NC_018410_00797","NC_018411_00806","NC_018412_00848","NC_018413_00802","NC_023030_00870"
"group_670","","hypothetical protein","12","12","1","1","1549","","","","224","233","232","NC_004829_00927","NC_017502_00928","NC_017503_00911","NC_018406_00841","NC_018407_00818","NC_018408_00858","NC_018409_00825","NC_018410_00798","NC_018411_00807","NC_018412_00849","NC_018413_00803","NC_023030_00871"
"nfuA","","Fe/S biogenesis protein NfuA","12","12","1","1","1548","","","","299","299","299","NC_004829_00928","NC_017502_00929","NC_017503_00910","NC_018406_00842","NC_018407_00819","NC_018408_00859","NC_018409_00826","NC_018410_00799","NC_018411_00808","NC_018412_00850","NC_018413_00804","NC_023030_00872"
"trmK","","tRNA (adenine(22)-N(1))-methyltransferase","12","12","1","1","1540","","","","650","650","650","NC_004829_00933","NC_017502_00934","NC_017503_00905","NC_018406_00847","NC_018407_00824","NC_018408_00864","NC_018409_00831","NC_018410_00804","NC_018411_00813","NC_018412_00855","NC_018413_00809","NC_023030_00876"
"sigA_2","","RNA polymerase sigma factor SigA","12","12","1","1","1537","","","","1325","1334","1326","NC_004829_00936","NC_017502_00937","NC_017503_00902","NC_018406_00850","NC_018407_00827","NC_018408_00867","NC_018409_00834","NC_018410_00807","NC_018411_00816","NC_018412_00858","NC_018413_00812","NC_023030_00879"
"group_674","","hypothetical protein","12","12","1","1","1528","","","","131","131","131","NC_004829_00945","NC_017502_00946","NC_017503_00893","NC_018406_00859","NC_018407_00836","NC_018408_00876","NC_018409_00843","NC_018410_00816","NC_018411_00825","NC_018412_00867","NC_018413_00821","NC_023030_00888"
"group_675","","hypothetical protein","12","12","1","1","1527","","","","218","218","218","NC_004829_00946","NC_017502_00947","NC_017503_00892","NC_018406_00860","NC_018407_00837","NC_018408_00877","NC_018409_00844","NC_018410_00817","NC_018411_00826","NC_018412_00868","NC_018413_00822","NC_023030_00889"
"group_676","","hypothetical protein","12","12","1","1","1522","","","","689","689","689","NC_004829_00950","NC_017502_00951","NC_017503_00888","NC_018406_00864","NC_018407_00841","NC_018408_00881","NC_018409_00848","NC_018410_00821","NC_018411_00830","NC_018412_00872","NC_018413_00826","NC_023030_00893"
"group_677","","hypothetical protein","12","12","1","1","1516","","","","266","266","266","NC_004829_00952","NC_017502_00953","NC_017503_00886","NC_018406_00871","NC_018407_00848","NC_018408_00888","NC_018409_00854","NC_018410_00828","NC_018411_00836","NC_018412_00879","NC_018413_00833","NC_023030_00895"
"group_678","","hypothetical protein","12","12","1","1","1635","","","","1124","1124","1124","NC_004829_00954","NC_017502_00955","NC_017503_00884","NC_018406_00873","NC_018407_00850","NC_018408_00890","NC_018409_00856","NC_018410_00830","NC_018411_00838","NC_018412_00881","NC_018413_00835","NC_023030_00897"
"group_679","","hypothetical protein","12","12","1","1","1645","","","","428","428","428","NC_004829_00962","NC_017502_00963","NC_017503_00876","NC_018406_00882","NC_018407_00859","NC_018408_00899","NC_018409_00865","NC_018410_00839","NC_018411_00847","NC_018412_00890","NC_018413_00844","NC_023030_00906"
"group_680","","hypothetical protein","12","12","1","1","1652","","","","551","551","551","NC_004829_00969","NC_017502_00970","NC_017503_00870","NC_018406_00888","NC_018407_00865","NC_018408_00905","NC_018409_00871","NC_018410_00845","NC_018411_00853","NC_018412_00896","NC_018413_00850","NC_023030_00912"
"mtnN","","5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase","12","12","1","1","1665","","","","785","785","785","NC_004829_00980","NC_017502_00981","NC_017503_00860","NC_018406_00900","NC_018407_00877","NC_018408_00917","NC_018409_00883","NC_018410_00857","NC_018411_00865","NC_018412_00908","NC_018413_00862","NC_023030_00924"
"parE_1","","DNA topoisomerase 4 subunit B","12","12","1","1","1670","","","","1193","1313","1303","NC_004829_00985","NC_017502_00986","NC_017503_00854","NC_018406_00905","NC_018407_00882","NC_018408_00922","NC_018409_00888","NC_018410_00862","NC_018411_00870","NC_018412_00913","NC_018413_00867","NC_023030_00929"
"group_686","","DNA-binding protein HU","12","12","1","1","1672","","","","299","299","299","NC_004829_00987","NC_017502_00988","NC_017503_00852","NC_018406_00907","NC_018407_00884","NC_018408_00924","NC_018409_00890","NC_018410_00864","NC_018411_00872","NC_018412_00915","NC_018413_00869","NC_023030_00931"
"group_688","","hypothetical protein","12","12","1","1","1675","","","","194","194","194","NC_004829_00990","NC_017502_00991","NC_017503_00849","NC_018406_00910","NC_018407_00887","NC_018408_00927","NC_018409_00893","NC_018410_00867","NC_018411_00875","NC_018412_00918","NC_018413_00872","NC_023030_00934"
"group_690","","hypothetical protein","12","12","1","1","1707","","","","320","320","320","NC_004829_01022","NC_017502_01023","NC_017503_00830","NC_018406_00952","NC_018407_00929","NC_018408_00969","NC_018409_00944","NC_018410_00902","NC_018411_00924","NC_018412_00959","NC_018413_00912","NC_023030_00990"
"group_691","","hypothetical protein","12","12","1","1","1706","","","","1064","1064","1064","NC_004829_01023","NC_017502_01024","NC_017503_00829","NC_018406_00953","NC_018407_00930","NC_018408_00970","NC_018409_00945","NC_018410_00903","NC_018411_00925","NC_018412_00960","NC_018413_00913","NC_023030_00991"
"leuS_4","","Leucine--tRNA ligase","12","12","1","1","1484","","","","620","620","620","NC_004829_01028","NC_017502_01029","NC_017503_00824","NC_018406_00958","NC_018407_00935","NC_018408_00975","NC_018409_00950","NC_018410_00908","NC_018411_00930","NC_018412_00965","NC_018413_00918","NC_023030_00996"
"group_693","","hypothetical protein","12","12","1","1","1485","","","","218","302","232","NC_004829_01029","NC_017502_01030","NC_017503_00823","NC_018406_00959","NC_018407_00936","NC_018408_00976","NC_018409_00951","NC_018410_00909","NC_018411_00931","NC_018412_00966","NC_018413_00919","NC_023030_00997"
"group_694","","hypothetical protein","12","12","1","1","1486","","","","122","122","122","NC_004829_01030","NC_017502_01031","NC_017503_00822","NC_018406_00960","NC_018407_00937","NC_018408_00977","NC_018409_00952","NC_018410_00910","NC_018411_00932","NC_018412_00967","NC_018413_00920","NC_023030_00998"
"group_695","","hypothetical protein","12","12","1","1","1487","","","","341","341","341","NC_004829_01032","NC_017502_01033","NC_017503_00820","NC_018406_00962","NC_018407_00939","NC_018408_00979","NC_018409_00954","NC_018410_00912","NC_018411_00934","NC_018412_00969","NC_018413_00922","NC_023030_01000"
"ytbE_1","","putative oxidoreductase YtbE","12","12","1","1","1488","","","","182","242","227","NC_004829_01033","NC_017502_01034","NC_017503_00819","NC_018406_00963","NC_018407_00940","NC_018408_00980","NC_018409_00955","NC_018410_00913","NC_018411_00935","NC_018412_00970","NC_018413_00923","NC_023030_01001"
"yvgN","","Glyoxal reductase","12","12","1","1","1490","","","","227","227","227","NC_004829_01035","NC_017502_01036","NC_017503_00817","NC_018406_00965","NC_018407_00942","NC_018408_00982","NC_018409_00957","NC_018410_00915","NC_018411_00937","NC_018412_00972","NC_018413_00925","NC_023030_01003"
"group_698","","hypothetical protein","12","12","1","1","1493","","","","131","131","131","NC_004829_01038","NC_017502_01039","NC_017503_00814","NC_018406_00968","NC_018407_00945","NC_018408_00985","NC_018409_00960","NC_018410_00918","NC_018411_00940","NC_018412_00975","NC_018413_00929","NC_023030_01006"
"pepC_1","","Aminopeptidase C","12","12","1","1","1495","","","","692","692","692","NC_004829_01040","NC_017502_01041","NC_017503_00812","NC_018406_00970","NC_018407_00947","NC_018408_00987","NC_018409_00962","NC_018410_00920","NC_018411_00942","NC_018412_00977","NC_018413_00931","NC_023030_01008"
"group_700","","hypothetical protein","12","12","1","1","1497","","","","179","179","179","NC_004829_01042","NC_017502_01043","NC_017503_00810","NC_018406_00972","NC_018407_00949","NC_018408_00989","NC_018409_00964","NC_018410_00922","NC_018411_00944","NC_018412_00979","NC_018413_00933","NC_023030_01010"
"group_701","","hypothetical protein","12","12","1","1","1498","","","","143","143","143","NC_004829_01043","NC_017502_01044","NC_017503_00809","NC_018406_00973","NC_018407_00950","NC_018408_00990","NC_018409_00965","NC_018410_00923","NC_018411_00945","NC_018412_00980","NC_018413_00934","NC_023030_01011"
"udk","","Uridine kinase","12","12","1","1","1479","","","","494","494","494","NC_004829_01055","NC_017502_01056","NC_017503_00794","NC_018406_00984","NC_018407_00961","NC_018408_01001","NC_018409_00976","NC_018410_00934","NC_018411_00956","NC_018412_00991","NC_018413_00945","NC_023030_01026"
"group_703","","hypothetical protein","12","12","1","1","1478","","","","131","131","131","NC_004829_01056","NC_017502_01057","NC_017503_00793","NC_018406_00985","NC_018407_00962","NC_018408_01002","NC_018409_00977","NC_018410_00935","NC_018411_00957","NC_018412_00992","NC_018413_00946","NC_023030_01027"
"group_704","","hypothetical protein","12","12","1","1","1477","","","","284","284","284","NC_004829_01057","NC_017502_01058","NC_017503_00792","NC_018406_00986","NC_018407_00963","NC_018408_01003","NC_018409_00978","NC_018410_00936","NC_018411_00958","NC_018412_00993","NC_018413_00947","NC_023030_01028"
"group_705","","hypothetical protein","12","12","1","1","1471","","","","194","317","296","NC_004829_01063","NC_017502_01064","NC_017503_00785","NC_018406_00992","NC_018407_00969","NC_018408_01009","NC_018409_00984","NC_018410_00942","NC_018411_00964","NC_018412_00999","NC_018413_00953","NC_023030_01035"
"group_707","","hypothetical protein","12","12","1","1","1467","","","","779","779","779","NC_004829_01067","NC_017502_01068","NC_017503_00780","NC_018406_00996","NC_018407_00973","NC_018408_01013","NC_018409_00988","NC_018410_00946","NC_018411_00968","NC_018412_01003","NC_018413_00957","NC_023030_01039"
"group_708","","hypothetical protein","12","12","1","1","1462","","","","644","644","644","NC_004829_01070","NC_017502_01071","NC_017503_00776","NC_018406_00999","NC_018407_00976","NC_018408_01016","NC_018409_00991","NC_018410_00949","NC_018411_00971","NC_018412_01006","NC_018413_00960","NC_023030_01043"
"group_709","","hypothetical protein","12","12","1","1","1457","","","","392","392","392","NC_004829_01075","NC_017502_01076","NC_017503_00771","NC_018406_01004","NC_018407_00981","NC_018408_01021","NC_018409_00996","NC_018410_00954","NC_018411_00976","NC_018412_01011","NC_018413_00965","NC_023030_01048"
"group_710","","hypothetical protein","12","12","1","1","1452","","","","1118","1133","1119","NC_004829_01080","NC_017502_01081","NC_017503_00766","NC_018406_01009","NC_018407_00986","NC_018408_01026","NC_018409_01001","NC_018410_00959","NC_018411_00981","NC_018412_01016","NC_018413_00970","NC_023030_01053"
"metK_1","","S-adenosylmethionine synthase","12","12","1","1","1451","","","","281","500","481","NC_004829_01081","NC_017502_01082","NC_017503_00765","NC_018406_01010","NC_018407_00987","NC_018408_01027","NC_018409_01002","NC_018410_00960","NC_018411_00982","NC_018412_01017","NC_018413_00971","NC_023030_01054"
"group_712","","hypothetical protein","12","12","1","1","1447","","","","890","890","890","NC_004829_01084","NC_017502_01085","NC_017503_00762","NC_018406_01013","NC_018407_00990","NC_018408_01030","NC_018409_01005","NC_018410_00963","NC_018411_00985","NC_018412_01020","NC_018413_00974","NC_023030_01058"
"group_713","","hypothetical protein","12","12","1","1","1446","","","","305","341","332","NC_004829_01085","NC_017502_01086","NC_017503_00761","NC_018406_01014","NC_018407_00991","NC_018408_01031","NC_018409_01006","NC_018410_00964","NC_018411_00986","NC_018412_01021","NC_018413_00975","NC_023030_01059"
"group_714","","hypothetical protein","12","12","1","1","1579","","","","284","284","284","NC_004829_01087","NC_017502_01088","NC_017503_00759","NC_018406_01016","NC_018407_00993","NC_018408_01033","NC_018409_01008","NC_018410_00966","NC_018411_00988","NC_018412_01023","NC_018413_00977","NC_023030_01061"
"potH","","Putrescine transport system permease protein PotH","12","12","1","1","1580","","","","422","431","428","NC_004829_01088","NC_017502_01089","NC_017503_00758","NC_018406_01017","NC_018407_00994","NC_018408_01034","NC_018409_01009","NC_018410_00967","NC_018411_00989","NC_018412_01024","NC_018413_00978","NC_023030_01062"
"groS","","10 kDa chaperonin","12","12","1","1","1304","","","","293","293","293","NC_004829_01110","NC_017502_01111","NC_017503_00737","NC_018406_01032","NC_018407_01009","NC_018408_01049","NC_018409_01024","NC_018410_00982","NC_018411_01004","NC_018412_01039","NC_018413_00993","NC_023030_01080"
"ackA_2","","Acetate kinase","12","12","1","1","1285","","","","284","284","284","NC_004829_01129","NC_017502_01130","NC_017503_00718","NC_018406_01050","NC_018407_01027","NC_018408_01067","NC_018409_01042","NC_018410_01000","NC_018411_01022","NC_018412_01057","NC_018413_01011","NC_023030_01098"
"ktrB_1","","Ktr system potassium uptake protein B","12","12","1","1","1284","","","","761","782","766","NC_004829_01130","NC_017502_01131","NC_017503_00717","NC_018406_01051","NC_018407_01028","NC_018408_01068","NC_018409_01043","NC_018410_01001","NC_018411_01023","NC_018412_01058","NC_018413_01012","NC_023030_01099"
"ktrB_2","","Ktr system potassium uptake protein B","12","12","1","1","1281","","","","254","254","254","NC_004829_01133","NC_017502_01134","NC_017503_00714","NC_018406_01054","NC_018407_01031","NC_018408_01071","NC_018409_01046","NC_018410_01004","NC_018411_01026","NC_018412_01061","NC_018413_01015","NC_023030_01102"
"group_720","","hypothetical protein","12","12","1","1","1278","","","","131","161","158","NC_004829_01136","NC_017502_01137","NC_017503_00711","NC_018406_01057","NC_018407_01034","NC_018408_01074","NC_018409_01049","NC_018410_01007","NC_018411_01029","NC_018412_01064","NC_018413_01018","NC_023030_01105"
"group_721","","hypothetical protein","12","12","1","1","1276","","","","185","185","185","NC_004829_01138","NC_017502_01139","NC_017503_00709","NC_018406_01059","NC_018407_01036","NC_018408_01076","NC_018409_01051","NC_018410_01009","NC_018411_01031","NC_018412_01066","NC_018413_01020","NC_023030_01109"
"rnc","","Ribonuclease 3","12","12","1","1","1270","","","","644","1016","985","NC_004829_01143","NC_017502_01144","NC_017503_00704","NC_018406_01064","NC_018407_01041","NC_018408_01081","NC_018409_01056","NC_018410_01014","NC_018411_01036","NC_018412_01071","NC_018413_01025","NC_023030_01115"
"group_723","","hypothetical protein","12","12","1","1","1268","","","","281","389","380","NC_004829_01144","NC_017502_01145","NC_017503_00703","NC_018406_01065","NC_018407_01042","NC_018408_01082","NC_018409_01057","NC_018410_01015","NC_018411_01037","NC_018412_01072","NC_018413_01026","NC_023030_01117"
"thiI","","putative tRNA sulfurtransferase","12","12","1","1","1258","","","","890","890","890","NC_004829_01154","NC_017502_01155","NC_017503_00693","NC_018406_01075","NC_018407_01052","NC_018408_01092","NC_018409_01067","NC_018410_01025","NC_018411_01047","NC_018412_01082","NC_018413_01036","NC_023030_01127"
"group_725","","hypothetical protein","12","12","1","1","1256","","","","539","539","539","NC_004829_01156","NC_017502_01157","NC_017503_00691","NC_018406_01077","NC_018407_01054","NC_018408_01094","NC_018409_01069","NC_018410_01027","NC_018411_01049","NC_018412_01084","NC_018413_01038","NC_023030_01129"
"group_726","","hypothetical protein","12","12","1","1","1254","","","","239","239","239","NC_004829_01160","NC_017502_01161","NC_017503_00687","NC_018406_01080","NC_018407_01057","NC_018408_01097","NC_018409_01072","NC_018410_01030","NC_018411_01052","NC_018412_01087","NC_018413_01041","NC_023030_01132"
"group_728","","hypothetical protein","12","12","1","1","1250","","","","1694","1712","1699","NC_004829_01165","NC_017502_01166","NC_017503_00682","NC_018406_01084","NC_018407_01061","NC_018408_01101","NC_018409_01076","NC_018410_01034","NC_018411_01056","NC_018412_01091","NC_018413_01045","NC_023030_01136"
"cshB_1","","DEAD-box ATP-dependent RNA helicase CshB","12","12","1","1","1249","","","","320","344","328","NC_004829_01166","NC_017502_01167","NC_017503_00681","NC_018406_01085","NC_018407_01062","NC_018408_01102","NC_018409_01077","NC_018410_01035","NC_018411_01057","NC_018412_01092","NC_018413_01046","NC_023030_01137"
"group_730","","hypothetical protein","12","12","1","1","1243","","","","695","695","695","NC_004829_01172","NC_017502_01173","NC_017503_00675","NC_018406_01091","NC_018407_01068","NC_018408_01108","NC_018409_01083","NC_018410_01041","NC_018411_01063","NC_018412_01098","NC_018413_01052","NC_023030_01143"
"group_731","","hypothetical protein","12","12","1","1","1240","","","","512","512","512","NC_004829_01175","NC_017502_01176","NC_017503_00672","NC_018406_01094","NC_018407_01071","NC_018408_01111","NC_018409_01086","NC_018410_01044","NC_018411_01066","NC_018412_01101","NC_018413_01055","NC_023030_01146"
"group_732","","hypothetical protein","12","12","1","1","1237","","","","320","320","320","NC_004829_01178","NC_017502_01179","NC_017503_00669","NC_018406_01097","NC_018407_01074","NC_018408_01114","NC_018409_01089","NC_018410_01047","NC_018411_01069","NC_018412_01104","NC_018413_01058","NC_023030_01149"
"group_733","","hypothetical protein","12","12","1","1","1234","","","Hypothetical protein with no hits to refseq/uniprot/clusters/cdd/tigrfams/pfam overlapping another protein with hits","140","140","140","NC_004829_01182","NC_017502_01183","NC_017503_00665","NC_018406_01101","NC_018407_01078","NC_018408_01118","NC_018409_01093","NC_018410_01051","NC_018411_01073","NC_018412_01108","NC_018413_01062","NC_023030_01153"
"group_734","","hypothetical protein","12","12","1","1","1231","","","","317","317","317","NC_004829_01185","NC_017502_01186","NC_017503_00662","NC_018406_01104","NC_018407_01081","NC_018408_01121","NC_018409_01096","NC_018410_01054","NC_018411_01076","NC_018412_01111","NC_018413_01065","NC_023030_01157"
"group_735","","hypothetical protein","12","12","1","1","1229","","","","128","128","128","NC_004829_01187","NC_017502_01188","NC_017503_00660","NC_018406_01106","NC_018407_01083","NC_018408_01123","NC_018409_01098","NC_018410_01056","NC_018411_01078","NC_018412_01113","NC_018413_01067","NC_023030_01159"
"oppF_2","","Oligopeptide transport ATP-binding protein OppF","12","12","1","1","1214","","","","359","359","359","NC_004829_01200","NC_017502_01201","NC_017503_00648","NC_018406_01120","NC_018407_01097","NC_018408_01146","NC_018409_01112","NC_018410_01071","NC_018411_01092","NC_018412_01127","NC_018413_01081","NC_023030_01172"
"oppF_3","","Oligopeptide transport ATP-binding protein OppF","12","12","1","1","1213","","","","584","656","632","NC_004829_01201","NC_017502_01202","NC_017503_00647","NC_018406_01121","NC_018407_01098","NC_018408_01147","NC_018409_01113","NC_018410_01072","NC_018411_01093","NC_018412_01128","NC_018413_01082","NC_023030_01173"
"oppD_3","","Oligopeptide transport ATP-binding protein OppD","12","12","1","1","1211","","","","461","485","479","NC_004829_01203","NC_017502_01204","NC_017503_00645","NC_018406_01123","NC_018407_01100","NC_018408_01149","NC_018409_01115","NC_018410_01074","NC_018411_01095","NC_018412_01130","NC_018413_01084","NC_023030_01175"
"sufC","","putative ATP-dependent transporter SufC","12","12","1","1","1210","","","","401","416","413","NC_004829_01204","NC_017502_01205","NC_017503_00644","NC_018406_01124","NC_018407_01101","NC_018408_01150","NC_018409_01116","NC_018410_01075","NC_018411_01096","NC_018412_01131","NC_018413_01085","NC_023030_01176"
"group_740","","hypothetical protein","12","12","1","1","2164","","","","170","170","170","NC_004829_01208","NC_017502_01209","NC_017503_00640","NC_018406_01128","NC_018407_01105","NC_018408_01154","NC_018409_01120","NC_018410_01079","NC_018411_01100","NC_018412_01135","NC_018413_01089","NC_023030_01180"
"dppB","","Dipeptide transport system permease protein DppB","12","12","1","1","2166","","","","233","245","241","NC_004829_01211","NC_017502_01212","NC_017503_00637","NC_018406_01130","NC_018407_01107","NC_018408_01156","NC_018409_01122","NC_018410_01081","NC_018411_01102","NC_018412_01137","NC_018413_01091","NC_023030_01182"
"group_742","","hypothetical protein","12","12","1","1","2169","","","","569","569","569","NC_004829_01214","NC_017502_01216","NC_017503_00634","NC_018406_01133","NC_018407_01110","NC_018408_01159","NC_018409_01125","NC_018410_01084","NC_018411_01105","NC_018412_01140","NC_018413_01094","NC_023030_01186"
"group_743","","hypothetical protein","12","12","1","1","2170","","","","578","578","578","NC_004829_01215","NC_017502_01217","NC_017503_00633","NC_018406_01134","NC_018407_01111","NC_018408_01160","NC_018409_01126","NC_018410_01085","NC_018411_01106","NC_018412_01141","NC_018413_01095","NC_023030_01187"
"group_744","","hypothetical protein","12","12","1","1","2171","","","","239","239","239","NC_004829_01216","NC_017502_01218","NC_017503_00632","NC_018406_01135","NC_018407_01112","NC_018408_01161","NC_018409_01127","NC_018410_01086","NC_018411_01107","NC_018412_01142","NC_018413_01096","NC_023030_01188"
"group_746","","hypothetical protein","12","12","1","1","2176","","","","392","392","392","NC_004829_01223","NC_017502_01225","NC_017503_00627","NC_018406_01140","NC_018407_01117","NC_018408_01167","NC_018409_01133","NC_018410_01091","NC_018411_01112","NC_018412_01148","NC_018413_01101","NC_023030_01192"
"rarA","","Replication-associated recombination protein A","12","12","1","1","2185","","","","1034","1034","1034","NC_004829_01231","NC_017502_01233","NC_017503_00620","NC_018406_01149","NC_018407_01126","NC_018408_01176","NC_018409_01142","NC_018410_01100","NC_018411_01121","NC_018412_01157","NC_018413_01110","NC_023030_01200"
"rsmI","","Ribosomal RNA small subunit methyltransferase I","12","12","1","1","2186","","","","821","821","821","NC_004829_01232","NC_017502_01234","NC_017503_00619","NC_018406_01150","NC_018407_01127","NC_018408_01177","NC_018409_01143","NC_018410_01101","NC_018411_01122","NC_018412_01158","NC_018413_01111","NC_023030_01201"
"group_750","","hypothetical protein","12","12","1","1","2202","","","","647","647","647","NC_004829_01248","NC_017502_01249","NC_017503_00604","NC_018406_01166","NC_018407_01143","NC_018408_01193","NC_018409_01159","NC_018410_01117","NC_018411_01138","NC_018412_01174","NC_018413_01127","NC_023030_01216"
"group_753","","hypothetical protein","12","12","1","1","1940","","","","212","212","212","NC_004829_01262","NC_017502_01263","NC_017503_00553","NC_018406_01180","NC_018407_01157","NC_018408_01207","NC_018409_01173","NC_018410_01131","NC_018411_01152","NC_018412_01188","NC_018413_01141","NC_023030_01231"
"group_755","","hypothetical protein","12","12","1","1","1941","","","","197","197","197","NC_004829_01263","NC_017502_01264","NC_017503_00552","NC_018406_01181","NC_018407_01158","NC_018408_01208","NC_018409_01174","NC_018410_01132","NC_018411_01153","NC_018412_01189","NC_018413_01142","NC_023030_01232"
"group_758","","hypothetical protein","12","12","1","1","1965","","","","569","569","569","NC_004829_01286","NC_017502_01287","NC_017503_00529","NC_018406_01204","NC_018407_01181","NC_018408_01231","NC_018409_01197","NC_018410_01155","NC_018411_01176","NC_018412_01212","NC_018413_01165","NC_023030_01255"
"group_759","","hypothetical protein","12","12","1","1","1970","","","","128","128","128","NC_004829_01289","NC_017502_01290","NC_017503_00526","NC_018406_01207","NC_018407_01184","NC_018408_01234","NC_018409_01200","NC_018410_01158","NC_018411_01180","NC_018412_01215","NC_018413_01168","NC_023030_01259"
"group_760","","hypothetical protein","12","12","1","1","1973","","","","428","428","428","NC_004829_01292","NC_017502_01293","NC_017503_00523","NC_018406_01210","NC_018407_01187","NC_018408_01237","NC_018409_01203","NC_018410_01161","NC_018411_01183","NC_018412_01218","NC_018413_01171","NC_023030_01262"
"group_761","","hypothetical protein","12","12","1","1","1976","","","","443","443","443","NC_004829_01295","NC_017502_01296","NC_017503_00520","NC_018406_01213","NC_018407_01190","NC_018408_01240","NC_018409_01206","NC_018410_01164","NC_018411_01186","NC_018412_01221","NC_018413_01174","NC_023030_01265"
"gapA1","","Glyceraldehyde-3-phosphate dehydrogenase 1","12","12","1","1","1985","","","","476","488","477","NC_004829_01305","NC_017502_01306","NC_017503_00510","NC_018406_01224","NC_018407_01201","NC_018408_01251","NC_018409_01217","NC_018410_01175","NC_018411_01197","NC_018412_01232","NC_018413_01185","NC_023030_01276"
"group_766","","hypothetical protein","12","12","1","1","2002","","","","278","278","278","NC_004829_01313","NC_017502_01314","NC_017503_00501","NC_018406_01233","NC_018407_01210","NC_018408_01260","NC_018409_01226","NC_018410_01184","NC_018411_01206","NC_018412_01241","NC_018413_01194","NC_023030_01285"
"group_767","","hypothetical protein","12","12","1","1","2004","","","","443","443","443","NC_004829_01315","NC_017502_01316","NC_017503_00499","NC_018406_01235","NC_018407_01212","NC_018408_01262","NC_018409_01228","NC_018410_01186","NC_018411_01208","NC_018412_01243","NC_018413_01196","NC_023030_01287"
"valS_2","","Valine--tRNA ligase","12","12","1","1","2006","","","","164","299","287","NC_004829_01316","NC_017502_01317","NC_017503_00498","NC_018406_01238","NC_018407_01215","NC_018408_01265","NC_018409_01231","NC_018410_01189","NC_018411_01211","NC_018412_01246","NC_018413_01199","NC_023030_01290"
"group_770","","hypothetical protein","12","12","1","1","2014","","","","134","134","134","NC_004829_01323","NC_017502_01324","NC_017503_00491","NC_018406_01245","NC_018407_01222","NC_018408_01272","NC_018409_01238","NC_018410_01196","NC_018411_01218","NC_018412_01253","NC_018413_01206","NC_023030_01298"
"group_771","","hypothetical protein","12","12","1","1","2020","","","","344","344","344","NC_004829_01329","NC_017502_01330","NC_017503_00485","NC_018406_01251","NC_018407_01228","NC_018408_01278","NC_018409_01244","NC_018410_01202","NC_018411_01224","NC_018412_01259","NC_018413_01212","NC_023030_01304"
"prs","","Ribose-phosphate pyrophosphokinase","12","12","1","1","2022","","","","977","977","977","NC_004829_01331","NC_017502_01332","NC_017503_00483","NC_018406_01253","NC_018407_01230","NC_018408_01280","NC_018409_01246","NC_018410_01204","NC_018411_01226","NC_018412_01261","NC_018413_01214","NC_023030_01306"
"truA","","tRNA pseudouridine synthase A","12","12","1","1","2024","","","","272","281","272","NC_004829_01333","NC_017502_01334","NC_017503_00481","NC_018406_01254","NC_018407_01231","NC_018408_01281","NC_018409_01247","NC_018410_01205","NC_018411_01227","NC_018412_01262","NC_018413_01215","NC_023030_01308"
"tpiA","","Triosephosphate isomerase","12","12","1","1","2031","","","","644","644","644","NC_004829_01340","NC_017502_01341","NC_017503_00474","NC_018406_01261","NC_018407_01238","NC_018408_01288","NC_018409_01254","NC_018410_01212","NC_018411_01234","NC_018412_01269","NC_018413_01222","NC_023030_01315"
"group_775","","hypothetical protein","12","12","1","1","2043","","","","470","503","500","NC_004829_01353","NC_017502_01354","NC_017503_00462","NC_018406_01274","NC_018407_01251","NC_018408_01301","NC_018409_01267","NC_018410_01225","NC_018411_01247","NC_018412_01282","NC_018413_01235","NC_023030_01328"
"group_776","","hypothetical protein","12","12","1","1","2044","","","","317","317","317","NC_004829_01354","NC_017502_01355","NC_017503_00461","NC_018406_01275","NC_018407_01252","NC_018408_01302","NC_018409_01268","NC_018410_01226","NC_018411_01248","NC_018412_01283","NC_018413_01236","NC_023030_01329"
"mglA_1","","Galactose/methyl galactoside import ATP-binding protein MglA","12","12","1","1","2047","","","","482","530","518","NC_004829_01358","NC_017502_01359","NC_017503_00457","NC_018406_01278","NC_018407_01255","NC_018408_01305","NC_018409_01271","NC_018410_01229","NC_018411_01251","NC_018412_01286","NC_018413_01239","NC_023030_01333"
"group_779","","hypothetical protein","12","12","1","1","2049","","","","281","281","281","NC_004829_01360","NC_017502_01361","NC_017503_00455","NC_018406_01280","NC_018407_01257","NC_018408_01307","NC_018409_01273","NC_018410_01231","NC_018411_01253","NC_018412_01288","NC_018413_01241","NC_023030_01335"
"group_78","","hypothetical protein","12","12","1","1","426","","","","686","722","706","NC_004829_01394","NC_017502_01394","NC_017503_01328","NC_018406_01320","NC_018407_01297","NC_018408_01347","NC_018409_01312","NC_018410_01268","NC_018411_01290","NC_018412_01327","NC_018413_01270","NC_023030_01364"
"group_780","","hypothetical protein","12","12","1","1","2051","","","","380","380","380","NC_004829_01362","NC_017502_01363","NC_017503_00453","NC_018406_01282","NC_018407_01259","NC_018408_01309","NC_018409_01275","NC_018410_01233","NC_018411_01255","NC_018412_01290","NC_018413_01243","NC_023030_01337"
"group_781","","hypothetical protein","12","12","1","1","418","","","","161","176","174","NC_004829_01395","NC_017502_01395","NC_017503_01331","NC_018406_01323","NC_018407_01300","NC_018408_01350","NC_018409_01315","NC_018410_01271","NC_018411_01293","NC_018412_01330","NC_018413_01273","NC_023030_01365"
"group_782","","hypothetical protein","12","12","1","1","412","","","","197","197","197","NC_004829_01401","NC_017502_01401","NC_017503_01337","NC_018406_01329","NC_018407_01306","NC_018408_01356","NC_018409_01321","NC_018410_01277","NC_018411_01299","NC_018412_01336","NC_018413_01279","NC_023030_01371"