Newer
Older
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
Genome Genome ID Accession PATRIC ID RefSeq Locus Tag Alt Locus Tag Feature ID Annotation Feature Type Start End Length Strand FIGfam ID PATRIC genus-specific families (PLfams) PATRIC cross-genus families (PGfams) Protein ID AA Length Gene Symbol Product GO
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1006" "ERDMAN_0994" "VBIMycTub1140_1006" "PATRIC.652616.3.AP012340.CDS.1000411.1001286.fwd" "PATRIC" "CDS" 1000411 1001286 876 "+" "FIG01111221" "PLF_1763_00021396" "PGF_02407721" "BAL64801.1" 291 "ompA" "Outer membrane low permeability porin, OmpATb family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1007" "ERDMAN_0995" "VBIMycTub1140_1007" "PATRIC.652616.3.AP012340.CDS.1001299.1001451.fwd" "PATRIC" "CDS" 1001299 1001451 153 "+" "FIG00692835" "PLF_1763_00003246" "PGF_02411635" "BAL64802.1" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1008" "ERDMAN_0996" "VBIMycTub1140_1008" "PATRIC.652616.3.AP012340.CDS.1001451.1001978.fwd" "PATRIC" "CDS" 1001451 1001978 528 "+" "FIG01334926" "PLF_1763_00003200" "PGF_08225224" "BAL64803.1" 175 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1009" "ERDMAN_0997" "VBIMycTub1140_1009" "PATRIC.652616.3.AP012340.CDS.1001995.1003335.rev" "PATRIC" "CDS" 1001995 1003335 1341 "-" "FIG01405604" "PLF_1763_00000138" "PGF_00050767" "BAL64804.1" 446 "prrB" "Sensor-type histidine kinase prrB (EC 2.7.13.3)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1010" "ERDMAN_0998" "VBIMycTub1140_1010" "PATRIC.652616.3.AP012340.CDS.1003346.1004056.rev" "PATRIC" "CDS" 1003346 1004056 711 "-" "FIG01031438" "PLF_1763_00374132" "PGF_07420062" "BAL64805.1" 236 "prrA" "Two-component transcriptional response regulator, OmpR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1011" "ERDMAN_0999" "VBIMycTub1140_1011" "PATRIC.652616.3.AP012340.CDS.1004187.1005674.rev" "PATRIC" "CDS" 1004187 1005674 1488 "-" "FIG01303802" "PLF_1763_00001421" "PGF_00026289" "BAL64806.1" 495 "accD3" "Acetyl-coenzyme A carboxyl transferase alpha chain (EC 6.4.1.2) / Acetyl-coenzyme A carboxyl transferase beta chain (EC 6.4.1.2)" "GO:0003989|acetyl-CoA carboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1012" "ERDMAN_1000" "VBIMycTub1140_1012" "PATRIC.652616.3.AP012340.CDS.1005701.1006432.fwd" "PATRIC" "CDS" 1005701 1006432 732 "+" "FIG00033206" "PLF_1763_00001109" "PGF_03210551" "BAL64807.1" 243 "echA6" "Enoyl-CoA hydratase (EC 4.2.1.17)" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1013" "ERDMAN_1001" "VBIMycTub1140_1013" "PATRIC.652616.3.AP012340.CDS.1006438.1007556.fwd" "PATRIC" "CDS" 1006438 1007556 1119 "+" "FIG01371060" "PLF_1763_00000156" "PGF_05806155" "BAL64808.1" 372 "Outer membrane protein romA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1014" "ERDMAN_1002" "VBIMycTub1140_1014" "PATRIC.652616.3.AP012340.CDS.1007616.1009229.fwd" "PATRIC" "CDS" 1007616 1009229 1614 "+" "FIG00000747" "PLF_1763_00001846" "PGF_01785064" "BAL64809.1" 537 "Beta-lactamase class C-like and penicillin binding proteins (PBPs) superfamily / DUF3471 domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1015" "ERDMAN_1003" "VBIMycTub1140_1015" "PATRIC.652616.3.AP012340.CDS.1009226.1011619.fwd" "PATRIC" "CDS" 1009226 1011619 2394 "+" "FIG01322067" "PLF_1763_00001274" "PGF_02952136" "BAL64810.1" 797 "ctpE" "Cation-transporting ATPase, E1-E2 family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1016" "ERDMAN_1004" "VBIMycTub1140_1016" "PATRIC.652616.3.AP012340.CDS.1011892.1012050.fwd" "PATRIC" "CDS" 1011892 1012050 159 "+" "FIG00820575" "PLF_1763_00003435" "PGF_02412494" "BAL64811.1" 52 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1017" "ERDMAN_1005" "VBIMycTub1140_1017" "PATRIC.652616.3.AP012340.CDS.1012176.1012355.fwd" "PATRIC" "CDS" 1012176 1012355 180 "+" "FIG00821392" "PLF_1763_00175027" "PGF_02525069" "BAL64812.1" 59 "Uncharacterized protein MSMEG_5635"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1018" "ERDMAN_1006" "VBIMycTub1140_1018" "PATRIC.652616.3.AP012340.CDS.1012361.1012795.fwd" "PATRIC" "CDS" 1012361 1012795 435 "+" "FIG00820675" "PLF_1763_00011206" "PGF_08225224" "BAL64813.1" 144 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1019" "ERDMAN_1007" "VBIMycTub1140_1019" "PATRIC.652616.3.AP012340.CDS.1012893.1013666.fwd" "PATRIC" "CDS" 1012893 1013666 774 "+" "FIG01326450" "PLF_1763_00150744" "PGF_08073198" "BAL64814.1" 257 "Putative hydroxylase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1020" "ERDMAN_1008" "VBIMycTub1140_1020" "PATRIC.652616.3.AP012340.CDS.1013761.1014180.fwd" "PATRIC" "CDS" 1013761 1014180 420 "+" "FIG00662132" "PLF_1763_00002354" "PGF_02937204" "BAL64815.1" 139 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1021" "ERDMAN_1009" "VBIMycTub1140_1021" "PATRIC.652616.3.AP012340.CDS.1014315.1014545.rev" "PATRIC" "CDS" 1014315 1014545 231 "-" "FIG01388643" "PLF_1763_00003405" "PGF_02412477" "BAL64816.1" 76 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1022" "ERDMAN_1010" "VBIMycTub1140_1022" "PATRIC.652616.3.AP012340.CDS.1014712.1016220.rev" "PATRIC" "CDS" 1014712 1016220 1509 "-" "FIG01358959" "PLF_1763_00002206" "PGF_00016956" "BAL64817.1" 502 "Lignostilbene-alpha,beta-dioxygenase and related enzymes"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1023" "ERDMAN_1011" "VBIMycTub1140_1023" "PATRIC.652616.3.AP012340.CDS.1016222.1017460.rev" "PATRIC" "CDS" 1016222 1017460 1239 "-" "FIG01279374" "PLF_1763_00001411" "PGF_00419687" "BAL64818.1" 412 "3-ketoacyl-CoA thiolase (EC 2.3.1.16)" "GO:0003988|acetyl-CoA C-acyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1024" "ERDMAN_1012" "VBIMycTub1140_1024" "PATRIC.652616.3.AP012340.CDS.1017553.1018824.rev" "PATRIC" "CDS" 1017553 1018824 1272 "-" "FIG00013075" "PLF_1763_00002606" "PGF_03080563" "BAL64819.1" 423 "PPE14" "PPE family protein, SVP subgroup => PPE14"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1025" "ERDMAN_1013" "VBIMycTub1140_1025" "PATRIC.652616.3.AP012340.CDS.1018839.1019024.rev" "PATRIC" "CDS" 1018839 1019024 186 "-" "PLF_1763_00003533" "PGF_03106143" "BAL64820.1" 61 "PE7" "PE family protein => PE7"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1026" "ERDMAN_1014" "VBIMycTub1140_1026" "PATRIC.652616.3.AP012340.CDS.1019050.1019193.fwd" "PATRIC" "CDS" 1019050 1019193 144 "+" "FIG00823280" "PLF_1763_00003726" "PGF_02412658" "BAL64821.1" 47 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1027" "ERDMAN_1015" "VBIMycTub1140_1027" "PATRIC.652616.3.AP012340.CDS.1019582.1021363.fwd" "PATRIC" "CDS" 1019582 1021363 1782 "+" "FIG00001690" "PLF_1763_00002759" "PGF_00979882" "BAL64822.1" 593 "betP" "High-affinity choline uptake protein BetT"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1028" "ERDMAN_1016" "VBIMycTub1140_1028" "PATRIC.652616.3.AP012340.CDS.1021360.1021617.fwd" "PATRIC" "CDS" 1021360 1021617 258 "+" "FIG00821312" "PLF_1763_00003792" "PGF_02412782" "BAL64823.1" 85 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1029" "ERDMAN_1017" "VBIMycTub1140_1029" "PATRIC.652616.3.AP012340.CDS.1021895.1022182.fwd" "PATRIC" "CDS" 1021895 1022182 288 "+" "FIG00021257" "PLF_1763_00003102" "PGF_02411065" "BAL64824.1" 95 "FIG032766: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1030" "ERDMAN_1018" "VBIMycTub1140_1030" "PATRIC.652616.3.AP012340.CDS.1022179.1022679.fwd" "PATRIC" "CDS" 1022179 1022679 501 "+" "FIG01303971" "PLF_1763_00003042" "PGF_09675703" "BAL64825.1" 166 "FIG001353: Acetyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1031" "ERDMAN_1019" "VBIMycTub1140_1031" "PATRIC.652616.3.AP012340.CDS.1022665.1022811.rev" "PATRIC" "CDS" 1022665 1022811 147 "-" "FIG00820367" "PLF_1763_00004157" "PGF_02414573" "BAL64826.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1032" "ERDMAN_1021" "VBIMycTub1140_1032" "PATRIC.652616.3.AP012340.CDS.1022992.1024296.rev" "PATRIC" "CDS" 1022992 1024296 1305 "-" "FIG01354948" "PLF_1763_00002965" "PGF_09978608" "BAL64827.1" 434 "Transposase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1033" "ERDMAN_1022" "VBIMycTub1140_1033" "PATRIC.652616.3.AP012340.CDS.1024632.1025180.fwd" "PATRIC" "CDS" 1024632 1025180 549 "+" "FIG01329993" "PLF_1763_00002626" "PGF_01803500" "BAL64828.1" 182 "Resolvase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1034" "ERDMAN_1023" "VBIMycTub1140_1034" "PATRIC.652616.3.AP012340.CDS.1025192.1026832.fwd" "PATRIC" "CDS" 1025192 1026832 1641 "+" "FIG01314079" "PLF_1763_00003010" "PGF_08225224" "BAL64829.1" 546 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1035" "ERDMAN_1024" "VBIMycTub1140_1035" "PATRIC.652616.3.AP012340.CDS.1027008.1028072.rev" "PATRIC" "CDS" 1027008 1028072 1065 "-" "FIG00823129" "PLF_1763_00290311" "PGF_08225224" "BAL64830.1" 354 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1036" "ERDMAN_1025" "VBIMycTub1140_1036" "PATRIC.652616.3.AP012340.CDS.1028073.1029359.rev" "PATRIC" "CDS" 1028073 1029359 1287 "-" "FIG00554286" "PLF_1763_00000777" "PGF_00905234" "BAL64831.1" 428 "mntH" "Manganese transport protein MntH" "GO:0005215|transporter activity;GO:0006810|transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.110" "ERDMAN_0110" "VBIMycTub1140_0110" "PATRIC.652616.3.AP012340.CDS.102841.103794.rev" "PATRIC" "CDS" 102841 103794 954 "-" "FIG00820827" "PLF_1763_00042741" "PGF_05503590" "BAL63927.1" 317 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1037" "ERDMAN_1026" "VBIMycTub1140_1037" "PATRIC.652616.3.AP012340.CDS.1029391.1030128.rev" "PATRIC" "CDS" 1029391 1030128 738 "-" "FIG01313164" "PLF_1763_00002855" "PGF_00070873" "BAL64832.1" 245 "BRAMP"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1038" "ERDMAN_1027" "VBIMycTub1140_1038" "PATRIC.652616.3.AP012340.CDS.1030205.1031281.rev" "PATRIC" "CDS" 1030205 1031281 1077 "-" "FIG00820001" "PLF_1763_00000707" "PGF_04150638" "BAL64833.1" 358 "Oxidoreductase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1039" "ERDMAN_1028" "VBIMycTub1140_1039" "PATRIC.652616.3.AP012340.CDS.1031335.1032126.rev" "PATRIC" "CDS" 1031335 1032126 792 "-" "FIG01308941" "PLF_1763_00001132" "PGF_10532194" "BAL64834.1" 263 "Oxidoreductase, short-chain dehydrogenase/reductase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1040" "ERDMAN_1029" "VBIMycTub1140_1040" "PATRIC.652616.3.AP012340.CDS.1032398.1033510.fwd" "PATRIC" "CDS" 1032398 1033510 1113 "+" "FIG00010508" "PLF_1763_00000518" "PGF_07668761" "BAL64835.1" 370 "pstS3" "Phosphate ABC transporter, substrate-binding protein PstS (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1041" "ERDMAN_1030" "VBIMycTub1140_1041" "PATRIC.652616.3.AP012340.CDS.1033523.1034497.fwd" "PATRIC" "CDS" 1033523 1034497 975 "+" "FIG00018561" "PLF_1763_00001708" "PGF_02405545" "BAL64836.1" 324 "pstC2" "Phosphate ABC transporter, permease protein PstC (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1042" "ERDMAN_1031" "VBIMycTub1140_1042" "PATRIC.652616.3.AP012340.CDS.1034494.1035408.fwd" "PATRIC" "CDS" 1034494 1035408 915 "+" "FIG00083946" "PLF_1763_00001754" "PGF_01072302" "BAL64837.1" 304 "pstA1" "Phosphate ABC transporter, permease protein PstA (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1043" "ERDMAN_1032" "VBIMycTub1140_1043" "PATRIC.652616.3.AP012340.CDS.1035415.1037409.rev" "PATRIC" "CDS" 1035415 1037409 1995 "-" "FIG01395884" "PLF_1763_00000122" "PGF_00051509" "BAL64838.1" 664 "pknD" "Serine/threonine-protein kinase PknD (EC 2.7.11.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1044" "ERDMAN_1033" "VBIMycTub1140_1044" "PATRIC.652616.3.AP012340.CDS.1037431.1038543.rev" "PATRIC" "CDS" 1037431 1038543 1113 "-" "FIG00010508" "PLF_1763_00002126" "PGF_07668761" "BAL64839.1" 370 "pstS2" "Phosphate ABC transporter, substrate-binding protein PstS (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.111" "ERDMAN_0111" "VBIMycTub1140_0111" "PATRIC.652616.3.AP012340.CDS.103787.103939.fwd" "PATRIC" "CDS" 103787 103939 153 "+" "FIG01653443" "PLF_1763_00000014" "PGF_03982285" "BAL63928.1" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1045" "ERDMAN_1034" "VBIMycTub1140_1045" "PATRIC.652616.3.AP012340.CDS.1038759.1039589.fwd" "PATRIC" "CDS" 1038759 1039589 831 "+" "FIG00011114" "PLF_1763_00000162" "PGF_06213055" "BAL64840.1" 276 "pstB" "Phosphate ABC transporter, ATP-binding protein PstB (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.112" "ERDMAN_0112" "VBIMycTub1140_0112" "PATRIC.652616.3.AP012340.CDS.103936.104232.rev" "PATRIC" "CDS" 103936 104232 297 "-" "FIG00820827" "PLF_1763_00003915" "PGF_05503590" "BAL63929.1" 98 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1046" "ERDMAN_1035" "VBIMycTub1140_1046" "PATRIC.652616.3.AP012340.CDS.1039610.1040734.fwd" "PATRIC" "CDS" 1039610 1040734 1125 "+" "FIG00010508" "PLF_1763_00001734" "PGF_07668761" "BAL64841.1" 374 "pstS1" "Phosphate ABC transporter, substrate-binding protein PstS (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1047" "ERDMAN_1036" "VBIMycTub1140_1047" "PATRIC.652616.3.AP012340.CDS.1040794.1041810.fwd" "PATRIC" "CDS" 1040794 1041810 1017 "+" "FIG00018561" "PLF_1763_00002637" "PGF_02405545" "BAL64842.1" 338 "pstC1" "Phosphate ABC transporter, permease protein PstC (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1048" "ERDMAN_1037" "VBIMycTub1140_1048" "PATRIC.652616.3.AP012340.CDS.1041812.1042717.fwd" "PATRIC" "CDS" 1041812 1042717 906 "+" "FIG00083946" "PLF_1763_00002078" "PGF_01072302" "BAL64843.1" 301 "pstA2" "Phosphate ABC transporter, permease protein PstA (TC 3.A.1.7.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1049" "ERDMAN_1038" "VBIMycTub1140_1049" "PATRIC.652616.3.AP012340.CDS.1042694.1043569.rev" "PATRIC" "CDS" 1042694 1043569 876 "-" "FIG00001754" "PLF_1763_00001062" "PGF_03152833" "BAL64844.1" 291 "Ku domain protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1050" "ERDMAN_1039" "VBIMycTub1140_1050" "PATRIC.652616.3.AP012340.CDS.1043631.1045910.fwd" "PATRIC" "CDS" 1043631 1045910 2280 "+" "FIG00002268" "PLF_1763_00000794" "PGF_00017227" "BAL64845.1" 759 "ATP-dependent DNA ligase (EC 6.5.1.1) clustered with Ku protein, LigD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.113" "ERDMAN_0113" "VBIMycTub1140_0113" "PATRIC.652616.3.AP012340.CDS.104455.105846.fwd" "PATRIC" "CDS" 104455 105846 1392 "+" "FIG00013075" "PLF_1763_00037180" "PGF_03142458" "BAL63930.1" 463 "PPE1" "PPE family protein, PPW subgroup => PPE1"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1051" "ERDMAN_1040" "VBIMycTub1140_1051" "PATRIC.652616.3.AP012340.CDS.1045907.1047841.fwd" "PATRIC" "CDS" 1045907 1047841 1935 "+" "FIG01954607" "PLF_1763_00001832" "PGF_00006512" "BAL64846.1" 644 "Fumarylacetoacetate hydrolase family protein / MBL-fold metallo-hydrolase superfamily"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1052" "ERDMAN_1041" "VBIMycTub1140_1052" "PATRIC.652616.3.AP012340.CDS.1048088.1048954.rev" "PATRIC" "CDS" 1048088 1048954 867 "-" "FIG01353725" "PLF_1763_00001257" "PGF_03023540" "BAL64847.1" 288 "Hydride transferase 1 (Fragment)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.8" "ERDMAN_0008" "VBIMycTub1140_0008" "PATRIC.652616.3.AP012340.CDS.10484.10828.fwd" "PATRIC" "CDS" 10484 10828 345 "+" "FIG00735262" "PLF_1763_00000963" "PGF_00003705" "BAL63828.1" 114 "FIG187021: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1053" "ERDMAN_1042" "VBIMycTub1140_1053" "PATRIC.652616.3.AP012340.CDS.1049039.1049803.rev" "PATRIC" "CDS" 1049039 1049803 765 "-" "FIG00823383" "PLF_1763_00091612" "PGF_08225224" "BAL64848.1" 254 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1054" "ERDMAN_1043" "VBIMycTub1140_1054" "PATRIC.652616.3.AP012340.CDS.1050112.1050225.rev" "PATRIC" "CDS" 1050112 1050225 114 "-" "FIG01329647" "PLF_1763_00003290" "PGF_02411971" "BAL64849.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1055" "ERDMAN_1044" "VBIMycTub1140_1055" "PATRIC.652616.3.AP012340.CDS.1050191.1051231.rev" "PATRIC" "CDS" 1050191 1051231 1041 "-" "FIG00975774" "PLF_1763_00002379" "PGF_03395814" "BAL64850.1" 346 "Cyclohexanone monooxygenase (EC 1.14.13.22)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1056" "ERDMAN_1045" "VBIMycTub1140_1056" "PATRIC.652616.3.AP012340.CDS.1051254.1051736.fwd" "PATRIC" "CDS" 1051254 1051736 483 "+" "FIG00035634" "PLF_1763_00000913" "PGF_05740384" "BAL64851.1" 160 "Formamidopyrimidine-DNA glycosylase (EC 3.2.2.23)" "GO:0008534|oxidized purine base lesion DNA N-glycosylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1057" "ERDMAN_1046" "VBIMycTub1140_1057" "PATRIC.652616.3.AP012340.CDS.1051754.1052503.fwd" "PATRIC" "CDS" 1051754 1052503 750 "+" "FIG01955289" "PLF_1763_00001280" "PGF_10357867" "BAL64852.1" 249 "Short chain dehydrogenase family protein Rv0945"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1058" "ERDMAN_1047" "VBIMycTub1140_1058" "PATRIC.652616.3.AP012340.CDS.1052519.1054180.rev" "PATRIC" "CDS" 1052519 1054180 1662 "-" "FIG00000245" "PLF_1763_00000505" "PGF_10505717" "BAL64853.1" 553 "pgi" "Glucose-6-phosphate isomerase (EC 5.3.1.9)" "GO:0004347|glucose-6-phosphate isomerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1059" "ERDMAN_1048" "VBIMycTub1140_1059" "PATRIC.652616.3.AP012340.CDS.1054281.1054469.rev" "PATRIC" "CDS" 1054281 1054469 189 "-" "FIG00820065" "PLF_1763_00003665" "PGF_00927695" "BAL64854.1" 62 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1060" "VBIMycTub1140_1060" "PATRIC.652616.3.AP012340.CDS.1054795.1054917.rev" "PATRIC" "CDS" 1054795 1054917 123 "-" "PLF_1763_00003821" "PGF_02412870" 40 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1061" "ERDMAN_1049" "VBIMycTub1140_1061" "PATRIC.652616.3.AP012340.CDS.1054912.1055136.fwd" "PATRIC" "CDS" 1054912 1055136 225 "+" "FIG00820093" "PLF_1763_00004039" "PGF_02413761" "BAL64855.1" 74 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1062" "ERDMAN_1050" "VBIMycTub1140_1062" "PATRIC.652616.3.AP012340.CDS.1055141.1055413.rev" "PATRIC" "CDS" 1055141 1055413 273 "-" "FIG00001498" "PLF_1763_00001130" "PGF_06895470" "BAL64856.1" 90 "Chorismate mutase I (EC 5.4.99.5)" "GO:0004106|chorismate mutase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1063" "ERDMAN_1051" "VBIMycTub1140_1063" "PATRIC.652616.3.AP012340.CDS.1055755.1058070.fwd" "PATRIC" "CDS" 1055755 1058070 2316 "+" "FIG00000372" "PLF_1763_00000306" "PGF_10471233" "BAL64857.1" 771 "uvrD1" "ATP-dependent DNA helicase UvrD/PcrA (EC 3.6.4.12)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1064" "ERDMAN_1052" "VBIMycTub1140_1064" "PATRIC.652616.3.AP012340.CDS.1058151.1059182.rev" "PATRIC" "CDS" 1058151 1059182 1032 "-" "FIG00821878" "PLF_1763_00341244" "PGF_00032080" "BAL64858.1" 343 "Phage peptidoglycan binding endopeptidase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.114" "ERDMAN_0114" "VBIMycTub1140_0114" "PATRIC.652616.3.AP012340.CDS.105865.106734.fwd" "PATRIC" "CDS" 105865 106734 870 "+" "FIG01321859" "PLF_1763_00002060" "PGF_00409913" "BAL63931.1" 289 "putative oxidoreductase Rv0097"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1065" "VBIMycTub1140_1065" "PATRIC.652616.3.AP012340.CDS.1059248.1059364.fwd" "PATRIC" "CDS" 1059248 1059364 117 "+" "FIG00827313" "PLF_1763_00004158" "PGF_02414574" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1066" "ERDMAN_1053" "VBIMycTub1140_1066" "PATRIC.652616.3.AP012340.CDS.1059459.1060622.fwd" "PATRIC" "CDS" 1059459 1060622 1164 "+" "FIG00000337" "PLF_1763_00000312" "PGF_00054528" "BAL64859.1" 387 "sucC" "Succinyl-CoA ligase [ADP-forming] beta chain (EC 6.2.1.5)" "GO:0004775|succinate-CoA ligase (ADP-forming) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1067" "ERDMAN_1054" "VBIMycTub1140_1067" "PATRIC.652616.3.AP012340.CDS.1060635.1061546.fwd" "PATRIC" "CDS" 1060635 1061546 912 "+" "FIG00038611" "PLF_1763_00001352" "PGF_00853393" "BAL64860.1" 303 "sucD" "Succinyl-CoA ligase [ADP-forming] alpha chain (EC 6.2.1.5)" "GO:0004775|succinate-CoA ligase (ADP-forming) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1068" "ERDMAN_1055" "VBIMycTub1140_1068" "PATRIC.652616.3.AP012340.CDS.1061609.1062457.rev" "PATRIC" "CDS" 1061609 1062457 849 "-" "FIG01353725" "PLF_1763_00001512" "PGF_05086807" "BAL64861.1" 282 "N5,N10-methylenetetrahydromethanopterin reductase-related protein, MSMEG5498 family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1069" "ERDMAN_1056" "VBIMycTub1140_1069" "PATRIC.652616.3.AP012340.CDS.1062622.1063533.fwd" "PATRIC" "CDS" 1062622 1063533 912 "+" "FIG00820205" "PLF_1763_00008068" "PGF_00952582" "BAL64862.1" 303 "antigen 34 kDa"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1070" "ERDMAN_1057" "VBIMycTub1140_1070" "PATRIC.652616.3.AP012340.CDS.1063663.1064940.fwd" "PATRIC" "CDS" 1063663 1064940 1278 "+" "FIG00021574" "PLF_1763_00000571" "PGF_02421137" "BAL64863.1" 425 "FIG021574: Possible membrane protein related to de Novo purine biosynthesis"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1071" "ERDMAN_1058" "VBIMycTub1140_1071" "PATRIC.652616.3.AP012340.CDS.1065191.1065703.fwd" "PATRIC" "CDS" 1065191 1065703 513 "+" "FIG00000253" "PLF_1763_00000870" "PGF_00033968" "BAL64864.1" 170 "purN" "Phosphoribosylglycinamide formyltransferase (EC 2.1.2.2)" "GO:0004644|phosphoribosylglycinamide formyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1072" "ERDMAN_1059" "VBIMycTub1140_1072" "PATRIC.652616.3.AP012340.CDS.1065700.1067271.fwd" "PATRIC" "CDS" 1065700 1067271 1572 "+" "FIG00000275" "PLF_1763_00000299" "PGF_00013509" "BAL64865.1" 523 "purH" "IMP cyclohydrolase (EC 3.5.4.10) / Phosphoribosylaminoimidazolecarboxamide formyltransferase (EC 2.1.2.3)" "GO:0003937|IMP cyclohydrolase activity;GO:0004643|phosphoribosylaminoimidazolecarboxamide formyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.115" "ERDMAN_0115" "VBIMycTub1140_0115" "PATRIC.652616.3.AP012340.CDS.106731.107282.fwd" "PATRIC" "CDS" 106731 107282 552 "+" "FIG00822554" "PLF_1763_00002175" "PGF_01691792" "BAL63932.1" 183 "hypothetical protein Rv0098"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1073" "ERDMAN_1060" "VBIMycTub1140_1073" "PATRIC.652616.3.AP012340.CDS.1067405.1068757.fwd" "PATRIC" "CDS" 1067405 1068757 1353 "+" "FIG00019368" "PLF_1763_00001683" "PGF_00018577" "BAL64866.1" 450 "Magnesium chelatase, subunit ChlI (EC 6.6.1.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1074" "ERDMAN_1061" "VBIMycTub1140_1074" "PATRIC.652616.3.AP012340.CDS.1068798.1070768.fwd" "PATRIC" "CDS" 1068798 1070768 1971 "+" "FIG00019045" "PLF_1763_00001565" "PGF_00002584" "BAL64867.1" 656 "FIG019045: long form Mg-chelase associated protein with vWA domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1075" "ERDMAN_1062" "VBIMycTub1140_1075" "PATRIC.652616.3.AP012340.CDS.1070822.1071043.fwd" "PATRIC" "CDS" 1070822 1071043 222 "+" "FIG00037033" "PLF_1763_00003369" "PGF_02412450" "BAL64868.1" 73 "antitoxin VapB9 @ Antitoxin 1"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1076" "ERDMAN_1063" "VBIMycTub1140_1076" "PATRIC.652616.3.AP012340.CDS.1071040.1071423.fwd" "PATRIC" "CDS" 1071040 1071423 384 "+" "FIG00033999" "PLF_1763_00003856" "PGF_00179109" "BAL64869.1" 127 "toxin VapC9 @ Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1077" "ERDMAN_1064" "VBIMycTub1140_1077" "PATRIC.652616.3.AP012340.CDS.1071575.1071916.fwd" "PATRIC" "CDS" 1071575 1071916 342 "+" "FIG01315135" "PLF_1763_00003386" "PGF_02412461" "BAL64870.1" 113 "Integral membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1078" "ERDMAN_1065" "VBIMycTub1140_1078" "PATRIC.652616.3.AP012340.CDS.1071935.1072609.rev" "PATRIC" "CDS" 1071935 1072609 675 "-" "FIG00947911" "PLF_1763_00002571" "PGF_00168159" "BAL64871.1" 224 "lprP" "Lipoprotein LprP"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1079" "ERDMAN_1066" "VBIMycTub1140_1079" "PATRIC.652616.3.AP012340.CDS.1072606.1072746.rev" "PATRIC" "CDS" 1072606 1072746 141 "-" "FIG00822502" "PLF_1763_00003640" "PGF_08225224" "BAL64872.1" 46 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1080" "ERDMAN_1067" "VBIMycTub1140_1080" "PATRIC.652616.3.AP012340.CDS.1072792.1073412.rev" "PATRIC" "CDS" 1072792 1073412 621 "-" "FIG01353358" "PLF_1763_00002303" "PGF_08225224" "BAL64873.1" 206 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.116" "ERDMAN_0116" "VBIMycTub1140_0116" "PATRIC.652616.3.AP012340.CDS.107332.108909.fwd" "PATRIC" "CDS" 107332 108909 1578 "+" "FIG00018699" "PLF_1763_00001977" "PGF_02406099" "BAL63933.1" 525 "fadD10" "Polyketide synthase modules and related proteins @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD10" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1081" "ERDMAN_1068" "VBIMycTub1140_1081" "PATRIC.652616.3.AP012340.CDS.1073488.1074372.rev" "PATRIC" "CDS" 1073488 1074372 885 "-" "FIG01306568" "PLF_1763_00000002" "PGF_01000105" "BAL64874.1" 294 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1082" "ERDMAN_1069" "VBIMycTub1140_1082" "PATRIC.652616.3.AP012340.CDS.1074423.1074749.rev" "PATRIC" "CDS" 1074423 1074749 327 "-" "FIG01306568" "PLF_1763_00013371" "PGF_12695291" "BAL64875.1" 108 "Insertion element IS6110 (Mycobacterium tuberculosis) transposase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1083" "ERDMAN_1070" "VBIMycTub1140_1083" "PATRIC.652616.3.AP012340.CDS.1074798.1074950.rev" "PATRIC" "CDS" 1074798 1074950 153 "-" "FIG01353358" "PLF_1763_00002303" "PGF_08225224" "BAL64876.1" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1084" "ERDMAN_1071" "VBIMycTub1140_1084" "PATRIC.652616.3.AP012340.CDS.1075049.1075531.rev" "PATRIC" "CDS" 1075049 1075531 483 "-" "FIG00821695" "PLF_1763_00004102" "PGF_08225224" "BAL64877.1" 160 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1085" "ERDMAN_1072" "VBIMycTub1140_1085" "PATRIC.652616.3.AP012340.CDS.1075631.1075990.rev" "PATRIC" "CDS" 1075631 1075990 360 "-" "FIG00820455" "PLF_1763_00003012" "PGF_08225224" "BAL64878.1" 119 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1086" "ERDMAN_1073" "VBIMycTub1140_1086" "PATRIC.652616.3.AP012340.CDS.1076086.1076688.rev" "PATRIC" "CDS" 1076086 1076688 603 "-" "FIG00821091" "PLF_1763_00000117" "PGF_02400432" "BAL64879.1" 200 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1087" "ERDMAN_1074" "VBIMycTub1140_1087" "PATRIC.652616.3.AP012340.CDS.1076828.1077187.fwd" "PATRIC" "CDS" 1076828 1077187 360 "+" "FIG00821817" "PLF_1763_00002926" "PGF_00047642" "BAL64880.1" 119 "Repressor CsoR of the copZA operon"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1088" "ERDMAN_1075" "VBIMycTub1140_1088" "PATRIC.652616.3.AP012340.CDS.1077244.1077540.fwd" "PATRIC" "CDS" 1077244 1077540 297 "+" "FIG00822348" "PLF_1763_00003587" "PGF_08225224" "BAL64881.1" 98 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1089" "ERDMAN_1076" "VBIMycTub1140_1089" "PATRIC.652616.3.AP012340.CDS.1077530.1079908.fwd" "PATRIC" "CDS" 1077530 1079908 2379 "+" "PLF_1763_00026381" "PGF_07109475" "BAL64882.1" 792 "ctpV" "Lead, cadmium, zinc and mercury transporting ATPase (EC 3.6.3.3) (EC 3.6.3.5); Copper-translocating P-type ATPase (EC 3.6.3.4)" "GO:0008551|cadmium-exporting ATPase activity;GO:0016463|zinc-exporting ATPase activity;GO:0004008|copper-exporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1090" "ERDMAN_1077" "VBIMycTub1140_1090" "PATRIC.652616.3.AP012340.CDS.1079905.1080537.fwd" "PATRIC" "CDS" 1079905 1080537 633 "+" "FIG00829633" "PLF_1763_00003203" "PGF_05831361" "BAL64883.1" 210 "Integral membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1091" "ERDMAN_1078" "VBIMycTub1140_1091" "PATRIC.652616.3.AP012340.CDS.1080628.1081437.rev" "PATRIC" "CDS" 1080628 1081437 810 "-" "FIG00138403" "PLF_1763_00001294" "PGF_02944868" "BAL64884.1" 269 "echA7" "Isohexenylglutaconyl-CoA hydratase (EC 4.2.1.57)" "GO:0050005|isohexenylglutaconyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1092" "ERDMAN_1079" "VBIMycTub1140_1092" "PATRIC.652616.3.AP012340.CDS.1081437.1082603.rev" "PATRIC" "CDS" 1081437 1082603 1167 "-" "FIG00009849" "PLF_1763_00001669" "PGF_03617831" "BAL64885.1" 388 "fadE12" "Acyl-CoA dehydrogenase (EC 1.3.8.-), Mycobacterial subgroup FadE12 in terpen utilization operon"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1093" "ERDMAN_1080" "VBIMycTub1140_1093" "PATRIC.652616.3.AP012340.CDS.1082600.1084612.rev" "PATRIC" "CDS" 1082600 1084612 2013 "-" "FIG00183535" "PLF_1763_00000967" "PGF_01726530" "BAL64886.1" 670 "accA2" "Geranyl-CoA carboxylase biotin-containing subunit (EC 6.4.1.5)" "GO:0047925|geranoyl-CoA carboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1094" "ERDMAN_1081" "VBIMycTub1140_1094" "PATRIC.652616.3.AP012340.CDS.1084609.1086204.rev" "PATRIC" "CDS" 1084609 1086204 1596 "-" "FIG00138249" "PLF_1763_00000172" "PGF_00007519" "BAL64887.1" 531 "accD2" "Geranyl-CoA carboxylase carboxyl transferase subunit (EC 6.4.1.5)" "GO:0047925|geranoyl-CoA carboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1095" "ERDMAN_1082" "VBIMycTub1140_1095" "PATRIC.652616.3.AP012340.CDS.1086201.1087349.rev" "PATRIC" "CDS" 1086201 1087349 1149 "-" "FIG00138712" "PLF_1763_00001032" "PGF_02421384" "BAL64888.1" 382 "fadE13" "Citronellyl-CoA dehydrogenase @ Acyl-CoA dehydrogenase (EC 1.3.8.-), Mycobacterial subgroup FadE13"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1096" "ERDMAN_1083" "VBIMycTub1140_1096" "PATRIC.652616.3.AP012340.CDS.1087346.1088980.rev" "PATRIC" "CDS" 1087346 1088980 1635 "-" "FIG00839682" "PLF_1763_00054249" "PGF_00488498" "BAL64889.1" 544 "Terpene utilization protein AtuA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.117" "ERDMAN_0117" "VBIMycTub1140_0117" "PATRIC.652616.3.AP012340.CDS.108914.109150.fwd" "PATRIC" "CDS" 108914 109150 237 "+" "FIG01311984" "PLF_1763_00002250" "PGF_00403723" "BAL63934.1" 78 "pp-binding family protein Rv0100"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1097" "ERDMAN_1084" "VBIMycTub1140_1097" "PATRIC.652616.3.AP012340.CDS.1089226.1091202.fwd" "PATRIC" "CDS" 1089226 1091202 1977 "+" "FIG01274276" "PLF_1763_00147275" "PGF_03055009" "BAL64890.1" 658 "PE_PGRS family protein => PE_PGRS16"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1098" "ERDMAN_1085" "VBIMycTub1140_1098" "PATRIC.652616.3.AP012340.CDS.1091159.1091746.fwd" "PATRIC" "CDS" 1091159 1091746 588 "+" "FIG01274276" "PLF_1763_00154739" "PGF_03055009" "BAL64891.1" 195 "PE_PGRS16" "PE_PGRS family protein => PE_PGRS16"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.118" "ERDMAN_0118" "VBIMycTub1140_0118" "PATRIC.652616.3.AP012340.CDS.109132.116670.fwd" "PATRIC" "CDS" 109132 116670 7539 "+" "FIG00018699" "PLF_1763_00005861" "PGF_00026271" "BAL63935.1" 2512 "nrp" "Nonribosomal peptide synthetase in FadD10 cluster"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1099" "ERDMAN_1086" "VBIMycTub1140_1099" "PATRIC.652616.3.AP012340.CDS.1091963.1093015.rev" "PATRIC" "CDS" 1091963 1093015 1053 "-" "FIG01326805" "PLF_1763_00151612" "PGF_02936770" "BAL64892.1" 350 "PE_PGRS family protein => PE_PGRS17"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1100" "ERDMAN_1087" "VBIMycTub1140_1100" "PATRIC.652616.3.AP012340.CDS.1093244.1093357.fwd" "PATRIC" "CDS" 1093244 1093357 114 "+" "FIG01397772" "PLF_1763_00003667" "PGF_01049005" "BAL64893.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1101" "ERDMAN_1088" "VBIMycTub1140_1101" "PATRIC.652616.3.AP012340.CDS.1093500.1093673.fwd" "PATRIC" "CDS" 1093500 1093673 174 "+" "FIG00006632" "PLF_1763_00001342" "PGF_04792416" "BAL64894.1" 57 "rpmF" "LSU ribosomal protein L32p @ LSU ribosomal protein L32p, zinc-independent"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1102" "ERDMAN_1089" "VBIMycTub1140_1102" "PATRIC.652616.3.AP012340.CDS.1093692.1094411.rev" "PATRIC" "CDS" 1093692 1094411 720 "-" "PLF_1763_00154728" "PGF_03034227" "BAL64895.1" 239 "PE_PGRS family protein => PE_PGRS18"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1103" "ERDMAN_1090" "VBIMycTub1140_1103" "PATRIC.652616.3.AP012340.CDS.1094408.1094539.rev" "PATRIC" "CDS" 1094408 1094539 132 "-" "PLF_1763_00154728" "PGF_03034227" "BAL64896.1" 43 "PE_PGRS family protein => PE_PGRS18"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1104" "VBIMycTub1140_1104" "PATRIC.652616.3.AP012340.CDS.1094536.1095549.rev" "PATRIC" "CDS" 1094536 1095549 1014 "-" "FIG01326805" "PLF_1763_00154728" "PGF_03034227" 337 "PE_PGRS family protein => PE_PGRS18"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1105" "ERDMAN_1091" "VBIMycTub1140_1105" "PATRIC.652616.3.AP012340.CDS.1095875.1096561.fwd" "PATRIC" "CDS" 1095875 1096561 687 "+" "FIG01956054" "PLF_1763_00001245" "PGF_00023514" "BAL64897.1" 228 "mprA" "Mycobacterial persistence response regulator MprA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1106" "ERDMAN_1092" "VBIMycTub1140_1106" "PATRIC.652616.3.AP012340.CDS.1096633.1098075.fwd" "PATRIC" "CDS" 1096633 1098075 1443 "+" "FIG00000846" "PLF_1763_00084786" "PGF_02567701" "BAL64898.1" 480 "mprB" "Two component system sensor histidine kinase MprB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1107" "ERDMAN_1093" "VBIMycTub1140_1107" "PATRIC.652616.3.AP012340.CDS.1098419.1099513.fwd" "PATRIC" "CDS" 1098419 1099513 1095 "+" "FIG00820933" "PLF_1763_00005741" "PGF_01380505" "BAL64899.1" 364 "pepD" "Probable secreted or membrane serine protease Rv0983"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1108" "ERDMAN_1094" "VBIMycTub1140_1108" "PATRIC.652616.3.AP012340.CDS.1099513.1100058.fwd" "PATRIC" "CDS" 1099513 1100058 546 "+" "FIG00032229" "PLF_1763_00007695" "PGF_00022507" "BAL64900.1" 181 "moaB2" "Molybdopterin adenylyltransferase (EC 2.7.7.75)" "GO:0061598|molybdopterin adenylyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.9" "VBIMycTub1140_0009" "PATRIC.652616.3.AP012340.CDS.10999.11121.fwd" "PATRIC" "CDS" 10999 11121 123 "+" "FIG00820624" "PLF_1763_00003564" "PGF_02412564" 40 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1109" "ERDMAN_1095" "VBIMycTub1140_1109" "PATRIC.652616.3.AP012340.CDS.1100078.1100533.rev" "PATRIC" "CDS" 1100078 1100533 456 "-" "FIG00000518" "PLF_1763_00001478" "PGF_01171887" "BAL64901.1" 151 "mscL" "Large-conductance mechanosensitive channel" "GO:0005216|ion channel activity;GO:0006810|transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1110" "ERDMAN_1096" "VBIMycTub1140_1110" "PATRIC.652616.3.AP012340.CDS.1100856.1101602.fwd" "PATRIC" "CDS" 1100856 1101602 747 "+" "FIG00010870" "PLF_1763_00002958" "PGF_01001762" "BAL64902.1" 248 "AttE component of AttEFGH ABC transport system"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1111" "ERDMAN_1097" "VBIMycTub1140_1111" "PATRIC.652616.3.AP012340.CDS.1101595.1103661.fwd" "PATRIC" "CDS" 1101595 1103661 2067 "+" "FIG00009918" "PLF_1763_00001794" "PGF_00068031" "BAL64903.1" 688 "AttF component of AttEFGH ABC transport system / AttG component of AttEFGH ABC transport system"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1112" "ERDMAN_1098" "VBIMycTub1140_1112" "PATRIC.652616.3.AP012340.CDS.1103739.1104161.fwd" "PATRIC" "CDS" 1103739 1104161 423 "+" "PLF_1763_00001794" "PGF_00068031" "BAL64904.1" 140 "AttF component of AttEFGH ABC transport system / AttG component of AttEFGH ABC transport system"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1113" "ERDMAN_1099" "VBIMycTub1140_1113" "PATRIC.652616.3.AP012340.CDS.1104183.1105328.fwd" "PATRIC" "CDS" 1104183 1105328 1146 "+" "FIG00029303" "PLF_1763_00002872" "PGF_03862972" "BAL64905.1" 381 "AttH component of AttEFGH ABC transport system"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1114" "ERDMAN_1100" "VBIMycTub1140_1114" "PATRIC.652616.3.AP012340.CDS.1105457.1106434.rev" "PATRIC" "CDS" 1105457 1106434 978 "-" "FIG01306569" "PLF_1763_00002791" "PGF_00053513" "BAL64906.1" 325 "grcC2" "Solanesyl diphosphate synthase (EC 2.5.1.11)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1115" "ERDMAN_1101" "VBIMycTub1140_1115" "PATRIC.652616.3.AP012340.CDS.1106495.1107151.rev" "PATRIC" "CDS" 1106495 1107151 657 "-" "FIG00821617" "PLF_1763_00007267" "PGF_05635917" "BAL64907.1" 218 "Heat shock protein 22.5 (Hsp22.5)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1116" "ERDMAN_1102" "VBIMycTub1140_1116" "PATRIC.652616.3.AP012340.CDS.1107224.1107556.rev" "PATRIC" "CDS" 1107224 1107556 333 "-" "FIG00661702" "PLF_1763_00003195" "PGF_03113204" "BAL64908.1" 110 "Putative regulatory protein, FmdB family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1117" "ERDMAN_1103" "VBIMycTub1140_1117" "PATRIC.652616.3.AP012340.CDS.1107630.1108301.rev" "PATRIC" "CDS" 1107630 1108301 672 "-" "FIG00000252" "PLF_1763_00342508" "PGF_04457297" "BAL64909.1" 223 "5-formyltetrahydrofolate cyclo-ligase (EC 6.3.3.2)" "GO:0030272|5-formyltetrahydrofolate cyclo-ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1118" "ERDMAN_1104" "VBIMycTub1140_1118" "PATRIC.652616.3.AP012340.CDS.1108324.1109244.fwd" "PATRIC" "CDS" 1108324 1109244 921 "+" "FIG00000108" "PLF_1763_00000391" "PGF_00064393" "BAL64910.1" 306 "galU" "UTP--glucose-1-phosphate uridylyltransferase (EC 2.7.7.9)" "GO:0003983|UTP:glucose-1-phosphate uridylyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1119" "ERDMAN_1105" "VBIMycTub1140_1119" "PATRIC.652616.3.AP012340.CDS.1109321.1110601.fwd" "PATRIC" "CDS" 1109321 1110601 1281 "+" "FIG00018218" "PLF_1763_00000314" "PGF_09188652" "BAL64911.1" 426 "moeA1" "Molybdopterin molybdenumtransferase (EC 2.10.1.1)" "GO:0061599|molybdopterin molybdotransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1120" "ERDMAN_1106" "VBIMycTub1140_1120" "PATRIC.652616.3.AP012340.CDS.1110664.1111275.fwd" "PATRIC" "CDS" 1110664 1111275 612 "+" "FIG00000756" "PLF_1763_00000845" "PGF_01670799" "BAL64912.1" 203 "rimJ" "Ribosomal-protein-S5p-alanine acetyltransferase (EC 2.3.1.128)" "GO:0008999|ribosomal-protein-alanine N-acetyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1121" "ERDMAN_1107" "VBIMycTub1140_1121" "PATRIC.652616.3.AP012340.CDS.1111436.1112512.fwd" "PATRIC" "CDS" 1111436 1112512 1077 "+" "FIG00662132" "PLF_1763_00001774" "PGF_00003049" "BAL64913.1" 358 "FIG037137: Putative conserved transmembrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1122" "ERDMAN_1109" "VBIMycTub1140_1122" "PATRIC.652616.3.AP012340.CDS.1113225.1113434.rev" "PATRIC" "CDS" 1113225 1113434 210 "-" "FIG00821496" "PLF_1763_00003212" "PGF_02411431" "BAL64914.1" 69 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1123" "ERDMAN_1110" "VBIMycTub1140_1123" "PATRIC.652616.3.AP012340.CDS.1113438.1113770.rev" "PATRIC" "CDS" 1113438 1113770 333 "-" "FIG01346564" "PLF_1763_00004374" "PGF_06788576" "BAL64915.1" 110 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1124" "ERDMAN_1111" "VBIMycTub1140_1124" "PATRIC.652616.3.AP012340.CDS.1113800.1114801.fwd" "PATRIC" "CDS" 1113800 1114801 1002 "+" "FIG01328426" "PLF_1763_00088453" "PGF_00419909" "BAL64916.1" 333 "Protein lysine acetyltransferase Pat (EC 2.3.1.-), Mycobacterial type" "GO:0004147|dihydrolipoamide branched chain acyltransferase activity;GO:0004147|sterol O-acyltransferase activity;GO:0004147|N-acetyltransferase activity;GO:0004147|O-acyltransferase activity;GO:0004147|palmitoleoyl [acyl-carrier-protein]-dependent acyltransferase activity;GO:0004147|carnitine O-acyltransferase activity;GO:0004147|acetyltransferase activity;GO:0004147|C-acyltransferase activity;GO:0004147|palmitoyltransferase activity;GO:0004147|N-acyltransferase activity;GO:0004147|acylglycerol O-acyltransferase activity;GO:0004147|serine O-acyltransferase activity;GO:0004147|O-acetyltransferase activity;GO:0004147|O-octanoyltransferase activity;GO:0004147|octanoyltransferase activity;GO:0004147|O-palmitoyltransferase activity;GO:0004147|S-acyltransferase activity;GO:0004147|S-acetyltransferase activity;GO:0004147|S-malonyltransferase activity;GO:0004147|malonyltransferase activity;GO:0004147|C-palmitoyltransferase activity;GO:0004147|succinyltransferase activity;GO:0004147|N-succinyltransferase activity;GO:0004147|O-succinyltransferase activity;GO:0004147|S-succinyltransferase activity;GO:0004147|sinapoyltransferase activity;GO:0004147|O-sinapoyltransferase activity;GO:0004147|peptidyl-lysine N6-myristoyltransferase activity;GO:0004147|peptidyl-lysine N6-palmitoyltransferase activity;GO:0004147|benzoyl acetate-CoA thiolase activity;GO:0004147|3-hydroxybutyryl-CoA thiolase activity;GO:0004147|3-ketopimelyl-CoA thiolase activity;GO:0004147|N-palmitoyltransferase activity;GO:0004147|myristoyltransferase activity;GO:0004147|acyl-CoA N-acyltransferase activity;GO:0004147|protein-cysteine S-myristoyltransferase activity;GO:0004147|protein-cysteine S-acyltransferase activity;GO:0004147|dihydrolipoamide S-acyltransferase activity;GO:0004147|glucosaminyl-phosphotidylinositol O-acyltransferase activity;GO:0004147|ergosterol O-acyltransferase activity;GO:0004147|lanosterol O-acyltransferase activity;GO:0004147|naphthyl-2-oxomethyl-succinyl-CoA succinyl transferase activity;GO:0004147|2,4,4-trimethyl-3-oxopentanoyl-CoA 2-C-propanoyl transferase activity;GO:0004147|2-methylhexanoyl-CoA C-acetyltransferase activity;GO:0004147|butyryl-CoA 2-C-propionyltransferase activity;GO:0004147|2,6-dimethyl-5-methylene-3-oxo-heptanoyl-CoA C-acetyltransferase activity;GO:0004147|L-2-aminoadipate N-acetyltransferase activity;GO:0004147|UDP-3-O-[3-hydroxymyristoyl] glucosamine N-acyltransferase activity;GO:0004147|keto acid formate lyase activity;GO:0004147|Ras palmitoyltransferase activity;GO:0004147|azetidine-2-carboxylic acid acetyltransferase activity;GO:0004147|peptidyl-lysine N-acetyltransferase activity, acting on acetyl phosphate as donor;GO:0004147|acetyl-CoA:L-lysine N6-acetyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1125" "ERDMAN_1112" "VBIMycTub1140_1125" "PATRIC.652616.3.AP012340.CDS.1114819.1115577.fwd" "PATRIC" "CDS" 1114819 1115577 759 "+" "FIG00820854" "PLF_1763_00161907" "PGF_08225224" "BAL64917.1" 252 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1126" "ERDMAN_1113" "VBIMycTub1140_1126" "PATRIC.652616.3.AP012340.CDS.1115583.1116179.rev" "PATRIC" "CDS" 1115583 1116179 597 "-" "FIG00001574" "PLF_1763_00002155" "PGF_00854402" "BAL64918.1" 198 "Alkylated DNA repair protein AlkB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1127" "ERDMAN_1114" "VBIMycTub1140_1127" "PATRIC.652616.3.AP012340.CDS.1116237.1117445.fwd" "PATRIC" "CDS" 1116237 1117445 1209 "+" "FIG00001104" "PLF_1763_00001085" "PGF_02462544" "BAL64919.1" 402 "arcA" "Arginine deiminase (EC 3.5.3.6)" "GO:0016990|arginine deiminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1128" "ERDMAN_1115" "VBIMycTub1140_1128" "PATRIC.652616.3.AP012340.CDS.1117480.1118991.rev" "PATRIC" "CDS" 1117480 1118991 1512 "-" "FIG00818075" "PLF_1763_00000704" "PGF_03659350" "BAL64920.1" 503 "Protein-O-mannosyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1129" "ERDMAN_1116" "VBIMycTub1140_1129" "PATRIC.652616.3.AP012340.CDS.1119074.1119931.fwd" "PATRIC" "CDS" 1119074 1119931 858 "+" "FIG00000260" "PLF_1763_00001336" "PGF_03215471" "BAL64921.1" 285 "16S rRNA (cytidine(1402)-2'-O)-methyltransferase (EC 2.1.1.198)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1130" "ERDMAN_1117" "VBIMycTub1140_1130" "PATRIC.652616.3.AP012340.CDS.1119941.1121149.rev" "PATRIC" "CDS" 1119941 1121149 1209 "-" "FIG01348520" "PLF_1763_00003781" "PGF_00985994" "BAL64922.1" 402 "elastin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1131" "ERDMAN_1118" "VBIMycTub1140_1131" "PATRIC.652616.3.AP012340.CDS.1121274.1122560.rev" "PATRIC" "CDS" 1121274 1122560 1287 "-" "FIG00341164" "PLF_1763_00000708" "PGF_01174807" "BAL64923.1" 428 "pabB" "Para-aminobenzoate synthase, aminase component (EC 2.6.1.85)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1132" "ERDMAN_1119" "VBIMycTub1140_1132" "PATRIC.652616.3.AP012340.CDS.1123117.1124469.fwd" "PATRIC" "CDS" 1123117 1124469 1353 "+" "FIG00820565" "PLF_1763_00003054" "PGF_08225224" "BAL64924.1" 450 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1133" "ERDMAN_1120" "VBIMycTub1140_1133" "PATRIC.652616.3.AP012340.CDS.1124496.1126055.rev" "PATRIC" "CDS" 1124496 1126055 1560 "-" "FIG01265301" "PLF_1763_00000598" "PGF_03609651" "BAL64925.1" 519 "metG" "Methionyl-tRNA synthetase (EC 6.1.1.10)" "GO:0004825|methionine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1134" "ERDMAN_1121" "VBIMycTub1140_1134" "PATRIC.652616.3.AP012340.CDS.1126075.1126935.fwd" "PATRIC" "CDS" 1126075 1126935 861 "+" "FIG00000184" "PLF_1763_00000895" "PGF_02472178" "BAL64926.1" 286 "tatD" "Uncharacterized metal-dependent hydrolase YcfH"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1135" "ERDMAN_1122" "VBIMycTub1140_1135" "PATRIC.652616.3.AP012340.CDS.1127143.1128231.fwd" "PATRIC" "CDS" 1127143 1128231 1089 "+" "FIG00615230" "PLF_1763_00000374" "PGF_00037299" "BAL64927.1" 362 "rpfB" "Resuscitation-promoting factor RpfB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1136" "ERDMAN_1123" "VBIMycTub1140_1136" "PATRIC.652616.3.AP012340.CDS.1128204.1129157.fwd" "PATRIC" "CDS" 1128204 1129157 954 "+" "FIG01958812" "PLF_1763_00001006" "PGF_00049827" "BAL64928.1" 317 "ksgA" "SSU rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase (EC 2.1.1.182)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1137" "ERDMAN_1124" "VBIMycTub1140_1137" "PATRIC.652616.3.AP012340.CDS.1129207.1130163.fwd" "PATRIC" "CDS" 1129207 1130163 957 "+" "FIG00000377" "PLF_1763_00001128" "PGF_00423533" "BAL64929.1" 318 "ispE" "4-diphosphocytidyl-2-C-methyl-D-erythritol kinase (EC 2.7.1.148)" "GO:0050515|4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1138" "ERDMAN_1125" "VBIMycTub1140_1138" "PATRIC.652616.3.AP012340.CDS.1130677.1132311.fwd" "PATRIC" "CDS" 1130677 1132311 1635 "+" "FIG00018699" "PLF_1763_00000205" "PGF_00992333" "BAL64930.1" 544 "pks16" "CoA ligase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1139" "ERDMAN_1126" "VBIMycTub1140_1139" "PATRIC.652616.3.AP012340.CDS.1132385.1132756.rev" "PATRIC" "CDS" 1132385 1132756 372 "-" "FIG00000151" "PLF_1763_00001000" "PGF_04788810" "BAL64931.1" 123 "pth" "Peptidyl-tRNA hydrolase (EC 3.1.1.29)" "GO:0004045|aminoacyl-tRNA hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1140" "ERDMAN_1127" "VBIMycTub_1140" "PATRIC.652616.3.AP012340.CDS.1132800.1132961.rev" "PATRIC" "CDS" 1132800 1132961 162 "-" "FIG00000151" "PLF_1763_00001000" "PGF_04788810" "BAL64932.1" 53 "Peptidyl-tRNA hydrolase (EC 3.1.1.29)" "GO:0004045|aminoacyl-tRNA hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1141" "ERDMAN_1128" "VBIMycTub1140_1141" "PATRIC.652616.3.AP012340.CDS.1132974.1133621.rev" "PATRIC" "CDS" 1132974 1133621 648 "-" "FIG00001896" "PLF_1763_00001775" "PGF_07051332" "BAL64933.1" 215 "rplY" "LSU ribosomal protein L25p" "GO:0003735|structural constituent of ribosome;GO:0005622|intracellular;GO:0005840|ribosome;GO:0006412|translation;GO:0008097|5S rRNA binding"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1142" "ERDMAN_1129" "VBIMycTub1140_1142" "PATRIC.652616.3.AP012340.CDS.1133838.1134353.rev" "PATRIC" "CDS" 1133838 1134353 516 "-" "FIG00947911" "PLF_1763_00002380" "PGF_00017393" "BAL64934.1" 171 "lpqT" "Lipoprotein LpqT"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1143" "ERDMAN_1130" "VBIMycTub1140_1143" "PATRIC.652616.3.AP012340.CDS.1134361.1134543.fwd" "PATRIC" "CDS" 1134361 1134543 183 "+" "FIG01433675" "PLF_1763_00003970" "PGF_00272879" "BAL64935.1" 60 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1144" "ERDMAN_1131" "VBIMycTub1140_1144" "PATRIC.652616.3.AP012340.CDS.1134554.1135534.rev" "PATRIC" "CDS" 1134554 1135534 981 "-" "FIG00096830" "PLF_1763_00000417" "PGF_00048782" "BAL64936.1" 326 "prsA" "Ribose-phosphate pyrophosphokinase (EC 2.7.6.1)" "GO:0004749|ribose phosphate diphosphokinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1145" "ERDMAN_1132" "VBIMycTub1140_1145" "PATRIC.652616.3.AP012340.CDS.1135626.1137113.rev" "PATRIC" "CDS" 1135626 1137113 1488 "-" "FIG00000353" "PLF_1763_00001066" "PGF_08454293" "BAL64937.1" 495 "glmU" "N-acetylglucosamine-1-phosphate uridyltransferase (EC 2.7.7.23) / Glucosamine-1-phosphate N-acetyltransferase (EC 2.3.1.157)" "GO:0003977|UDP-N-acetylglucosamine diphosphorylase activity;GO:0019134|glucosamine-1-phosphate N-acetyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1146" "ERDMAN_1134" "VBIMycTub1140_1146" "PATRIC.652616.3.AP012340.CDS.1137201.1137356.fwd" "PATRIC" "CDS" 1137201 1137356 156 "+" "FIG00825222" "PLF_1763_00003863" "PGF_02413005" "BAL64938.1" 51 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1147" "ERDMAN_1135" "VBIMycTub1140_1147" "PATRIC.652616.3.AP012340.CDS.1137353.1137961.fwd" "PATRIC" "CDS" 1137353 1137961 609 "+" "FIG00554417" "PLF_1763_00001170" "PGF_07182652" "BAL64939.1" 202 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1148" "ERDMAN_1136" "VBIMycTub1140_1148" "PATRIC.652616.3.AP012340.CDS.1138020.1141724.fwd" "PATRIC" "CDS" 1138020 1141724 3705 "+" "FIG00067681" "PLF_1763_00000213" "PGF_08675943" "BAL64940.1" 1234 "mfd" "Transcription-repair coupling factor" "GO:0003676|nucleic acid binding;GO:0003700|transcription factor activity;GO:0004386|helicase activity;GO:0005524|ATP binding;GO:0008026|ATP-dependent helicase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1149" "ERDMAN_1137" "VBIMycTub1140_1149" "PATRIC.652616.3.AP012340.CDS.1141724.1142701.fwd" "PATRIC" "CDS" 1141724 1142701 978 "+" "FIG00002974" "PLF_1763_00001142" "PGF_10414515" "BAL64941.1" 325 "Nucleoside triphosphate pyrophosphohydrolase MazG (EC 3.6.1.8)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1150" "ERDMAN_1138" "VBIMycTub1140_1150" "PATRIC.652616.3.AP012340.CDS.1142789.1143520.fwd" "PATRIC" "CDS" 1142789 1143520 732 "+" "FIG00997321" "PLF_1763_00001211" "PGF_00214204" "BAL64942.1" 243 "lpqU" "Lipoprotein LpqU"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1151" "ERDMAN_1139" "VBIMycTub1140_1151" "PATRIC.652616.3.AP012340.CDS.1143617.1144906.fwd" "PATRIC" "CDS" 1143617 1144906 1290 "+" "FIG00000118" "PLF_1763_00044682" "PGF_02516909" "BAL64943.1" 429 "eno" "Enolase (EC 4.2.1.11)" "GO:0004634|phosphopyruvate hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1152" "ERDMAN_1140" "VBIMycTub1140_1152" "PATRIC.652616.3.AP012340.CDS.1144911.1145597.fwd" "PATRIC" "CDS" 1144911 1145597 687 "+" "PLF_1763_00084335" "PGF_00416927" "BAL64944.1" 228 "Cell division protein DivIC (FtsB), stabilizes FtsL against RasP cleavage"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1153" "ERDMAN_1141" "VBIMycTub1140_1153" "PATRIC.652616.3.AP012340.CDS.1145695.1146081.fwd" "PATRIC" "CDS" 1145695 1146081 387 "+" "PLF_1763_00001133" "PGF_00426285" "BAL64945.1" 128 "FIG004853: possible toxin to DivIC"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1154" "ERDMAN_1142" "VBIMycTub1140_1154" "PATRIC.652616.3.AP012340.CDS.1146072.1147031.fwd" "PATRIC" "CDS" 1146072 1147031 960 "+" "FIG00066575" "PLF_1763_00000530" "PGF_05471309" "BAL64946.1" 319 "Exopolyphosphatase (EC 3.6.1.11)" "GO:0004309|exopolyphosphatase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1155" "ERDMAN_1143" "VBIMycTub1140_1155" "PATRIC.652616.3.AP012340.CDS.1147097.1147225.fwd" "PATRIC" "CDS" 1147097 1147225 129 "+" "FIG01357008" "PLF_1763_00003545" "PGF_02412553" "BAL64947.1" 42 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1156" "VBIMycTub1140_1156" "PATRIC.652616.3.AP012340.CDS.1147271.1147483.fwd" "PATRIC" "CDS" 1147271 1147483 213 "+" "FIG00821066" "PLF_1763_00004067" "PGF_02447101" 70 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1157" "ERDMAN_1144" "VBIMycTub1140_1157" "PATRIC.652616.3.AP012340.CDS.1147480.1148160.rev" "PATRIC" "CDS" 1147480 1148160 681 "-" "FIG00431356" "PLF_1763_00001957" "PGF_10469496" "BAL64948.1" 226 "kdpE" "DNA-binding response regulator KdpE" "GO:0000156|two-component response regulator activity;GO:0003677|DNA binding"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1158" "ERDMAN_1145" "VBIMycTub1140_1158" "PATRIC.652616.3.AP012340.CDS.1148157.1150739.rev" "PATRIC" "CDS" 1148157 1150739 2583 "-" "FIG00000846" "PLF_1763_00000220" "PGF_02938414" "BAL64949.1" 860 "kdpD" "Osmosensitive K+ channel histidine kinase KdpD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1159" "ERDMAN_1146" "VBIMycTub1140_1159" "PATRIC.652616.3.AP012340.CDS.1150830.1150976.fwd" "PATRIC" "CDS" 1150830 1150976 147 "+" "FIG01334395" "PLF_1763_00003214" "PGF_02411448" "BAL64950.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1160" "ERDMAN_1147" "VBIMycTub1140_1160" "PATRIC.652616.3.AP012340.CDS.1151065.1152780.fwd" "PATRIC" "CDS" 1151065 1152780 1716 "+" "FIG00002960" "PLF_1763_00002895" "PGF_00035405" "BAL64951.1" 571 "kdpA" "Potassium-transporting ATPase A chain (EC 3.6.3.12) (TC 3.A.3.7.1)" "GO:0008556|potassium-transporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1161" "ERDMAN_1148" "VBIMycTub1140_1161" "PATRIC.652616.3.AP012340.CDS.1152792.1154906.fwd" "PATRIC" "CDS" 1152792 1154906 2115 "+" "FIG00046742" "PLF_1763_00000270" "PGF_00035406" "BAL64952.1" 704 "kdpB" "Potassium-transporting ATPase B chain (EC 3.6.3.12) (TC 3.A.3.7.1)" "GO:0008556|potassium-transporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1162" "ERDMAN_1149" "VBIMycTub1140_1162" "PATRIC.652616.3.AP012340.CDS.1154936.1155475.fwd" "PATRIC" "CDS" 1154936 1155475 540 "+" "FIG00007507" "PLF_1763_00003108" "PGF_00035407" "BAL64953.1" 179 "kdpC" "Potassium-transporting ATPase C chain (EC 3.6.3.12) (TC 3.A.3.7.1)" "GO:0008556|potassium-transporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1163" "ERDMAN_1150" "VBIMycTub1140_1163" "PATRIC.652616.3.AP012340.CDS.1155479.1157008.rev" "PATRIC" "CDS" 1155479 1157008 1530 "-" "FIG00000853" "PLF_1763_00061647" "PGF_06405752" "BAL64954.1" 509 "trcS" "Two component system sensor histidine kinase TrcS"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.10" "ERDMAN_0011" "VBIMycTub1140_0010" "PATRIC.652616.3.AP012340.CDS.11555.11692.rev" "PATRIC" "CDS" 11555 11692 138 "-" "FIG00820132" "PLF_1763_00003771" "PGF_02412707" "BAL63829.1" 45 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1164" "ERDMAN_1151" "VBIMycTub1140_1164" "PATRIC.652616.3.AP012340.CDS.1157016.1157789.rev" "PATRIC" "CDS" 1157016 1157789 774 "-" "FIG01310367" "PLF_1763_00015147" "PGF_02404360" "BAL64955.1" 257 "trcR" "Two component system response regulator TrcR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1165" "ERDMAN_1152" "VBIMycTub1140_1165" "PATRIC.652616.3.AP012340.CDS.1157971.1158462.rev" "PATRIC" "CDS" 1157971 1158462 492 "-" "FIG01316038" "PLF_1763_00002511" "PGF_02975636" "BAL64956.1" 163 "Transposase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1166" "ERDMAN_1153" "VBIMycTub1140_1166" "PATRIC.652616.3.AP012340.CDS.1158428.1159114.rev" "PATRIC" "CDS" 1158428 1159114 687 "-" "FIG01336785" "PLF_1763_00002489" "PGF_02975636" "BAL64957.1" 228 "Transposase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1167" "ERDMAN_1154" "VBIMycTub1140_1167" "PATRIC.652616.3.AP012340.CDS.1159148.1159471.rev" "PATRIC" "CDS" 1159148 1159471 324 "-" "FIG01308891" "PLF_1763_00003137" "PGF_02975636" "BAL64958.1" 107 "Transposase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1168" "ERDMAN_1155" "VBIMycTub1140_1168" "PATRIC.652616.3.AP012340.CDS.1159597.1159881.rev" "PATRIC" "CDS" 1159597 1159881 285 "-" "FIG00820465" "PLF_1763_00056537" "PGF_00790498" "BAL64959.1" 94 "esxV" "ESAT-6-like protein EsxI"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1169" "ERDMAN_1156" "VBIMycTub1140_1169" "PATRIC.652616.3.AP012340.CDS.1159908.1160204.rev" "PATRIC" "CDS" 1159908 1160204 297 "-" "FIG00821379" "PLF_1763_00148824" "PGF_03117890" "BAL64960.1" 98 "esxJ" "ESAT-6-like protein EsxK"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1170" "ERDMAN_1157" "VBIMycTub1140_1170" "PATRIC.652616.3.AP012340.CDS.1160350.1161525.rev" "PATRIC" "CDS" 1160350 1161525 1176 "-" "FIG00013075" "PLF_1763_00191027" "PGF_03089837" "BAL64961.1" 391 "PPE15" "PPE family protein, SVP subgroup => PPE15"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1171" "ERDMAN_1158" "VBIMycTub1140_1171" "PATRIC.652616.3.AP012340.CDS.1161602.1162429.rev" "PATRIC" "CDS" 1161602 1162429 828 "-" "FIG01433482" "PLF_1763_00190891" "PGF_04257143" "BAL64962.1" 275 "PE8" "PE family protein => PE8"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1172" "ERDMAN_1159" "VBIMycTub1140_1172" "PATRIC.652616.3.AP012340.CDS.1162746.1162880.fwd" "PATRIC" "CDS" 1162746 1162880 135 "+" "FIG00822724" "PLF_1763_00004258" "PGF_01076904" "BAL64963.1" 44 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1173" "ERDMAN_1160" "VBIMycTub1140_1173" "PATRIC.652616.3.AP012340.CDS.1163217.1163378.rev" "PATRIC" "CDS" 1163217 1163378 162 "-" "FIG00822456" "PLF_1763_00003504" "PGF_02412529" "BAL64964.1" 53 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1174" "ERDMAN_1161" "VBIMycTub1140_1174" "PATRIC.652616.3.AP012340.CDS.1163362.1163580.rev" "PATRIC" "CDS" 1163362 1163580 219 "-" "FIG00824606" "PLF_1763_00003764" "PGF_02412687" "BAL64965.1" 72 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1175" "ERDMAN_1162" "VBIMycTub1140_1175" "PATRIC.652616.3.AP012340.CDS.1163625.1164062.rev" "PATRIC" "CDS" 1163625 1164062 438 "-" "FIG01306568" "PLF_1763_00000031" "PGF_01000105" "BAL64966.1" 145 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1176" "ERDMAN_1163" "VBIMycTub1140_1176" "PATRIC.652616.3.AP012340.CDS.1164145.1164543.rev" "PATRIC" "CDS" 1164145 1164543 399 "-" "FIG01313737" "PLF_1763_00000035" "PGF_01000105" "BAL64967.1" 132 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1177" "ERDMAN_1164" "VBIMycTub1140_1177" "PATRIC.652616.3.AP012340.CDS.1164835.1165866.rev" "PATRIC" "CDS" 1164835 1165866 1032 "-" "FIG01308142" "PLF_1763_00003967" "PGF_07855719" "BAL64968.1" 343 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1178" "ERDMAN_1165" "VBIMycTub1140_1178" "PATRIC.652616.3.AP012340.CDS.1166299.1166730.fwd" "PATRIC" "CDS" 1166299 1166730 432 "+" "FIG00820088" "PLF_1763_00003496" "PGF_02412526" "BAL64969.1" 143 "Protein co-occurring with FIG00645039: hypothetical protein with HTH-domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1179" "ERDMAN_1166" "VBIMycTub1140_1179" "PATRIC.652616.3.AP012340.CDS.1166727.1167608.fwd" "PATRIC" "CDS" 1166727 1167608 882 "+" "FIG00821114" "PLF_1763_00000097" "PGF_00427121" "BAL64970.1" 293 "FIG00645039: hypothetical protein with HTH-domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1180" "ERDMAN_1167" "VBIMycTub1140_1180" "PATRIC.652616.3.AP012340.CDS.1168415.1169725.fwd" "PATRIC" "CDS" 1168415 1169725 1311 "+" "FIG01306568" "PLF_1763_00075507" "PGF_01000105" "BAL64971.1" 436 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.119" "ERDMAN_0119" "VBIMycTub1140_0119" "PATRIC.652616.3.AP012340.CDS.116908.118830.fwd" "PATRIC" "CDS" 116908 118830 1923 "+" "FIG01307028" "PLF_1763_00002423" "PGF_07898092" "BAL63936.1" 640 "Copper resistance protein CopD / Cytochrome c oxidase caa3-type assembly factor CtaG_BS (unrelated to Cox11-CtaG family)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1181" "VBIMycTub1140_1181" "PATRIC.652616.3.AP012340.CDS.1169810.1169962.fwd" "PATRIC" "CDS" 1169810 1169962 153 "+" "FIG00823602" "PLF_1763_00004750" "PGF_02416426" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1182" "ERDMAN_1168" "VBIMycTub1140_1182" "PATRIC.652616.3.AP012340.CDS.1170093.1171109.rev" "PATRIC" "CDS" 1170093 1171109 1017 "-" "FIG00821060" "PLF_1763_00003140" "PGF_03983777" "BAL64972.1" 338 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1183" "ERDMAN_1169" "VBIMycTub1140_1183" "PATRIC.652616.3.AP012340.CDS.1171165.1171368.rev" "PATRIC" "CDS" 1171165 1171368 204 "-" "FIG00820549" "PLF_1763_00003022" "PGF_03983777" "BAL64973.1" 67 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1184" "ERDMAN_1170" "VBIMycTub1140_1184" "PATRIC.652616.3.AP012340.CDS.1171441.1171887.fwd" "PATRIC" "CDS" 1171441 1171887 447 "+" "FIG00025887" "PLF_1763_00002898" "PGF_10423881" "BAL64974.1" 148 "Transcriptional regulator, MarR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1185" "ERDMAN_1171" "VBIMycTub1140_1185" "PATRIC.652616.3.AP012340.CDS.1171936.1172841.fwd" "PATRIC" "CDS" 1171936 1172841 906 "+" "FIG01955289" "PLF_1763_00002911" "PGF_09682510" "BAL64975.1" 301 "Short-chain dehydrogenase/reductase SDR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1186" "ERDMAN_1172" "VBIMycTub1140_1186" "PATRIC.652616.3.AP012340.CDS.1173000.1173755.rev" "PATRIC" "CDS" 1173000 1173755 756 "-" "FIG00821021" "PLF_1763_00002757" "PGF_10383273" "BAL64976.1" 251 "FIG00645039: hypothetical protein with HTH-domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1187" "VBIMycTub1140_1187" "PATRIC.652616.3.AP012340.CDS.1173982.1174254.rev" "PATRIC" "CDS" 1173982 1174254 273 "-" "FIG01540159" "PLF_1763_00003714" "PGF_00308436" 90 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1188" "ERDMAN_1173" "VBIMycTub1140_1188" "PATRIC.652616.3.AP012340.CDS.1174916.1175167.fwd" "PATRIC" "CDS" 1174916 1175167 252 "+" "FIG01495881" "PLF_1763_00003067" "PGF_04036853" "BAL64977.1" 83 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1189" "ERDMAN_1174" "VBIMycTub1140_1189" "PATRIC.652616.3.AP012340.CDS.1175463.1175579.rev" "PATRIC" "CDS" 1175463 1175579 117 "-" "FIG01505383" "PLF_1763_00004319" "PGF_02414761" "BAL64978.1" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1190" "ERDMAN_1175" "VBIMycTub1140_1190" "PATRIC.652616.3.AP012340.CDS.1175983.1176297.fwd" "PATRIC" "CDS" 1175983 1176297 315 "+" "FIG01116662" "PLF_1763_00002709" "PGF_07214360" "BAL64979.1" 104 "Integrase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1191" "ERDMAN_1177" "VBIMycTub1140_1191" "PATRIC.652616.3.AP012340.CDS.1176767.1177447.fwd" "PATRIC" "CDS" 1176767 1177447 681 "+" "FIG00820478" "PLF_1763_00001923" "PGF_08225224" "BAL64980.1" 226 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1192" "ERDMAN_1178" "VBIMycTub1140_1192" "PATRIC.652616.3.AP012340.CDS.1177659.1177823.rev" "PATRIC" "CDS" 1177659 1177823 165 "-" "FIG00820024" "PLF_1763_00002994" "PGF_08225224" "BAL64981.1" 54 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1193" "ERDMAN_1179" "VBIMycTub1140_1193" "PATRIC.652616.3.AP012340.CDS.1178400.1179632.fwd" "PATRIC" "CDS" 1178400 1179632 1233 "+" "FIG00822044" "PLF_1763_00002714" "PGF_08225224" "BAL64982.1" 410 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1194" "ERDMAN_1180" "VBIMycTub1140_1194" "PATRIC.652616.3.AP012340.CDS.1179739.1181370.fwd" "PATRIC" "CDS" 1179739 1181370 1632 "+" "FIG00018699" "PLF_1763_00015547" "PGF_00017544" "BAL64983.1" 543 "fadD14" "CoA ligase @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD14" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1195" "ERDMAN_1181" "VBIMycTub1140_1195" "PATRIC.652616.3.AP012340.CDS.1181452.1182510.fwd" "PATRIC" "CDS" 1181452 1182510 1059 "+" "FIG00821197" "PLF_1763_00002492" "PGF_04150638" "BAL64984.1" 352 "Oxidoreductase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1196" "ERDMAN_1182" "VBIMycTub1140_1196" "PATRIC.652616.3.AP012340.CDS.1182563.1183036.fwd" "PATRIC" "CDS" 1182563 1183036 474 "+" "FIG00820308" "PLF_1763_00346610" "PGF_08225224" "BAL64985.1" 157 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1197" "ERDMAN_1183" "VBIMycTub1140_1197" "PATRIC.652616.3.AP012340.CDS.1183070.1183933.fwd" "PATRIC" "CDS" 1183070 1183933 864 "+" "FIG01443783" "PLF_1763_00001929" "PGF_00008245" "BAL64986.1" 287 "Glutamine amidotransferases class-II"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1198" "ERDMAN_1184" "VBIMycTub1140_1198" "PATRIC.652616.3.AP012340.CDS.1183938.1184795.fwd" "PATRIC" "CDS" 1183938 1184795 858 "+" "FIG01311108" "PLF_1763_00001897" "PGF_00033712" "BAL64987.1" 285 "Phospholipase, patatin family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1199" "ERDMAN_1185" "VBIMycTub1140_1199" "PATRIC.652616.3.AP012340.CDS.1184796.1185878.rev" "PATRIC" "CDS" 1184796 1185878 1083 "-" "FIG01304453" "PLF_1763_00001597" "PGF_08091577" "BAL64988.1" 360 "FIG00613342: Bacterial patatin-like phospholipase domain containing protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1200" "ERDMAN_1186" "VBIMycTub1140_1200" "PATRIC.652616.3.AP012340.CDS.1185959.1186378.rev" "PATRIC" "CDS" 1185959 1186378 420 "-" "FIG01316007" "PLF_1763_00002426" "PGF_00041882" "BAL64989.1" 139 "lpqV" "Putative lipoprotein LpqV"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1201" "ERDMAN_1187" "VBIMycTub1140_1201" "PATRIC.652616.3.AP012340.CDS.1186490.1187056.fwd" "PATRIC" "CDS" 1186490 1187056 567 "+" "FIG00822060" "PLF_1763_00001302" "PGF_00420063" "BAL64990.1" 188 "Cysteine dioxygenase (EC 1.13.11.20)" "GO:0017172|cysteine dioxygenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1202" "ERDMAN_1188" "VBIMycTub1140_1202" "PATRIC.652616.3.AP012340.CDS.1187053.1187448.fwd" "PATRIC" "CDS" 1187053 1187448 396 "+" "FIG00820002" "PLF_1763_00001582" "PGF_00048398" "BAL64991.1" 131 "Rhodanese-related sulfurtransferase, 1 domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.11" "ERDMAN_0012" "VBIMycTub1140_0011" "PATRIC.652616.3.AP012340.CDS.11874.12311.rev" "PATRIC" "CDS" 11874 12311 438 "-" "FIG01310638" "PLF_1763_00143359" "PGF_00002701" "BAL63830.1" 145 "FIG024317: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1203" "ERDMAN_1189" "VBIMycTub1140_1203" "PATRIC.652616.3.AP012340.CDS.1187476.1188702.rev" "PATRIC" "CDS" 1187476 1188702 1227 "-" "FIG01353065" "PLF_1763_00148268" "PGF_02936417" "BAL64992.1" 408 "PE_PGRS family protein => PE_PGRS19"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1204" "ERDMAN_1190" "VBIMycTub1140_1204" "PATRIC.652616.3.AP012340.CDS.1188659.1188820.rev" "PATRIC" "CDS" 1188659 1188820 162 "-" "PLF_1763_00148268" "PGF_02936417" "BAL64993.1" 53 "PE_PGRS family protein => PE_PGRS19"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1205" "ERDMAN_1191" "VBIMycTub1140_1205" "PATRIC.652616.3.AP012340.CDS.1188783.1189481.rev" "PATRIC" "CDS" 1188783 1189481 699 "-" "FIG01274276" "PLF_1763_00148268" "PGF_02936417" "BAL64994.1" 232 "PE_PGRS family protein => PE_PGRS19"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1206" "VBIMycTub1140_1206" "PATRIC.652616.3.AP012340.CDS.1189814.1190488.rev" "PATRIC" "CDS" 1189814 1190488 675 "-" "FIG01663448" "PLF_1763_00158214" "PGF_02878345" 224 "PE_PGRS family protein => PE_PGRS20"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.120" "ERDMAN_0120" "VBIMycTub1140_0120" "PATRIC.652616.3.AP012340.CDS.119046.121289.rev" "PATRIC" "CDS" 119046 121289 2244 "-" "FIG00658111" "PLF_1763_00002461" "PGF_07109475" "BAL63937.1" 747 "ctpB" "Lead, cadmium, zinc and mercury transporting ATPase (EC 3.6.3.3) (EC 3.6.3.5); Copper-translocating P-type ATPase (EC 3.6.3.4)" "GO:0004008|copper-exporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1207" "VBIMycTub1140_1207" "PATRIC.652616.3.AP012340.CDS.1190475.1190621.fwd" "PATRIC" "CDS" 1190475 1190621 147 "+" "FIG01405900" "PLF_1763_00003974" "PGF_08225224" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1208" "ERDMAN_1192" "VBIMycTub1140_1208" "PATRIC.652616.3.AP012340.CDS.1190713.1190853.fwd" "PATRIC" "CDS" 1190713 1190853 141 "+" "FIG00823329" "PLF_1763_00003508" "PGF_02412533" "BAL64995.1" 46 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1209" "ERDMAN_1193" "VBIMycTub1140_1209" "PATRIC.652616.3.AP012340.CDS.1190988.1192751.rev" "PATRIC" "CDS" 1190988 1192751 1764 "-" "FIG01329746" "PLF_1763_00001093" "PGF_00036084" "BAL64996.1" 587 "Predicted membrane protein (DUF2319)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1210" "ERDMAN_1194" "VBIMycTub1140_1210" "PATRIC.652616.3.AP012340.CDS.1192748.1193521.rev" "PATRIC" "CDS" 1192748 1193521 774 "-" "FIG01304475" "PLF_1763_00000910" "PGF_01555249" "BAL64997.1" 257 "echA8" "Enoyl-CoA hydratase (EC 4.2.1.17) => degradation of branched-chain amino acids and alpha-keto acids" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1211" "ERDMAN_1195" "VBIMycTub1140_1211" "PATRIC.652616.3.AP012340.CDS.1193533.1194570.rev" "PATRIC" "CDS" 1193533 1194570 1038 "-" "FIG00133111" "PLF_1763_00033701" "PGF_02976396" "BAL64998.1" 345 "echA9" "3-hydroxyisobutyryl-CoA hydrolase (EC 3.1.2.4)" "GO:0003860|3-hydroxyisobutyryl-CoA hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1212" "ERDMAN_1196" "VBIMycTub1140_1212" "PATRIC.652616.3.AP012340.CDS.1194663.1194797.fwd" "PATRIC" "CDS" 1194663 1194797 135 "+" "FIG01491204" "PLF_1763_00003946" "PGF_02413208" "BAL64999.1" 44 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1213" "ERDMAN_1197" "VBIMycTub1140_1213" "PATRIC.652616.3.AP012340.CDS.1194757.1195593.fwd" "PATRIC" "CDS" 1194757 1195593 837 "+" "FIG00662132" "PLF_1763_00000988" "PGF_00426606" "BAL65000.1" 278 "FIG00543890: possible membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1214" "ERDMAN_1198" "VBIMycTub1140_1214" "PATRIC.652616.3.AP012340.CDS.1195700.1196560.fwd" "PATRIC" "CDS" 1195700 1196560 861 "+" "FIG00823206" "PLF_1763_00355591" "PGF_08225224" "BAL65001.1" 286 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1215" "ERDMAN_1199" "VBIMycTub1140_1215" "PATRIC.652616.3.AP012340.CDS.1196634.1197800.rev" "PATRIC" "CDS" 1196634 1197800 1167 "-" "FIG00000004" "PLF_1763_00000404" "PGF_08262214" "BAL65002.1" 388 "fadA3" "3-ketoacyl-CoA thiolase (EC 2.3.1.16) @ Acetyl-CoA acetyltransferase (EC 2.3.1.9)" "GO:0003985|acetyl-CoA C-acetyltransferase activity;GO:0003988|acetyl-CoA C-acyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1216" "ERDMAN_1200" "VBIMycTub1140_1216" "PATRIC.652616.3.AP012340.CDS.1197904.1198848.rev" "PATRIC" "CDS" 1197904 1198848 945 "-" "FIG00815422" "PLF_1763_00347761" "PGF_00049712" "BAL65003.1" 314 "SGNH hydrolase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1217" "ERDMAN_1201" "VBIMycTub1140_1217" "PATRIC.652616.3.AP012340.CDS.1199071.1200138.fwd" "PATRIC" "CDS" 1199071 1200138 1068 "+" "FIG01380254" "PLF_1763_00044703" "PGF_00424779" "BAL65004.1" 355 "lipU" "Esterase/lipase Rv1076/Rv3487c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1218" "ERDMAN_1202" "VBIMycTub1140_1218" "PATRIC.652616.3.AP012340.CDS.1200195.1201589.fwd" "PATRIC" "CDS" 1200195 1201589 1395 "+" "FIG00022427" "PLF_1763_00000379" "PGF_00760084" "BAL65005.1" 464 "cbs" "Cystathionine beta-synthase (EC 4.2.1.22)" "GO:0004122|cystathionine beta-synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1219" "ERDMAN_1203" "VBIMycTub1140_1219" "PATRIC.652616.3.AP012340.CDS.1201791.1202513.fwd" "PATRIC" "CDS" 1201791 1202513 723 "+" "FIG01375448" "PLF_1763_00280440" "PGF_00037549" "BAL65006.1" 240 "pra" "Proline-rich antigen homolog"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1220" "ERDMAN_1204" "VBIMycTub1140_1220" "PATRIC.652616.3.AP012340.CDS.1202545.1203711.fwd" "PATRIC" "CDS" 1202545 1203711 1167 "+" "FIG00001346" "PLF_1763_00000857" "PGF_05950073" "BAL65007.1" 388 "metB" "Cystathionine gamma-lyase (EC 4.4.1.1)" "GO:0004123|cystathionine gamma-lyase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1221" "ERDMAN_1205" "VBIMycTub1140_1221" "PATRIC.652616.3.AP012340.CDS.1203782.1204276.rev" "PATRIC" "CDS" 1203782 1204276 495 "-" "FIG00000288" "PLF_1763_00001126" "PGF_01043799" "BAL65008.1" 164 "greA" "Transcription elongation factor GreA" "GO:0003677|DNA binding;GO:0003711|transcription elongation regulator activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1222" "ERDMAN_1206" "VBIMycTub1140_1222" "PATRIC.652616.3.AP012340.CDS.1204462.1204803.rev" "PATRIC" "CDS" 1204462 1204803 342 "-" "FIG00821096" "PLF_1763_00002330" "PGF_00408693" "BAL65009.1" 113 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1223" "ERDMAN_1207" "VBIMycTub1140_1223" "PATRIC.652616.3.AP012340.CDS.1204998.1205864.fwd" "PATRIC" "CDS" 1204998 1205864 867 "+" "FIG00006621" "PLF_1763_00000164" "PGF_00023532" "BAL65010.1" 288 "mca" "Mycothiol S-conjugate amidase Mca"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1224" "ERDMAN_1208" "VBIMycTub1140_1224" "PATRIC.652616.3.AP012340.CDS.1205861.1206127.fwd" "PATRIC" "CDS" 1205861 1206127 267 "+" "FIG00999229" "PLF_1763_00003241" "PGF_02411607" "BAL65011.1" 88 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1225" "ERDMAN_1209" "VBIMycTub1140_1225" "PATRIC.652616.3.AP012340.CDS.1206195.1208135.fwd" "PATRIC" "CDS" 1206195 1208135 1941 "+" "FIG00000175" "PLF_1763_00080047" "PGF_05864899" "BAL65012.1" 646 "Uncharacterized protein YyaL"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1226" "ERDMAN_1210" "VBIMycTub1140_1226" "PATRIC.652616.3.AP012340.CDS.1208145.1208264.fwd" "PATRIC" "CDS" 1208145 1208264 120 "+" "FIG00820691" "PLF_1763_00003599" "PGF_02412584" "BAL65013.1" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1227" "ERDMAN_1211" "VBIMycTub1140_1227" "PATRIC.652616.3.AP012340.CDS.1208234.1209010.rev" "PATRIC" "CDS" 1208234 1209010 777 "-" "FIG01323667" "PLF_1763_00000803" "PGF_00002592" "BAL65014.1" 258 "FIG01964566: Predicted membrane protein, hemolysin III homolog"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1228" "ERDMAN_1212" "VBIMycTub1140_1228" "PATRIC.652616.3.AP012340.CDS.1209073.1209861.fwd" "PATRIC" "CDS" 1209073 1209861 789 "+" "FIG01306574" "PLF_1763_00000682" "PGF_00059672" "BAL65015.1" 262 "(2E,6Z)-farnesyl diphosphate synthase (EC 2.5.1.68)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1229" "ERDMAN_1213" "VBIMycTub1140_1229" "PATRIC.652616.3.AP012340.CDS.1210038.1210874.fwd" "PATRIC" "CDS" 1210038 1210874 837 "+" "FIG01274276" "PLF_1763_00156407" "PGF_03132252" "BAL65016.1" 278 "PE_PGRS family protein => PE_PGRS21"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1230" "ERDMAN_1214" "VBIMycTub1140_1230" "PATRIC.652616.3.AP012340.CDS.1211022.1212377.fwd" "PATRIC" "CDS" 1211022 1212377 1356 "+" "FIG00638284" "PLF_1763_00149320" "PGF_03132252" "BAL65017.1" 451 "PE_PGRS family protein => PE_PGRS21"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1231" "ERDMAN_1215" "VBIMycTub1140_1231" "PATRIC.652616.3.AP012340.CDS.1212563.1212874.fwd" "PATRIC" "CDS" 1212563 1212874 312 "+" "FIG00000110" "PLF_1763_00003789" "PGF_02280759" "BAL65018.1" 103 "Undecaprenyl diphosphate synthase (EC 2.5.1.31)" "GO:0008834|di-trans,poly-cis-decaprenylcistransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1232" "ERDMAN_1216" "VBIMycTub1140_1232" "PATRIC.652616.3.AP012340.CDS.1213036.1213461.fwd" "PATRIC" "CDS" 1213036 1213461 426 "+" "FIG01311212" "PLF_1763_00004042" "PGF_04024949" "BAL65019.1" 141 "PE9" "PE family protein => PE9"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1233" "ERDMAN_1217" "VBIMycTub1140_1233" "PATRIC.652616.3.AP012340.CDS.1213478.1213645.fwd" "PATRIC" "CDS" 1213478 1213645 168 "+" "FIG01313150" "PLF_1763_00004020" "PGF_00029152" "BAL65020.1" 55 "PE10" "PE family protein => PE10"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1234" "ERDMAN_1218" "VBIMycTub1140_1234" "PATRIC.652616.3.AP012340.CDS.1213739.1213921.fwd" "PATRIC" "CDS" 1213739 1213921 183 "+" "FIG00638284" "PLF_1763_00002992" "PGF_02410957" "BAL65021.1" 60 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1235" "ERDMAN_1219" "VBIMycTub1140_1235" "PATRIC.652616.3.AP012340.CDS.1214113.1214568.fwd" "PATRIC" "CDS" 1214113 1214568 456 "+" "FIG01310181" "PLF_1763_00002952" "PGF_02410932" "BAL65022.1" 151 "celA2b" "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1236" "VBIMycTub1140_1236" "PATRIC.652616.3.AP012340.CDS.1214561.1214674.rev" "PATRIC" "CDS" 1214561 1214674 114 "-" "FIG01541601" "PLF_1763_00003862" "PGF_02413004" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1237" "ERDMAN_1220" "VBIMycTub1140_1237" "PATRIC.652616.3.AP012340.CDS.1214692.1214817.fwd" "PATRIC" "CDS" 1214692 1214817 126 "+" "FIG01339746" "PLF_1763_00003568" "PGF_02412569" "BAL65023.1" 41 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.121" "ERDMAN_0121" "VBIMycTub1140_0121" "PATRIC.652616.3.AP012340.CDS.121475.122962.fwd" "PATRIC" "CDS" 121475 122962 1488 "+" "FIG00823329" "PLF_1763_00000080" "PGF_01083102" "BAL63938.1" 495 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1238" "ERDMAN_1221" "VBIMycTub1140_1238" "PATRIC.652616.3.AP012340.CDS.1214983.1215480.fwd" "PATRIC" "CDS" 1214983 1215480 498 "+" "PLF_1763_00144124" "PGF_02898776" "BAL65024.1" 165 "PE_PGRS family protein => PE_PGRS22"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1239" "ERDMAN_1222" "VBIMycTub1140_1239" "PATRIC.652616.3.AP012340.CDS.1215447.1217546.fwd" "PATRIC" "CDS" 1215447 1217546 2100 "+" "PLF_1763_00144124" "PGF_02898776" "BAL65025.1" 699 "obg" "PE_PGRS family protein => PE_PGRS22"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1240" "ERDMAN_1223" "VBIMycTub1140_1240" "PATRIC.652616.3.AP012340.CDS.1217605.1217733.fwd" "PATRIC" "CDS" 1217605 1217733 129 "+" "FIG00822376" "PLF_1763_00002993" "PGF_02410960" "BAL65026.1" 42 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1241" "ERDMAN_1224" "VBIMycTub1140_1241" "PATRIC.652616.3.AP012340.CDS.1217764.1218636.rev" "PATRIC" "CDS" 1217764 1218636 873 "-" "FIG00000936" "PLF_1763_00000330" "PGF_04449783" "BAL65027.1" 290 "coaA" "Pantothenate kinase (EC 2.7.1.33)" "GO:0004594|pantothenate kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1242" "ERDMAN_1225" "VBIMycTub1140_1242" "PATRIC.652616.3.AP012340.CDS.1219054.1220370.fwd" "PATRIC" "CDS" 1219054 1220370 1317 "+" "FIG00147090" "PLF_1763_00001726" "PGF_05622318" "BAL65028.1" 438 "glyA" "Serine hydroxymethyltransferase (EC 2.1.2.1)" "GO:0004372|glycine hydroxymethyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1243" "ERDMAN_1226" "VBIMycTub1140_1243" "PATRIC.652616.3.AP012340.CDS.1220451.1221302.fwd" "PATRIC" "CDS" 1220451 1221302 852 "+" "FIG00996037" "PLF_1763_00000524" "PGF_02418688" "BAL65029.1" 283 "desA2" "Acyl-[acyl-carrier protein] desaturase DesA2 (EC 1.14.19.2)" "GO:0045300|acyl-[acyl-carrier-protein] desaturase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1244" "ERDMAN_1227" "VBIMycTub1140_1244" "PATRIC.652616.3.AP012340.CDS.1221513.1222814.fwd" "PATRIC" "CDS" 1221513 1222814 1302 "+" "FIG00075426" "PLF_1763_00000259" "PGF_06051594" "BAL65030.1" 433 "phoH2" "Predicted ATPase related to phosphate starvation-inducible protein PhoH"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1245" "ERDMAN_1228" "VBIMycTub1140_1245" "PATRIC.652616.3.AP012340.CDS.1222901.1223776.fwd" "PATRIC" "CDS" 1222901 1223776 876 "+" "FIG01314096" "PLF_1763_00056833" "PGF_00681996" "BAL65031.1" 291 "Possible glycosyl hydrolase (EC 3.-.-.-)" "GO:0003923|GPI-anchor transamidase activity;GO:0003923|coenzyme F390-A hydrolase activity;GO:0003923|coenzyme F390-G hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1246" "ERDMAN_1229" "VBIMycTub1140_1246" "PATRIC.652616.3.AP012340.CDS.1223779.1224660.rev" "PATRIC" "CDS" 1223779 1224660 882 "-" "FIG01270577" "PLF_1763_00002848" "PGF_08225224" "BAL65032.1" 293 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1247" "ERDMAN_1230" "VBIMycTub1140_1247" "PATRIC.652616.3.AP012340.CDS.1224657.1226081.rev" "PATRIC" "CDS" 1224657 1226081 1425 "-" "FIG00000340" "PLF_1763_00057787" "PGF_00006461" "BAL65033.1" 474 "fumC" "Fumarate hydratase class II (EC 4.2.1.2)" "GO:0004333|fumarate hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1248" "ERDMAN_1231" "VBIMycTub1140_1248" "PATRIC.652616.3.AP012340.CDS.1226112.1227164.rev" "PATRIC" "CDS" 1226112 1227164 1053 "-" "FIG00138413" "PLF_1763_00000368" "PGF_08364774" "BAL65034.1" 350 "glpX" "Fructose-1,6-bisphosphatase, GlpX type (EC 3.1.3.11)" "GO:0042132|fructose-bisphosphatase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1249" "ERDMAN_1232" "VBIMycTub1140_1249" "PATRIC.652616.3.AP012340.CDS.1227139.1227900.fwd" "PATRIC" "CDS" 1227139 1227900 762 "+" "FIG00820021" "PLF_1763_00130248" "PGF_03075430" "BAL65035.1" 253 "Uncharacterized protien Rv1100"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1250" "ERDMAN_1233" "VBIMycTub1140_1250" "PATRIC.652616.3.AP012340.CDS.1227907.1229064.rev" "PATRIC" "CDS" 1227907 1229064 1158 "-" "FIG00818075" "PLF_1763_00013597" "PGF_00000544" "BAL65036.1" 385 "FIG00818075: possible membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1251" "ERDMAN_1234" "VBIMycTub1140_1251" "PATRIC.652616.3.AP012340.CDS.1229176.1229337.rev" "PATRIC" "CDS" 1229176 1229337 162 "-" "FIG00021347" "PLF_1763_00002821" "PGF_00422639" "BAL65037.1" 53 "Death on curing protein, Doc toxin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1252" "ERDMAN_1235" "VBIMycTub1140_1252" "PATRIC.652616.3.AP012340.CDS.1229487.1229699.rev" "PATRIC" "CDS" 1229487 1229699 213 "-" "FIG00015082" "PLF_1763_00002880" "PGF_00036590" "BAL65038.1" 70 "Prevent host death protein, Phd antitoxin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1253" "ERDMAN_1236" "VBIMycTub1140_1253" "PATRIC.652616.3.AP012340.CDS.1229835.1230506.fwd" "PATRIC" "CDS" 1229835 1230506 672 "+" "FIG01225679" "BAL65039.1" 223 "Carboxylesterase (EC 3.1.1.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1254" "ERDMAN_1237" "VBIMycTub1140_1254" "PATRIC.652616.3.AP012340.CDS.1230580.1230978.fwd" "PATRIC" "CDS" 1230580 1230978 399 "+" "FIG01336027" "PLF_1763_00056678" "PGF_04494905" "BAL65040.1" 132 "Carboxylesterase, type B"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1255" "ERDMAN_1238" "VBIMycTub1140_1255" "PATRIC.652616.3.AP012340.CDS.1230965.1231342.fwd" "PATRIC" "CDS" 1230965 1231342 378 "+" "FIG01318367" "PLF_1763_00002997" "PGF_10394083" "BAL65041.1" 125 "Carboxylesterase (EC 3.1.1.1)" "GO:0052689|carboxylic ester hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.122" "ERDMAN_0122" "VBIMycTub1140_0122" "PATRIC.652616.3.AP012340.CDS.123111.123395.rev" "PATRIC" "CDS" 123111 123395 285 "-" "FIG00000266" "PLF_1763_00003468" "PGF_03278866" "BAL63939.1" 94 "rpmB" "LSU ribosomal protein L28p @ LSU ribosomal protein L28p, zinc-independent"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1256" "ERDMAN_1239" "VBIMycTub1140_1256" "PATRIC.652616.3.AP012340.CDS.1231360.1232460.rev" "PATRIC" "CDS" 1231360 1232460 1101 "-" "FIG00820427" "PLF_1763_00001517" "PGF_00417357" "BAL65042.1" 366 "3-beta-hydroxy-Delta(5)-steroid dehydrogenase (EC 1.1.1.145) @ Steroid Delta(5)->Delta(4)-isomerase (EC 5.3.3.1)" "GO:0003854|3-beta-hydroxy-delta5-steroid dehydrogenase activity;GO:0004769|steroid delta-isomerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1257" "ERDMAN_1240" "VBIMycTub1140_1257" "PATRIC.652616.3.AP012340.CDS.1232482.1232739.rev" "PATRIC" "CDS" 1232482 1232739 258 "-" "FIG00000435" "PLF_1763_00000614" "PGF_05076104" "BAL65043.1" 85 "xseB" "Exodeoxyribonuclease VII small subunit (EC 3.1.11.6)" "GO:0008855|exodeoxyribonuclease VII activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1258" "ERDMAN_1241" "VBIMycTub1140_1258" "PATRIC.652616.3.AP012340.CDS.1232729.1233976.rev" "PATRIC" "CDS" 1232729 1233976 1248 "-" "FIG00000323" "PLF_1763_00000397" "PGF_00425024" "BAL65044.1" 415 "xseA" "Exodeoxyribonuclease VII large subunit (EC 3.1.11.6)" "GO:0008855|exodeoxyribonuclease VII activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1259" "ERDMAN_1242" "VBIMycTub1140_1259" "PATRIC.652616.3.AP012340.CDS.1233973.1234611.rev" "PATRIC" "CDS" 1233973 1234611 639 "-" "FIG00821685" "PLF_1763_00006413" "PGF_07719900" "BAL65045.1" 212 "Uncharacterized protein Rv1109c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1260" "ERDMAN_1243" "VBIMycTub1140_1260" "PATRIC.652616.3.AP012340.CDS.1234674.1235708.fwd" "PATRIC" "CDS" 1234674 1235708 1035 "+" "FIG00000381" "PLF_1763_00263619" "PGF_00423732" "BAL65046.1" 344 "ispH" "4-hydroxy-3-methylbut-2-enyl diphosphate reductase (EC 1.17.7.4)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.123" "ERDMAN_0123" "VBIMycTub1140_0123" "PATRIC.652616.3.AP012340.CDS.123505.124701.fwd" "PATRIC" "CDS" 123505 124701 1197 "+" "FIG01304517" "PLF_1763_00013389" "PGF_12906772" "BAL63940.1" 398 "Metal chaperone, involved in Zn homeostasis"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1261" "ERDMAN_1244" "VBIMycTub1140_1261" "PATRIC.652616.3.AP012340.CDS.1235725.1236708.rev" "PATRIC" "CDS" 1235725 1236708 984 "-" "FIG00525068" "PLF_1763_00272038" "PGF_00013565" "BAL65047.1" 327 "Rhomboid family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1262" "ERDMAN_1245" "VBIMycTub1140_1262" "PATRIC.652616.3.AP012340.CDS.1236771.1237844.fwd" "PATRIC" "CDS" 1236771 1237844 1074 "+" "FIG00049915" "PLF_1763_00000298" "PGF_00007012" "BAL65048.1" 357 "GTP-binding and nucleic acid-binding protein YchF" "GO:0005525|GTP binding;GO:0005622|intracellular"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1263" "ERDMAN_1246" "VBIMycTub1140_1263" "PATRIC.652616.3.AP012340.CDS.1237944.1238129.fwd" "PATRIC" "CDS" 1237944 1238129 186 "+" "FIG00820528" "PLF_1763_00199379" "PGF_12953927" "BAL65049.1" 61 "Antitoxin VapB32 @ Antitoxin to Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1264" "ERDMAN_1247" "VBIMycTub1140_1264" "PATRIC.652616.3.AP012340.CDS.1238126.1238500.fwd" "PATRIC" "CDS" 1238126 1238500 375 "+" "FIG01310754" "PLF_1763_00002385" "PGF_06835797" "BAL65050.1" 124 "Toxin VapC32 @ Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1265" "ERDMAN_1248" "VBIMycTub1140_1265" "PATRIC.652616.3.AP012340.CDS.1238760.1239401.fwd" "PATRIC" "CDS" 1238760 1239401 642 "+" "FIG01311964" "PLF_1763_00034831" "PGF_00650789" "BAL65051.1" 213 "hypothetical protein Rv1115"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1266" "ERDMAN_1249" "VBIMycTub1140_1266" "PATRIC.652616.3.AP012340.CDS.1239631.1239906.rev" "PATRIC" "CDS" 1239631 1239906 276 "-" "FIG01311212" "PLF_1763_00003039" "PGF_02410985" "BAL65052.1" 91 "PE family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1267" "ERDMAN_1250" "VBIMycTub1140_1267" "PATRIC.652616.3.AP012340.CDS.1240149.1240472.fwd" "PATRIC" "CDS" 1240149 1240472 324 "+" "FIG00822249" "PLF_1763_00001888" "PGF_08225224" "BAL65053.1" 107 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1268" "ERDMAN_1251" "VBIMycTub1140_1268" "PATRIC.652616.3.AP012340.CDS.1240487.1241197.rev" "PATRIC" "CDS" 1240487 1241197 711 "-" "FIG00827818" "PLF_1763_00002570" "PGF_00399646" "BAL65054.1" 236 "hypothetical protein Rv1118c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1269" "ERDMAN_1252" "VBIMycTub1140_1269" "PATRIC.652616.3.AP012340.CDS.1241219.1241428.fwd" "PATRIC" "CDS" 1241219 1241428 210 "+" "FIG00820810" "PLF_1763_00375004" "PGF_08225224" "BAL65055.1" 69 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1270" "ERDMAN_1253" "VBIMycTub1140_1270" "PATRIC.652616.3.AP012340.CDS.1241380.1241529.rev" "PATRIC" "CDS" 1241380 1241529 150 "-" "FIG01371146" "PLF_1763_00003661" "PGF_08828113" "BAL65056.1" 49 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1271" "ERDMAN_1254" "VBIMycTub1140_1271" "PATRIC.652616.3.AP012340.CDS.1241526.1242020.rev" "PATRIC" "CDS" 1241526 1242020 495 "-" "FIG01331912" "PLF_1763_00001527" "PGF_08828113" "BAL65057.1" 164 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1272" "VBIMycTub1140_1272" "PATRIC.652616.3.AP012340.CDS.1242046.1242177.fwd" "PATRIC" "CDS" 1242046 1242177 132 "+" "FIG01309296" "PLF_1763_00003916" "PGF_02413145" 43 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1273" "ERDMAN_1255" "VBIMycTub1140_1273" "PATRIC.652616.3.AP012340.CDS.1242223.1243623.fwd" "PATRIC" "CDS" 1242223 1243623 1401 "+" "FIG00000332" "PLF_1763_00002049" "PGF_06027248" "BAL65058.1" 466 "zwf1" "Glucose-6-phosphate 1-dehydrogenase (EC 1.1.1.49)" "GO:0004345|glucose-6-phosphate dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1274" "ERDMAN_1256" "VBIMycTub1140_1274" "PATRIC.652616.3.AP012340.CDS.1243645.1244667.fwd" "PATRIC" "CDS" 1243645 1244667 1023 "+" "FIG00000405" "PLF_1763_00018453" "PGF_00427299" "BAL65059.1" 340 "gnd2" "6-phosphogluconate dehydrogenase, decarboxylating (EC 1.1.1.44)" "GO:0004616|phosphogluconate dehydrogenase (decarboxylating) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1275" "ERDMAN_1257" "VBIMycTub1140_1275" "PATRIC.652616.3.AP012340.CDS.1244660.1245406.rev" "PATRIC" "CDS" 1244660 1245406 747 "-" "FIG01316813" "PLF_1763_00001722" "PGF_12683353" "BAL65060.1" 248 "bpoB" "Hydrolase Rv1123c, alpha/beta fold family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1276" "ERDMAN_1258" "VBIMycTub1140_1276" "PATRIC.652616.3.AP012340.CDS.1245366.1245605.fwd" "PATRIC" "CDS" 1245366 1245605 240 "+" "FIG00821600" "PLF_1763_00004083" "PGF_02414088" "BAL65061.1" 79 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1277" "ERDMAN_1259" "VBIMycTub1140_1277" "PATRIC.652616.3.AP012340.CDS.1245688.1246593.fwd" "PATRIC" "CDS" 1245688 1246593 906 "+" "FIG01350511" "PLF_1763_00129736" "PGF_01003946" "BAL65062.1" 301 "ephC" "Epoxide hydrolase (EC 3.3.2.9)" "GO:0033961|cis-stilbene-oxide hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1278" "ERDMAN_1260" "VBIMycTub1140_1278" "PATRIC.652616.3.AP012340.CDS.1246598.1247842.fwd" "PATRIC" "CDS" 1246598 1247842 1245 "+" "FIG00823859" "PLF_1763_00019192" "PGF_00399647" "BAL65063.1" 414 "hypothetical protein Rv1125"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1279" "ERDMAN_1261" "VBIMycTub1140_1279" "PATRIC.652616.3.AP012340.CDS.1247846.1248451.rev" "PATRIC" "CDS" 1247846 1248451 606 "-" "FIG00823917" "PLF_1763_00089094" "PGF_08225224" "BAL65064.1" 201 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.124" "ERDMAN_0124" "VBIMycTub1140_0124" "PATRIC.652616.3.AP012340.CDS.124796.129673.rev" "PATRIC" "CDS" 124796 129673 4878 "-" "FIG00826871" "PLF_1763_00001395" "PGF_00725158" "BAL63941.1" 1625 "ctpI" "Probable cation-transporting ATPase I (EC 3.6.3.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1280" "ERDMAN_1262" "VBIMycTub1140_1280" "PATRIC.652616.3.AP012340.CDS.1248448.1249863.rev" "PATRIC" "CDS" 1248448 1249863 1416 "-" "FIG00001076" "PLF_1763_00268998" "PGF_00045999" "BAL65065.1" 471 "ppdK" "Pyruvate,phosphate dikinase (EC 2.7.9.1)" "GO:0050242|pyruvate, phosphate dikinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.12" "ERDMAN_0013" "VBIMycTub1140_0012" "PATRIC.652616.3.AP012340.CDS.12486.13016.fwd" "PATRIC" "CDS" 12486 13016 531 "+" "FIG01955868" "PLF_1763_00061260" "PGF_09954313" "BAL63831.1" 176 "ppiA" "Peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1281" "ERDMAN_1263" "VBIMycTub1140_1281" "PATRIC.652616.3.AP012340.CDS.1250011.1250130.fwd" "PATRIC" "CDS" 1250011 1250130 120 "+" "FIG01396054" "PLF_1763_00003769" "PGF_02412700" "BAL65066.1" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1282" "ERDMAN_1264" "VBIMycTub1140_1282" "PATRIC.652616.3.AP012340.CDS.1250133.1251488.rev" "PATRIC" "CDS" 1250133 1251488 1356 "-" "FIG01327493" "PLF_1763_00061293" "PGF_05503590" "BAL65067.1" 451 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1283" "ERDMAN_1265" "VBIMycTub1140_1283" "PATRIC.652616.3.AP012340.CDS.1251590.1252951.rev" "PATRIC" "CDS" 1251590 1252951 1362 "-" "FIG01229586" "PLF_1763_00045537" "PGF_00066853" "BAL65068.1" 453 "XRE family transcriptional regulator MSMEG_6643"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1284" "ERDMAN_1266" "VBIMycTub1140_1284" "PATRIC.652616.3.AP012340.CDS.1253134.1254651.fwd" "PATRIC" "CDS" 1253134 1254651 1518 "+" "FIG00001287" "PLF_1763_00001051" "PGF_00403272" "BAL65069.1" 505 "2-methylcitrate dehydratase (EC 4.2.1.79)" "GO:0047547|2-methylcitrate dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1285" "ERDMAN_1267" "VBIMycTub1140_1285" "PATRIC.652616.3.AP012340.CDS.1254648.1255829.fwd" "PATRIC" "CDS" 1254648 1255829 1182 "+" "FIG00001030" "PLF_1763_00001322" "PGF_00403434" "BAL65070.1" 393 "gltA1" "2-methylcitrate synthase (EC 2.3.3.5)" "GO:0050440|2-methylcitrate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1286" "ERDMAN_1268" "VBIMycTub1140_1286" "PATRIC.652616.3.AP012340.CDS.1255841.1257571.fwd" "PATRIC" "CDS" 1255841 1257571 1731 "+" "FIG00818075" "PLF_1763_00000116" "PGF_04977504" "BAL65071.1" 576 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1287" "ERDMAN_1269" "VBIMycTub1140_1287" "PATRIC.652616.3.AP012340.CDS.1257583.1259967.rev" "PATRIC" "CDS" 1257583 1259967 2385 "-" "FIG00000683" "PLF_1763_00164362" "PGF_01219411" "BAL65072.1" 794 "metE" "5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase (EC 2.1.1.14)" "GO:0003871|5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1288" "VBIMycTub1140_1288" "PATRIC.652616.3.AP012340.CDS.1260238.1260357.rev" "PATRIC" "CDS" 1260238 1260357 120 "-" "FIG01385294" "PLF_1763_00003999" "PGF_02413480" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1289" "ERDMAN_1270" "VBIMycTub1140_1289" "PATRIC.652616.3.AP012340.CDS.1260438.1260674.fwd" "PATRIC" "CDS" 1260438 1260674 237 "+" "FIG01315650" "PLF_1763_00003345" "PGF_08225224" "BAL65073.1" 78 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1290" "ERDMAN_1271" "VBIMycTub1140_1290" "PATRIC.652616.3.AP012340.CDS.1260788.1262644.rev" "PATRIC" "CDS" 1260788 1262644 1857 "-" "FIG01956254" "PLF_1763_00000192" "PGF_02906094" "BAL65074.1" 618 "PPE16" "PPE family protein, MPTR subgroup => PPE16"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1291" "ERDMAN_1272" "VBIMycTub1140_1291" "PATRIC.652616.3.AP012340.CDS.1262854.1263072.fwd" "PATRIC" "CDS" 1262854 1263072 219 "+" "FIG01318775" "PLF_1763_00169553" "PGF_00025641" "BAL65075.1" 72 "Acetyl-CoA acetyltransferase (EC 2.3.1.9)" "GO:0003985|acetyl-CoA C-acetyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1292" "ERDMAN_1273" "VBIMycTub1140_1292" "PATRIC.652616.3.AP012340.CDS.1263122.1263463.fwd" "PATRIC" "CDS" 1263122 1263463 342 "+" "FIG00033206" "PLF_1763_00032335" "PGF_03210551" "BAL65076.1" 113 "Enoyl-CoA hydratase (EC 4.2.1.17)" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1293" "ERDMAN_1274" "VBIMycTub1140_1293" "PATRIC.652616.3.AP012340.CDS.1263613.1263954.fwd" "PATRIC" "CDS" 1263613 1263954 342 "+" "FIG00825032" "PLF_1763_00002851" "PGF_02410279" "BAL65077.1" 113 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1294" "ERDMAN_1275" "VBIMycTub1140_1294" "PATRIC.652616.3.AP012340.CDS.1263988.1265004.rev" "PATRIC" "CDS" 1263988 1265004 1017 "-" "FIG01325211" "PLF_1763_00001968" "PGF_10561877" "BAL65078.1" 338 "Putative oxidoreductase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1295" "ERDMAN_1276" "VBIMycTub1140_1295" "PATRIC.652616.3.AP012340.CDS.1265001.1265501.rev" "PATRIC" "CDS" 1265001 1265501 501 "-" "FIG00823634" "PLF_1763_00001844" "PGF_08225224" "BAL65079.1" 166 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1296" "ERDMAN_1277" "VBIMycTub1140_1296" "PATRIC.652616.3.AP012340.CDS.1265989.1266711.fwd" "PATRIC" "CDS" 1265989 1266711 723 "+" "FIG01315135" "PLF_1763_00002237" "PGF_12897594" "BAL65080.1" 240 "Integral membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1297" "ERDMAN_1278" "VBIMycTub1140_1297" "PATRIC.652616.3.AP012340.CDS.1266719.1267525.rev" "PATRIC" "CDS" 1266719 1267525 807 "-" "FIG00033206" "PLF_1763_00002785" "PGF_03210551" "BAL65081.1" 268 "echA11" "Enoyl-CoA hydratase (EC 4.2.1.17)" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1298" "ERDMAN_1279" "VBIMycTub1140_1298" "PATRIC.652616.3.AP012340.CDS.1267668.1268474.rev" "PATRIC" "CDS" 1267668 1268474 807 "-" "FIG00033206" "PLF_1763_00018550" "PGF_03210551" "BAL65082.1" 268 "echA10" "Enoyl-CoA hydratase (EC 4.2.1.17)" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1299" "ERDMAN_1280" "VBIMycTub1140_1299" "PATRIC.652616.3.AP012340.CDS.1268473.1269660.fwd" "PATRIC" "CDS" 1268473 1269660 1188 "+" "FIG01312689" "PLF_1763_00000687" "PGF_07269647" "BAL65083.1" 395 "mcr" "Alpha-methylacyl-CoA racemase (EC 5.1.99.4)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1300" "ERDMAN_1281" "VBIMycTub1140_1300" "PATRIC.652616.3.AP012340.CDS.1269672.1270424.fwd" "PATRIC" "CDS" 1269672 1270424 753 "+" "FIG01388763" "PLF_1763_00011060" "PGF_10412334" "BAL65084.1" 250 "Short-chain dehydrogenase/reductase SDR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1301" "ERDMAN_1282" "VBIMycTub1140_1301" "PATRIC.652616.3.AP012340.CDS.1270552.1270683.rev" "PATRIC" "CDS" 1270552 1270683 132 "-" "FIG00821291" "PLF_1763_00002670" "PGF_07466468" "BAL65085.1" 43 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1302" "ERDMAN_1283" "VBIMycTub1140_1302" "PATRIC.652616.3.AP012340.CDS.1270939.1271850.fwd" "PATRIC" "CDS" 1270939 1271850 912 "+" "FIG01956050" "PLF_1763_00035423" "PGF_03099143" "BAL65086.1" 303 "mmpL13a" "Transmembrane transport protein MmpL13"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1303" "ERDMAN_1284" "VBIMycTub1140_1303" "PATRIC.652616.3.AP012340.CDS.1271802.1273283.fwd" "PATRIC" "CDS" 1271802 1273283 1482 "+" "FIG01314334" "PLF_1763_00008439" "PGF_03099143" "BAL65087.1" 493 "mmpL13b" "Transmembrane transport protein MmpL13"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1304" "ERDMAN_1285" "VBIMycTub1140_1304" "PATRIC.652616.3.AP012340.CDS.1273416.1274066.fwd" "PATRIC" "CDS" 1273416 1274066 651 "+" "FIG00515945" "PLF_1763_00001164" "PGF_06788576" "BAL65088.1" 216 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1305" "ERDMAN_1286" "VBIMycTub1140_1305" "PATRIC.652616.3.AP012340.CDS.1274236.1274490.fwd" "PATRIC" "CDS" 1274236 1274490 255 "+" "FIG00820116" "PLF_1763_00004082" "PGF_08225224" "BAL65089.1" 84 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1306" "ERDMAN_1287" "VBIMycTub1140_1306" "PATRIC.652616.3.AP012340.CDS.1274544.1274846.rev" "PATRIC" "CDS" 1274544 1274846 303 "-" "FIG00820827" "PLF_1763_00003400" "PGF_02412472" "BAL65090.1" 100 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1307" "ERDMAN_1288" "VBIMycTub1140_1307" "PATRIC.652616.3.AP012340.CDS.1274816.1276315.rev" "PATRIC" "CDS" 1274816 1276315 1500 "-" "FIG00820827" "PLF_1763_00062541" "PGF_05503590" "BAL65091.1" 499 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1308" "ERDMAN_1289" "VBIMycTub1140_1308" "PATRIC.652616.3.AP012340.CDS.1276419.1276817.fwd" "PATRIC" "CDS" 1276419 1276817 399 "+" "FIG01313737" "PLF_1763_00000035" "PGF_01000105" "BAL65092.1" 132 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1309" "ERDMAN_1290" "VBIMycTub1140_1309" "PATRIC.652616.3.AP012340.CDS.1276900.1277337.fwd" "PATRIC" "CDS" 1276900 1277337 438 "+" "FIG01306568" "PLF_1763_00000031" "PGF_01000105" "BAL65093.1" 145 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1310" "ERDMAN_1291" "VBIMycTub1140_1310" "PATRIC.652616.3.AP012340.CDS.1277421.1278128.rev" "PATRIC" "CDS" 1277421 1278128 708 "-" "FIG00008490" "PLF_1763_00001886" "PGF_10024837" "BAL65094.1" 235 "NAD-dependent protein deacetylase of SIR2 family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1311" "ERDMAN_1292" "VBIMycTub1140_1311" "PATRIC.652616.3.AP012340.CDS.1278172.1278537.fwd" "PATRIC" "CDS" 1278172 1278537 366 "+" "FIG00621925" "PLF_1763_00001778" "PGF_06916656" "BAL65095.1" 121 "Transcriptional regulator, GntR family" "GO:0003677|DNA binding;GO:0003700|transcription factor activity;GO:0005622|intracellular;GO:0006813|potassium ion transport;GO:0008324|cation transmembrane transporter activity;GO:0009058|biosynthetic process;GO:0030528|transcription regulator activity;GO:0045449|regulation of transcription"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1312" "ERDMAN_1293" "VBIMycTub1140_1312" "PATRIC.652616.3.AP012340.CDS.1278515.1279363.rev" "PATRIC" "CDS" 1278515 1279363 849 "-" "FIG01315086" "PLF_1763_00004626" "PGF_05893211" "BAL65096.1" 282 "omt" "Tetracenomycin polyketide synthesis O-methyltransferase TcmP"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1313" "ERDMAN_1294" "VBIMycTub1140_1313" "PATRIC.652616.3.AP012340.CDS.1279360.1279947.rev" "PATRIC" "CDS" 1279360 1279947 588 "-" "FIG00820223" "PLF_1763_00161101" "PGF_08225224" "BAL65097.1" 195 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1314" "ERDMAN_1295" "VBIMycTub1140_1314" "PATRIC.652616.3.AP012340.CDS.1279946.1280389.fwd" "PATRIC" "CDS" 1279946 1280389 444 "+" "FIG01337117" "PLF_1763_00001664" "PGF_10325150" "BAL65098.1" 147 "F420H2-dependent reductase, Rv1155"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1315" "ERDMAN_1296" "VBIMycTub1140_1315" "PATRIC.652616.3.AP012340.CDS.1280547.1280735.fwd" "PATRIC" "CDS" 1280547 1280735 189 "+" "FIG00821390" "PLF_1763_00001554" "PGF_08225224" "BAL65099.1" 62 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1316" "ERDMAN_1297" "VBIMycTub1140_1316" "PATRIC.652616.3.AP012340.CDS.1280823.1281410.fwd" "PATRIC" "CDS" 1280823 1281410 588 "+" "FIG00822538" "PLF_1763_00294578" "PGF_08225224" "BAL65100.1" 195 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1317" "ERDMAN_1298" "VBIMycTub1140_1317" "PATRIC.652616.3.AP012340.CDS.1281407.1281553.fwd" "PATRIC" "CDS" 1281407 1281553 147 "+" "FIG00822949" "PLF_1763_00122429" "PGF_07445500" "BAL65101.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1318" "ERDMAN_1299" "VBIMycTub1140_1318" "PATRIC.652616.3.AP012340.CDS.1281573.1282688.rev" "PATRIC" "CDS" 1281573 1282688 1116 "-" "FIG01334706" "PLF_1763_00043580" "PGF_08225224" "BAL65102.1" 371 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1319" "ERDMAN_1300" "VBIMycTub1140_1319" "PATRIC.652616.3.AP012340.CDS.1282696.1283379.rev" "PATRIC" "CDS" 1282696 1283379 684 "-" "FIG00821598" "PLF_1763_00002499" "PGF_02409176" "BAL65103.1" 227 "Conserved alanine and proline rich protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1320" "VBIMycTub1140_1320" "PATRIC.652616.3.AP012340.CDS.1283469.1283585.rev" "PATRIC" "CDS" 1283469 1283585 117 "-" "FIG00820763" "PLF_1763_00003566" "PGF_02412567" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1321" "ERDMAN_1301" "VBIMycTub1140_1321" "PATRIC.652616.3.AP012340.CDS.1283506.1284804.fwd" "PATRIC" "CDS" 1283506 1284804 1299 "+" "FIG01001774" "PLF_1763_00000644" "PGF_00019353" "BAL65104.1" 432 "pimE" "Mannosyltransferase PimE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1322" "ERDMAN_1302" "VBIMycTub1140_1322" "PATRIC.652616.3.AP012340.CDS.1284801.1285079.rev" "PATRIC" "CDS" 1284801 1285079 279 "-" "FIG00004933" "PLF_1763_00124303" "PGF_00645046" "BAL65105.1" 92 "phhB" "Pterin-4-alpha-carbinolamine dehydratase (EC 4.2.1.96)" "GO:0008124|4-alpha-hydroxytetrahydrobiopterin dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1323" "ERDMAN_1303" "VBIMycTub1140_1323" "PATRIC.652616.3.AP012340.CDS.1285112.1285537.fwd" "PATRIC" "CDS" 1285112 1285537 426 "+" "FIG00000892" "PLF_1763_00008495" "PGF_00023476" "BAL65106.1" 141 "mutT2" "Mutator MutT protein (7,8-dihydro-8-oxoguanine-triphosphatase) (EC 3.6.1.-)" "GO:0004787|thiamine-pyrophosphatase activity;GO:0004787|8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity;GO:0004787|UDP-2,3-diacylglucosamine hydrolase activity;GO:0004787|bis(5'-nucleosyl)-tetraphosphatase activity;GO:0004787|dATP pyrophosphohydrolase activity;GO:0004787|pyrophosphatase activity;GO:0004787|dihydroneopterin monophosphate phosphatase activity;GO:0004787|dihydroneopterin triphosphate pyrophosphohydrolase activity;GO:0004787|dITP diphosphatase activity;GO:0004787|dTTP diphosphatase activity;GO:0004787|XTP diphosphatase activity;GO:0004787|ATP-dependent 5'-3' DNA helicase activity;GO:0004787|phosphocholine hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1324" "ERDMAN_1304" "VBIMycTub1140_1324" "PATRIC.652616.3.AP012340.CDS.1285845.1289543.fwd" "PATRIC" "CDS" 1285845 1289543 3699 "+" "FIG00001044" "PLF_1763_00018781" "PGF_09372748" "BAL65107.1" 1232 "narG" "Respiratory nitrate reductase alpha chain (EC 1.7.99.4)" "GO:0008940|nitrate reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1325" "ERDMAN_1305" "VBIMycTub1140_1325" "PATRIC.652616.3.AP012340.CDS.1289582.1291258.fwd" "PATRIC" "CDS" 1289582 1291258 1677 "+" "FIG00001035" "PLF_1763_00084205" "PGF_00047730" "BAL65108.1" 558 "narH" "Respiratory nitrate reductase beta chain (EC 1.7.99.4)" "GO:0008940|nitrate reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1326" "ERDMAN_1306" "VBIMycTub1140_1326" "PATRIC.652616.3.AP012340.CDS.1291255.1291920.fwd" "PATRIC" "CDS" 1291255 1291920 666 "+" "FIG00001138" "PLF_1763_00002058" "PGF_00047732" "BAL65109.1" 221 "narJ" "Respiratory nitrate reductase delta chain (EC 1.7.99.4)" "GO:0008940|nitrate reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1327" "ERDMAN_1307" "VBIMycTub1140_1327" "PATRIC.652616.3.AP012340.CDS.1291923.1292663.fwd" "PATRIC" "CDS" 1291923 1292663 741 "+" "FIG00001079" "PLF_1763_00001768" "PGF_00047734" "BAL65110.1" 246 "narI" "Respiratory nitrate reductase gamma chain (EC 1.7.99.4)" "GO:0008940|nitrate reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1328" "ERDMAN_1308" "VBIMycTub1140_1328" "PATRIC.652616.3.AP012340.CDS.1292685.1294571.fwd" "PATRIC" "CDS" 1292685 1294571 1887 "+" "FIG00000268" "PLF_1763_00234953" "PGF_00007041" "BAL65111.1" 628 "typA" "GTP-binding protein TypA/BipA" "GO:0005525|GTP binding;GO:0006412|translation"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1329" "ERDMAN_1309" "VBIMycTub1140_1329" "PATRIC.652616.3.AP012340.CDS.1294669.1296576.fwd" "PATRIC" "CDS" 1294669 1296576 1908 "+" "FIG00544125" "PLF_1763_00019244" "PGF_02405674" "BAL65112.1" 635 "lpqW" "ABC transporter, substrate-binding protein LpqW"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1330" "ERDMAN_1310" "VBIMycTub1140_1330" "PATRIC.652616.3.AP012340.CDS.1296604.1297209.rev" "PATRIC" "CDS" 1296604 1297209 606 "-" "FIG00554417" "PLF_1763_00002781" "PGF_07182652" "BAL65113.1" 201 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.125" "VBIMycTub1140_0125" "PATRIC.652616.3.AP012340.CDS.129713.129838.fwd" "PATRIC" "CDS" 129713 129838 126 "+" "FIG01487575" "PLF_1763_00003917" "PGF_02413146" 41 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1331" "ERDMAN_1311" "VBIMycTub1140_1331" "PATRIC.652616.3.AP012340.CDS.1297281.1298321.rev" "PATRIC" "CDS" 1297281 1298321 1041 "-" "FIG00013075" "PLF_1763_00000223" "PGF_02407873" "BAL65114.1" 346 "PPE17" "PPE family protein, SVP subgroup => PPE17"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1332" "ERDMAN_1312" "VBIMycTub1140_1332" "PATRIC.652616.3.AP012340.CDS.1298339.1298641.rev" "PATRIC" "CDS" 1298339 1298641 303 "-" "FIG01344119" "PLF_1763_00003191" "PGF_02411319" "BAL65115.1" 100 "PE11" "PE family protein => PE11"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1333" "ERDMAN_1313" "VBIMycTub1140_1333" "PATRIC.652616.3.AP012340.CDS.1298821.1299732.fwd" "PATRIC" "CDS" 1298821 1299732 912 "+" "FIG00023524" "PLF_1763_00345231" "PGF_00687197" "BAL65116.1" 303 "mshB" "1D-myo-inositol 2-acetamido-2-deoxy-alpha-D-glucopyranoside deacetylase (EC 3.5.1.103)" "GO:0035595|N-acetylglucosaminylinositol deacetylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1334" "ERDMAN_1314" "VBIMycTub1140_1334" "PATRIC.652616.3.AP012340.CDS.1299938.1300264.fwd" "PATRIC" "CDS" 1299938 1300264 327 "+" "FIG00820429" "PLF_1763_00003519" "PGF_08142921" "BAL65117.1" 108 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.126" "ERDMAN_0125" "VBIMycTub1140_0126" "PATRIC.652616.3.AP012340.CDS.130027.130233.rev" "PATRIC" "CDS" 130027 130233 207 "-" "FIG00821281" "PLF_1763_00002404" "PGF_02408606" "BAL63942.1" 68 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1335" "ERDMAN_1315" "VBIMycTub1140_1335" "PATRIC.652616.3.AP012340.CDS.1300272.1301198.rev" "PATRIC" "CDS" 1300272 1301198 927 "-" "FIG01274276" "PLF_1763_00003300" "PGF_02870972" "BAL65118.1" 308 "PE12" "PE family protein => PE12"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1336" "ERDMAN_1316" "VBIMycTub1140_1336" "PATRIC.652616.3.AP012340.CDS.1301523.1304018.fwd" "PATRIC" "CDS" 1301523 1304018 2496 "+" "FIG00073737" "PLF_1763_00000412" "PGF_00000134" "BAL65119.1" 831 "fbiC" "7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase subunit 1 / 7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase subunit 2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.13" "ERDMAN_0014" "VBIMycTub1140_0013" "PATRIC.652616.3.AP012340.CDS.13024.13176.rev" "PATRIC" "CDS" 13024 13176 153 "-" "FIG01327866" "PLF_1763_00003682" "PGF_02412631" "BAL63832.1" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1337" "ERDMAN_1317" "VBIMycTub1140_1337" "PATRIC.652616.3.AP012340.CDS.1304186.1304518.rev" "PATRIC" "CDS" 1304186 1304518 333 "-" "FIG00821016" "PLF_1763_00157052" "PGF_02417256" "BAL65120.1" 110 "TB8.4" "Low molecular weight T-cell antigen TB8.4, predicted hemophore (see TIGR04529)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1338" "ERDMAN_1318" "VBIMycTub1140_1338" "PATRIC.652616.3.AP012340.CDS.1304719.1306743.rev" "PATRIC" "CDS" 1304719 1306743 2025 "-" "FIG00517072" "PLF_1763_00001340" "PGF_00909019" "BAL65121.1" 674 "fadH" "2,4-dienoyl-CoA reductase [NADPH] (EC 1.3.1.34)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.127" "ERDMAN_0126" "VBIMycTub1140_0127" "PATRIC.652616.3.AP012340.CDS.130515.132005.fwd" "PATRIC" "CDS" 130515 132005 1491 "+" "FIG01274276" "PLF_1763_00003908" "PGF_02880319" "BAL63943.1" 496 "PE_PGRS1" "PE_PGRS family protein => PE_PGRS1"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1339" "ERDMAN_1319" "VBIMycTub1140_1339" "PATRIC.652616.3.AP012340.CDS.1306740.1307309.rev" "PATRIC" "CDS" 1306740 1307309 570 "-" "FIG00002474" "PLF_1763_00002094" "PGF_01662006" "BAL65122.1" 189 "Transcriptional regulator, PadR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1340" "ERDMAN_1320" "VBIMycTub1140_1340" "PATRIC.652616.3.AP012340.CDS.1307522.1307848.fwd" "PATRIC" "CDS" 1307522 1307848 327 "+" "FIG00551095" "PLF_1763_00000103" "PGF_04979787" "BAL65123.1" 108 "fdxC" "4Fe-4S ferredoxin, iron-sulfur binding"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1341" "ERDMAN_1321" "VBIMycTub1140_1341" "PATRIC.652616.3.AP012340.CDS.1307881.1308969.fwd" "PATRIC" "CDS" 1307881 1308969 1089 "+" "FIG00001368" "PLF_1763_00000868" "PGF_00024232" "BAL65124.1" 362 "N-succinyl-L,L-diaminopimelate aminotransferase (EC 2.6.1.17), type 2" "GO:0009016|succinyldiaminopimelate transaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1342" "ERDMAN_1322" "VBIMycTub1140_1342" "PATRIC.652616.3.AP012340.CDS.1308997.1311816.rev" "PATRIC" "CDS" 1308997 1311816 2820 "-" "FIG00731278" "PLF_1763_00002644" "PGF_00421452" "BAL65125.1" 939 "DNA or RNA helicases of superfamily II"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1343" "ERDMAN_1323" "VBIMycTub1140_1343" "PATRIC.652616.3.AP012340.CDS.1312243.1318500.fwd" "PATRIC" "CDS" 1312243 1318500 6258 "+" "FIG00823157" "PLF_1763_00000224" "PGF_00034673" "BAL65126.1" 2085 "pks4" "Polyketide synthase / Multifunctional mycocerosic acid synthase membrane-associated mas"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.14" "ERDMAN_0015" "VBIMycTub1140_0014" "PATRIC.652616.3.AP012340.CDS.13133.13447.rev" "PATRIC" "CDS" 13133 13447 315 "-" "FIG01121868" "PLF_1763_00003161" "PGF_02405702" "BAL63833.1" 104 "FIG020554: membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1344" "ERDMAN_1324" "VBIMycTub1140_1344" "PATRIC.652616.3.AP012340.CDS.1318553.1319971.fwd" "PATRIC" "CDS" 1318553 1319971 1419 "+" "FIG01352858" "PLF_1763_00002213" "PGF_00029259" "BAL65127.1" 472 "papA3" "PKS-associated protein PapA, condensation domain-containing"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1345" "ERDMAN_1325" "VBIMycTub1140_1345" "PATRIC.652616.3.AP012340.CDS.1320038.1323046.fwd" "PATRIC" "CDS" 1320038 1323046 3009 "+" "FIG00822041" "PLF_1763_00002388" "PGF_00060618" "BAL65128.1" 1002 "mmpL10" "Transmembrane transport protein MmpL8/MmpL10/MmpL12"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.128" "ERDMAN_0127" "VBIMycTub1140_0128" "PATRIC.652616.3.AP012340.CDS.132008.132130.fwd" "PATRIC" "CDS" 132008 132130 123 "+" "PLF_1763_00004180" "PGF_02414598" "BAL63944.1" 40 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.129" "ERDMAN_0128" "VBIMycTub1140_0129" "PATRIC.652616.3.AP012340.CDS.132264.132902.fwd" "PATRIC" "CDS" 132264 132902 639 "+" "FIG00447744" "PLF_1763_00284680" "PGF_00807568" "BAL63945.1" 212 "FIG056164: rhomboid family serine protease"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1346" "ERDMAN_1326" "VBIMycTub1140_1346" "PATRIC.652616.3.AP012340.CDS.1323050.1323949.rev" "PATRIC" "CDS" 1323050 1323949 900 "-" "FIG01386146" "PLF_1763_00003003" "PGF_00002459" "BAL65129.1" 299 "FIG01386146: Possible exported protein, Rv1184c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1347" "ERDMAN_1327" "VBIMycTub1140_1347" "PATRIC.652616.3.AP012340.CDS.1324294.1326030.rev" "PATRIC" "CDS" 1324294 1326030 1737 "-" "FIG00018699" "PLF_1763_00002693" "PGF_02876578" "BAL65130.1" 578 "fadD21" "Polyketide synthase modules and related proteins @ Long-chain fatty-acid-AMP ligase, Mycobacterial subgroup FadD21"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1348" "ERDMAN_1328" "VBIMycTub1140_1348" "PATRIC.652616.3.AP012340.CDS.1326207.1327823.rev" "PATRIC" "CDS" 1326207 1327823 1617 "-" "FIG00056421" "PLF_1763_00001611" "PGF_00047215" "BAL65131.1" 538 "Regulator of polyketide synthase expression"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1349" "ERDMAN_1329" "VBIMycTub1140_1349" "PATRIC.652616.3.AP012340.CDS.1327896.1329539.fwd" "PATRIC" "CDS" 1327896 1329539 1644 "+" "FIG00043720" "PLF_1763_00149956" "PGF_00422888" "BAL65132.1" 547 "rocA" "Delta-1-pyrroline-5-carboxylate dehydrogenase (EC 1.2.1.88)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1350" "ERDMAN_1330" "VBIMycTub1140_1350" "PATRIC.652616.3.AP012340.CDS.1329539.1330528.fwd" "PATRIC" "CDS" 1329539 1330528 990 "+" "FIG00002570" "PLF_1763_00001096" "PGF_00037521" "BAL65133.1" 329 "Proline dehydrogenase (EC 1.5.5.2)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1351" "ERDMAN_1331" "VBIMycTub1140_1351" "PATRIC.652616.3.AP012340.CDS.1330610.1331482.fwd" "PATRIC" "CDS" 1330610 1331482 873 "+" "FIG01121797" "PLF_1763_00003258" "PGF_00046289" "BAL65134.1" 290 "sigI" "RNA polymerase sigma factor"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.130" "ERDMAN_0129" "VBIMycTub1140_0130" "PATRIC.652616.3.AP012340.CDS.133125.135140.fwd" "PATRIC" "CDS" 133125 135140 2016 "+" "FIG00822583" "PLF_1763_00001771" "PGF_10502020" "BAL63946.1" 671 "Acyltransferase family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1352" "ERDMAN_1332" "VBIMycTub1140_1352" "PATRIC.652616.3.AP012340.CDS.1331504.1331818.fwd" "PATRIC" "CDS" 1331504 1331818 315 "+" "FIG01328638" "PLF_1763_00002478" "PGF_06574151" "BAL65135.1" 104 "Hydrolase, alpha/beta fold family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1353" "ERDMAN_1333" "VBIMycTub1140_1353" "PATRIC.652616.3.AP012340.CDS.1331781.1332374.fwd" "PATRIC" "CDS" 1331781 1332374 594 "+" "FIG01328638" "PLF_1763_00002478" "PGF_06574151" "BAL65136.1" 197 "Hydrolase, alpha/beta fold family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1354" "ERDMAN_1334" "VBIMycTub1140_1354" "PATRIC.652616.3.AP012340.CDS.1332405.1333361.fwd" "PATRIC" "CDS" 1332405 1333361 957 "+" "FIG01121797" "PLF_1763_00001736" "PGF_00041331" "BAL65137.1" 318 "Putative hydrolase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1355" "ERDMAN_1335" "VBIMycTub1140_1355" "PATRIC.652616.3.AP012340.CDS.1333443.1334270.fwd" "PATRIC" "CDS" 1333443 1334270 828 "+" "FIG00820330" "PLF_1763_00028054" "PGF_08225224" "BAL65138.1" 275 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1356" "ERDMAN_1336" "VBIMycTub1140_1356" "PATRIC.652616.3.AP012340.CDS.1334310.1335731.fwd" "PATRIC" "CDS" 1334310 1335731 1422 "+" "FIG00018699" "PLF_1763_00030108" "PGF_02386548" "BAL65139.1" 473 "fadD36" "CoA ligase @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD36" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1357" "ERDMAN_1337" "VBIMycTub1140_1357" "PATRIC.652616.3.AP012340.CDS.1335764.1337029.rev" "PATRIC" "CDS" 1335764 1337029 1266 "-" "FIG00056421" "PLF_1763_00002725" "PGF_03145146" "BAL65140.1" 421 "Possible regulatory protein Trx"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1358" "VBIMycTub1140_1358" "PATRIC.652616.3.AP012340.CDS.1337121.1337276.rev" "PATRIC" "CDS" 1337121 1337276 156 "-" "FIG01358171" "PLF_1763_00003933" "PGF_02413197" 51 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1359" "ERDMAN_1338" "VBIMycTub1140_1359" "PATRIC.652616.3.AP012340.CDS.1337519.1337818.fwd" "PATRIC" "CDS" 1337519 1337818 300 "+" "FIG01306513" "PLF_1763_00003513" "PGF_03075526" "BAL65141.1" 99 "PE13" "PE family protein => PE13"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1360" "ERDMAN_1339" "VBIMycTub1140_1360" "PATRIC.652616.3.AP012340.CDS.1337865.1339040.fwd" "PATRIC" "CDS" 1337865 1339040 1176 "+" "FIG00013075" "PLF_1763_00147456" "PGF_03149245" "BAL65142.1" 391 "PPE18" "PPE family protein, SVP subgroup => PPE18"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1361" "ERDMAN_1340" "VBIMycTub1140_1361" "PATRIC.652616.3.AP012340.CDS.1339175.1339471.fwd" "PATRIC" "CDS" 1339175 1339471 297 "+" "FIG00821379" "PLF_1763_00148824" "PGF_03117890" "BAL65143.1" 98 "esxK" "ESAT-6-like protein EsxK"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1362" "ERDMAN_1341" "VBIMycTub1140_1362" "PATRIC.652616.3.AP012340.CDS.1339522.1339806.fwd" "PATRIC" "CDS" 1339522 1339806 285 "+" "FIG00820465" "PLF_1763_00055619" "PGF_00882494" "BAL65144.1" 94 "esxL" "ESAT-6-like protein EsxL"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1363" "ERDMAN_1342" "VBIMycTub1140_1363" "PATRIC.652616.3.AP012340.CDS.1339874.1341184.rev" "PATRIC" "CDS" 1339874 1341184 1311 "-" "FIG01306568" "PLF_1763_00075507" "PGF_01000105" "BAL65145.1" 436 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1364" "ERDMAN_1343" "VBIMycTub1140_1364" "PATRIC.652616.3.AP012340.CDS.1341426.1342736.fwd" "PATRIC" "CDS" 1341426 1342736 1311 "+" "FIG00613966" "PLF_1763_00377887" "PGF_09996723" "BAL65146.1" 436 "Uncharacterized MFS-type transporter"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1365" "ERDMAN_1344" "VBIMycTub1140_1365" "PATRIC.652616.3.AP012340.CDS.1342733.1343719.rev" "PATRIC" "CDS" 1342733 1343719 987 "-" "FIG00000908" "PLF_1763_00000411" "PGF_00020173" "BAL65147.1" 328 "2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase (EC 2.3.1.117)" "GO:0008666|2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1366" "ERDMAN_1345" "VBIMycTub1140_1366" "PATRIC.652616.3.AP012340.CDS.1343777.1344841.fwd" "PATRIC" "CDS" 1343777 1344841 1065 "+" "FIG00133108" "PLF_1763_00001181" "PGF_00024234" "BAL65148.1" 354 "dapE" "N-succinyl-L,L-diaminopimelate desuccinylase (EC 3.5.1.18)" "GO:0009014|succinyl-diaminopimelate desuccinylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1367" "ERDMAN_1346" "VBIMycTub1140_1367" "PATRIC.652616.3.AP012340.CDS.1344838.1345419.rev" "PATRIC" "CDS" 1344838 1345419 582 "-" "FIG00820206" "PLF_1763_00044913" "PGF_00021204" "BAL65149.1" 193 "AAA-ATPase, domain of unknown function, and LuxR DNA-binding domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1368" "ERDMAN_1347" "VBIMycTub1140_1368" "PATRIC.652616.3.AP012340.CDS.1345453.1347123.rev" "PATRIC" "CDS" 1345453 1347123 1671 "-" "FIG01006075" "PLF_1763_00059863" "PGF_00021204" "BAL65150.1" 556 "AAA-ATPase, domain of unknown function, and LuxR DNA-binding domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1369" "ERDMAN_1348" "VBIMycTub1140_1369" "PATRIC.652616.3.AP012340.CDS.1347124.1347264.fwd" "PATRIC" "CDS" 1347124 1347264 141 "+" "FIG00826990" "PLF_1763_00004023" "PGF_02413644" "BAL65151.1" 46 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1370" "ERDMAN_1349" "VBIMycTub1140_1370" "PATRIC.652616.3.AP012340.CDS.1347272.1347799.fwd" "PATRIC" "CDS" 1347272 1347799 528 "+" "FIG01349038" "PLF_1763_00002960" "PGF_00033913" "BAL65152.1" 175 "Phosphoribohydrolase involved in Mycobacterial cytokinins production, homolog of plant cytokinin-activating enzyme LOG"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1371" "ERDMAN_1350" "VBIMycTub1140_1371" "PATRIC.652616.3.AP012340.CDS.1347849.1349642.fwd" "PATRIC" "CDS" 1347849 1349642 1794 "+" "FIG00137255" "PLF_1763_00000776" "PGF_00580685" "BAL65153.1" 597 "fadD6" "Long-chain-fatty-acid--CoA ligase (EC 6.2.1.3) @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD6" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1372" "ERDMAN_1351" "VBIMycTub1140_1372" "PATRIC.652616.3.AP012340.CDS.1349704.1349826.fwd" "PATRIC" "CDS" 1349704 1349826 123 "+" "FIG01412555" "PLF_1763_00004088" "PGF_02414104" "BAL65154.1" 40 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1373" "ERDMAN_1352" "VBIMycTub1140_1373" "PATRIC.652616.3.AP012340.CDS.1349840.1350664.fwd" "PATRIC" "CDS" 1349840 1350664 825 "+" "FIG00018087" "PLF_1763_00000671" "PGF_00026193" "BAL65155.1" 274 "folP2" "Non functional Dihydropteroate synthase 2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1374" "ERDMAN_1353" "VBIMycTub1140_1374" "PATRIC.652616.3.AP012340.CDS.1350661.1351635.fwd" "PATRIC" "CDS" 1350661 1351635 975 "+" "FIG01313034" "PLF_1763_00000837" "PGF_00008024" "BAL65156.1" 324 "Glucosyl-3-phosphoglycerate synthase (EC 2.4.1.266)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1375" "ERDMAN_1354" "VBIMycTub1140_1375" "PATRIC.652616.3.AP012340.CDS.1351674.1352042.fwd" "PATRIC" "CDS" 1351674 1352042 369 "+" "FIG00820927" "PLF_1763_00001161" "PGF_00000589" "BAL65157.1" 122 "FIG00820927: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1376" "ERDMAN_1355" "VBIMycTub1140_1376" "PATRIC.652616.3.AP012340.CDS.1352039.1352653.fwd" "PATRIC" "CDS" 1352039 1352653 615 "+" "FIG00000673" "PLF_1763_00121208" "PGF_05357708" "BAL65158.1" 204 "tagA" "DNA-3-methyladenine glycosylase (EC 3.2.2.20)" "GO:0008725|DNA-3-methyladenine glycosylase I activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1377" "ERDMAN_1356" "VBIMycTub1140_1377" "PATRIC.652616.3.AP012340.CDS.1352820.1352987.fwd" "PATRIC" "CDS" 1352820 1352987 168 "+" "FIG00638284" "PLF_1763_00001105" "PGF_12924000" "BAL65159.1" 55 "Uncharacterized protein MSMEG_5081"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1378" "ERDMAN_1357" "VBIMycTub1140_1378" "PATRIC.652616.3.AP012340.CDS.1353015.1354178.rev" "PATRIC" "CDS" 1353015 1354178 1164 "-" "FIG00139522" "PLF_1763_00000466" "PGF_06661198" "BAL65160.1" 387 "Predicted glycogen synthase, ADP-glucose transglucosylase (EC 2.4.1.21), Actinobacterial type"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.131" "ERDMAN_0130" "VBIMycTub1140_0131" "PATRIC.652616.3.AP012340.CDS.135422.136378.fwd" "PATRIC" "CDS" 135422 136378 957 "+" "FIG01318417" "PLF_1763_00002776" "PGF_02415711" "BAL63947.1" 318 "gca" "GDP-mannose 4,6-dehydratase (EC 4.2.1.47)" "GO:0008446|GDP-mannose 4,6-dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1379" "ERDMAN_1358" "VBIMycTub1140_1379" "PATRIC.652616.3.AP012340.CDS.1354371.1355567.fwd" "PATRIC" "CDS" 1354371 1355567 1197 "+" "FIG00000717" "PLF_1763_00000273" "PGF_10149521" "BAL65161.1" 398 "glgC" "Glucose-1-phosphate adenylyltransferase (EC 2.7.7.27)" "GO:0008878|glucose-1-phosphate adenylyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1380" "ERDMAN_1359" "VBIMycTub1140_1380" "PATRIC.652616.3.AP012340.CDS.1355810.1356142.rev" "PATRIC" "CDS" 1355810 1356142 333 "-" "FIG01274276" "PLF_1763_00003549" "PGF_03102745" "BAL65162.1" 110 "PE14" "PE family protein => PE14"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1381" "ERDMAN_1360" "VBIMycTub1140_1381" "PATRIC.652616.3.AP012340.CDS.1356276.1357937.rev" "PATRIC" "CDS" 1356276 1357937 1662 "-" "FIG01350540" "PLF_1763_00002333" "PGF_00418385" "BAL65163.1" 553 "Cocaine esterase (EC 3.1.1.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1382" "ERDMAN_1361" "VBIMycTub1140_1382" "PATRIC.652616.3.AP012340.CDS.1357989.1358663.rev" "PATRIC" "CDS" 1357989 1358663 675 "-" "FIG00638284" "PLF_1763_00402612" "PGF_01256876" "BAL65164.1" 224 "Integral membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1383" "ERDMAN_1362" "VBIMycTub1140_1383" "PATRIC.652616.3.AP012340.CDS.1358672.1360318.rev" "PATRIC" "CDS" 1358672 1360318 1647 "-" "FIG00996565" "PLF_1763_00001874" "PGF_00006351" "BAL65165.1" 548 "Efflux ABC transporter, permease protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1384" "ERDMAN_1363" "VBIMycTub1140_1384" "PATRIC.652616.3.AP012340.CDS.1360315.1361250.rev" "PATRIC" "CDS" 1360315 1361250 936 "-" "FIG00001005" "PLF_1763_00344701" "PGF_00884706" "BAL65166.1" 311 "Efflux ABC transporter, ATP-binding protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1385" "ERDMAN_1364" "VBIMycTub1140_1385" "PATRIC.652616.3.AP012340.CDS.1361240.1361878.rev" "PATRIC" "CDS" 1361240 1361878 639 "-" "FIG00554417" "PLF_1763_00001829" "PGF_07182652" "BAL65167.1" 212 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1386" "ERDMAN_1365" "VBIMycTub1140_1386" "PATRIC.652616.3.AP012340.CDS.1362020.1362763.rev" "PATRIC" "CDS" 1362020 1362763 744 "-" "FIG00821228" "PLF_1763_00001402" "PGF_00504549" "BAL65168.1" 247 "O-methyltransferase Rv1220c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1387" "ERDMAN_1366" "VBIMycTub1140_1387" "PATRIC.652616.3.AP012340.CDS.1362930.1363703.fwd" "PATRIC" "CDS" 1362930 1363703 774 "+" "FIG01303902" "PLF_1763_00001084" "PGF_00049398" "BAL65169.1" 257 "sigE" "Alternative RNA polymerase sigma factor SigE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1388" "VBIMycTub1140_1388" "PATRIC.652616.3.AP012340.CDS.1363673.1363861.fwd" "PATRIC" "CDS" 1363673 1363861 189 "+" "FIG01406544" "PLF_1763_00003963" "PGF_02413276" 62 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1389" "ERDMAN_1367" "VBIMycTub1140_1389" "PATRIC.652616.3.AP012340.CDS.1363858.1364325.fwd" "PATRIC" "CDS" 1363858 1364325 468 "+" "FIG00820545" "PLF_1763_00003934" "PGF_00806517" "BAL65170.1" 155 "Anti-sigma factor RseA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1390" "ERDMAN_1368" "VBIMycTub1140_1390" "PATRIC.652616.3.AP012340.CDS.1364405.1365979.fwd" "PATRIC" "CDS" 1364405 1365979 1575 "+" "FIG01109635" "PLF_1763_00000300" "PGF_00051278" "BAL65171.1" 524 "htrA" "Serine protease HtrA (DegP protein)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.132" "ERDMAN_0131" "VBIMycTub1140_0132" "PATRIC.652616.3.AP012340.CDS.136452.137042.fwd" "PATRIC" "CDS" 136452 137042 591 "+" "FIG00000620" "PLF_1763_00003255" "PGF_04760055" "BAL63948.1" 196 "gmhA" "D-sedoheptulose 7-phosphate isomerase (EC 5.3.1.28)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1391" "ERDMAN_1369" "VBIMycTub1140_1391" "PATRIC.652616.3.AP012340.CDS.1365981.1366376.fwd" "PATRIC" "CDS" 1365981 1366376 396 "+" "FIG00000670" "PLF_1763_00001448" "PGF_00709443" "BAL65172.1" 131 "tatB" "Twin-arginine translocation protein TatB" "GO:0008565|protein transporter activity;GO:0015031|protein transport"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1392" "ERDMAN_1370" "VBIMycTub1140_1392" "PATRIC.652616.3.AP012340.CDS.1366409.1367239.rev" "PATRIC" "CDS" 1366409 1367239 831 "-" "FIG01317004" "PLF_1763_00002941" "PGF_00010480" "BAL65173.1" 276 "HAD-superfamily subfamily IIA hydrolase, hypothetical 2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1393" "ERDMAN_1371" "VBIMycTub1140_1393" "PATRIC.652616.3.AP012340.CDS.1367350.1368813.rev" "PATRIC" "CDS" 1367350 1368813 1464 "-" "FIG00080072" "PLF_1763_00002600" "PGF_07202690" "BAL65174.1" 487 "transmembrane protein, distant homology with ydbT"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1394" "ERDMAN_1372" "VBIMycTub1140_1394" "PATRIC.652616.3.AP012340.CDS.1368810.1369244.rev" "PATRIC" "CDS" 1368810 1369244 435 "-" "FIG00031962" "PLF_1763_00002519" "PGF_00413873" "BAL65175.1" 144 "transmembrane protein, distant homology with ydbS"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1395" "ERDMAN_1373" "VBIMycTub1140_1395" "PATRIC.652616.3.AP012340.CDS.1369591.1369995.fwd" "PATRIC" "CDS" 1369591 1369995 405 "+" "FIG01405660" "PLF_1763_00003250" "PGF_02411666" "BAL65176.1" 134 "lpqX" "Lipoprotein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1396" "ERDMAN_1374" "VBIMycTub1140_1396" "PATRIC.652616.3.AP012340.CDS.1370062.1370220.fwd" "PATRIC" "CDS" 1370062 1370220 159 "+" "FIG00820787" "PLF_1763_00003427" "PGF_02412489" "BAL65177.1" 52 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1397" "ERDMAN_1375" "VBIMycTub1140_1397" "PATRIC.652616.3.AP012340.CDS.1370295.1371440.rev" "PATRIC" "CDS" 1370295 1371440 1146 "-" "FIG00448421" "PLF_1763_00000945" "PGF_00022722" "BAL65178.1" 381 "mrp" "Mrp protein homolog"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.15" "ERDMAN_0016" "VBIMycTub1140_0015" "PATRIC.652616.3.AP012340.CDS.13714.13995.rev" "PATRIC" "CDS" 13714 13995 282 "-" "FIG01124317" "PLF_1763_00001030" "PGF_03287828" "BAL63834.1" 93 "FIG018426: putative septation inhibitor protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1398" "ERDMAN_1376" "VBIMycTub1140_1398" "PATRIC.652616.3.AP012340.CDS.1371480.1372625.rev" "PATRIC" "CDS" 1371480 1372625 1146 "-" "FIG00692835" "PLF_1763_00001526" "PGF_08077981" "BAL65179.1" 381 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.133" "ERDMAN_0132" "VBIMycTub1140_0133" "PATRIC.652616.3.AP012340.CDS.137215.137508.rev" "PATRIC" "CDS" 137215 137508 294 "-" "FIG00820448" "PLF_1763_00003815" "PGF_02412853" "BAL63949.1" 97 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1399" "ERDMAN_1377" "VBIMycTub1140_1399" "PATRIC.652616.3.AP012340.CDS.1372840.1373382.rev" "PATRIC" "CDS" 1372840 1373382 543 "-" "FIG00816212" "PLF_1763_00001304" "PGF_00000494" "BAL65180.1" 180 "FIG00816212: Putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1400" "ERDMAN_1378" "VBIMycTub1140_1400" "PATRIC.652616.3.AP012340.CDS.1373379.1374686.rev" "PATRIC" "CDS" 1373379 1374686 1308 "-" "FIG00437800" "PLF_1763_00000867" "PGF_04560429" "BAL65181.1" 435 "Mg/Co/Ni transporter MgtE, CBS domain-containing"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1401" "ERDMAN_1379" "VBIMycTub1140_1401" "PATRIC.652616.3.AP012340.CDS.1374748.1375215.rev" "PATRIC" "CDS" 1374748 1375215 468 "-" "FIG01121868" "PLF_1763_00003429" "PGF_08225224" "BAL65182.1" 155 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1402" "ERDMAN_1380" "VBIMycTub1140_1402" "PATRIC.652616.3.AP012340.CDS.1375494.1376021.fwd" "PATRIC" "CDS" 1375494 1376021 528 "+" "FIG00945082" "PLF_1763_00012883" "PGF_03114956" "BAL65183.1" 175 "Putative transmembrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1403" "ERDMAN_1381" "VBIMycTub1140_1403" "PATRIC.652616.3.AP012340.CDS.1376048.1377448.fwd" "PATRIC" "CDS" 1376048 1377448 1401 "+" "FIG00002265" "PLF_1763_00001278" "PGF_01932859" "BAL65184.1" 466 "lpqY" "Maltodextrin ABC transporter, substrate-binding protein MdxE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.134" "ERDMAN_0133" "VBIMycTub1140_0134" "PATRIC.652616.3.AP012340.CDS.137706.138806.fwd" "PATRIC" "CDS" 137706 138806 1101 "+" "FIG00009038" "PLF_1763_00003100" "PGF_00420760" "BAL63950.1" 366 "hddA" "D-glycero-alpha-D-manno-heptose 7-phosphate kinase (EC 2.7.1.168)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1404" "ERDMAN_1382" "VBIMycTub1140_1404" "PATRIC.652616.3.AP012340.CDS.1377502.1378368.fwd" "PATRIC" "CDS" 1377502 1378368 867 "+" "FIG00019868" "PLF_1763_00171090" "PGF_00794375" "BAL65185.1" 288 "sugA" "Maltodextrin ABC transporter, permease protein MdxF"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1405" "ERDMAN_1383" "VBIMycTub1140_1405" "PATRIC.652616.3.AP012340.CDS.1378373.1379197.fwd" "PATRIC" "CDS" 1378373 1379197 825 "+" "FIG00007714" "PLF_1763_00001243" "PGF_10466077" "BAL65186.1" 274 "sugB" "Maltodextrin ABC transporter, permease protein MdxG"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1406" "ERDMAN_1384" "VBIMycTub1140_1406" "PATRIC.652616.3.AP012340.CDS.1379202.1380383.fwd" "PATRIC" "CDS" 1379202 1380383 1182 "+" "FIG01955932" "PLF_1763_00050060" "PGF_12728364" "BAL65187.1" 393 "sugC" "ABC transporter, ATP-binding protein (cluster 13, osmolytes)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1407" "ERDMAN_1385" "VBIMycTub1140_1407" "PATRIC.652616.3.AP012340.CDS.1380460.1381560.rev" "PATRIC" "CDS" 1380460 1381560 1101 "-" "FIG00004180" "PLF_1763_00000703" "PGF_04846590" "BAL65188.1" 366 "corA" "Magnesium and cobalt transport protein CorA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1408" "ERDMAN_1386" "VBIMycTub1140_1408" "PATRIC.652616.3.AP012340.CDS.1381731.1382720.fwd" "PATRIC" "CDS" 1381731 1382720 990 "+" "FIG00000455" "PLF_1763_00035649" "PGF_00018956" "BAL65189.1" 329 "mdh" "Malate dehydrogenase (EC 1.1.1.37)" "GO:0030060|L-malate dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1409" "ERDMAN_1387" "VBIMycTub1140_1409" "PATRIC.652616.3.AP012340.CDS.1382796.1383056.fwd" "PATRIC" "CDS" 1382796 1383056 261 "+" "FIG00822110" "PLF_1763_00003038" "PGF_02410982" "BAL65190.1" 86 "antitoxin VapB33 @ Antitoxin to Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1410" "ERDMAN_1388" "VBIMycTub1140_1410" "PATRIC.652616.3.AP012340.CDS.1383053.1383484.fwd" "PATRIC" "CDS" 1383053 1383484 432 "+" "FIG00822246" "PLF_1763_00003363" "PGF_02412446" "BAL65191.1" 143 "toxin VapC33 @ Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1411" "ERDMAN_1389" "VBIMycTub1140_1411" "PATRIC.652616.3.AP012340.CDS.1383507.1385195.rev" "PATRIC" "CDS" 1383507 1385195 1689 "-" "FIG01311212" "PLF_1763_00156209" "PGF_03046584" "BAL65192.1" 562 "PE_PGRS23" "PE_PGRS family protein => PE_PGRS23"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1412" "ERDMAN_1390" "VBIMycTub1140_1412" "PATRIC.652616.3.AP012340.CDS.1385375.1386235.fwd" "PATRIC" "CDS" 1385375 1386235 861 "+" "FIG00862992" "PLF_1763_00369000" "PGF_06513264" "BAL65193.1" 286 "lpqZ" "ABC transporter, substrate-binding protein (cluster 13, osmolytes)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1413" "ERDMAN_1391" "VBIMycTub1140_1413" "PATRIC.652616.3.AP012340.CDS.1386316.1387146.rev" "PATRIC" "CDS" 1386316 1387146 831 "-" "FIG01343100" "PLF_1763_00173715" "PGF_10532194" "BAL65194.1" 276 "Oxidoreductase, short-chain dehydrogenase/reductase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1414" "ERDMAN_1392" "VBIMycTub1140_1414" "PATRIC.652616.3.AP012340.CDS.1387203.1387472.rev" "PATRIC" "CDS" 1387203 1387472 270 "-" "FIG00823933" "PLF_1763_00003348" "PGF_10542814" "BAL65195.1" 89 "mRNA interferase RelE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1415" "ERDMAN_1393" "VBIMycTub1140_1415" "PATRIC.652616.3.AP012340.CDS.1387493.1387762.rev" "PATRIC" "CDS" 1387493 1387762 270 "-" "FIG01304488" "PLF_1763_00003304" "PGF_02412075" "BAL65196.1" 89 "RelB/StbD replicon stabilization protein (antitoxin to RelE/StbE)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1416" "ERDMAN_1394" "VBIMycTub1140_1416" "PATRIC.652616.3.AP012340.CDS.1387875.1391570.rev" "PATRIC" "CDS" 1387875 1391570 3696 "-" "FIG00004392" "PLF_1763_00268029" "PGF_00423351" "BAL65197.1" 1231 "kgd" "Dihydrolipoamide succinyltransferase component (E2) of 2-oxoglutarate dehydrogenase complex (EC 2.3.1.61) / 2-oxoglutarate dehydrogenase E1 component (EC 1.2.4.2) @ 2-oxoglutarate decarboxylase (EC 4.1.1.71) @ 2-hydroxy-3-oxoadipate synthase (EC 2.2.1.5)" "GO:0004149|dihydrolipoyllysine-residue succinyltransferase activity;GO:0004591|oxoglutarate dehydrogenase (succinyl-transferring) activity;GO:0008683|2-oxoglutarate decarboxylase activity;GO:0050439|2-hydroxy-3-oxoadipate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.135" "ERDMAN_0134" "VBIMycTub1140_0135" "PATRIC.652616.3.AP012340.CDS.139089.139277.fwd" "PATRIC" "CDS" 139089 139277 189 "+" "FIG00821502" "PLF_1763_00003020" "PGF_02410972" "BAL63951.1" 62 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1417" "ERDMAN_1395" "VBIMycTub1140_1417" "PATRIC.652616.3.AP012340.CDS.1391712.1392398.rev" "PATRIC" "CDS" 1391712 1392398 687 "-" "FIG01121868" "PLF_1763_00002220" "PGF_00409083" "BAL65198.1" 228 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.136" "ERDMAN_0135" "VBIMycTub1140_0136" "PATRIC.652616.3.AP012340.CDS.139400.140164.rev" "PATRIC" "CDS" 139400 140164 765 "-" "FIG01121868" "PLF_1763_00349684" "PGF_00930759" "BAL63952.1" 254 "L,D-transpeptidase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1418" "ERDMAN_1396" "VBIMycTub1140_1418" "PATRIC.652616.3.AP012340.CDS.1394339.1397758.rev" "PATRIC" "CDS" 1394339 1397758 3420 "-" "FIG01310944" "PLF_1763_00061762" "PGF_01050375" "BAL65199.1" 1139 "Superfamily I DNA and RNA helicases and helicase subunits"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1419" "ERDMAN_1397" "VBIMycTub1140_1419" "PATRIC.652616.3.AP012340.CDS.1397814.1398182.rev" "PATRIC" "CDS" 1397814 1398182 369 "-" "FIG01347963" "PLF_1763_00001711" "PGF_02404912" "BAL65200.1" 122 "lprE" "Lipoprotein LprE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1420" "ERDMAN_1398" "VBIMycTub1140_1420" "PATRIC.652616.3.AP012340.CDS.1398163.1398276.fwd" "PATRIC" "CDS" 1398163 1398276 114 "+" "FIG00638284" "PLF_1763_00003433" "PGF_02414560" "BAL65201.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1421" "ERDMAN_1399" "VBIMycTub1140_1421" "PATRIC.652616.3.AP012340.CDS.1398295.1398453.fwd" "PATRIC" "CDS" 1398295 1398453 159 "+" "FIG00820412" "PLF_1763_00004147" "PGF_02414560" "BAL65202.1" 52 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1422" "ERDMAN_1400" "VBIMycTub1140_1422" "PATRIC.652616.3.AP012340.CDS.1398488.1400179.fwd" "PATRIC" "CDS" 1398488 1400179 1692 "+" "FIG00001381" "PLF_1763_00000359" "PGF_00421098" "BAL65203.1" 563 "deaD" "DEAD-box ATP-dependent RNA helicase DeaD (= CshA) (EC 3.6.4.13)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1423" "ERDMAN_1401" "VBIMycTub1140_1423" "PATRIC.652616.3.AP012340.CDS.1400176.1401327.fwd" "PATRIC" "CDS" 1400176 1401327 1152 "+" "FIG01336741" "PLF_1763_00002312" "PGF_00003640" "BAL65204.1" 383 "FIG143263: Glycosyl transferase / Lysophospholipid acyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1424" "ERDMAN_1402" "VBIMycTub1140_1424" "PATRIC.652616.3.AP012340.CDS.1401296.1401904.rev" "PATRIC" "CDS" 1401296 1401904 609 "-" "FIG01327895" "PLF_1763_00002627" "PGF_07182652" "BAL65205.1" 202 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1425" "ERDMAN_1403" "VBIMycTub1140_1425" "PATRIC.652616.3.AP012340.CDS.1401904.1403109.rev" "PATRIC" "CDS" 1401904 1403109 1206 "-" "FIG01370899" "PLF_1763_00003741" "PGF_00420186" "BAL65206.1" 401 "cyp130" "Cytochrome P450 130"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1426" "ERDMAN_1404" "VBIMycTub1140_1426" "PATRIC.652616.3.AP012340.CDS.1403235.1404602.rev" "PATRIC" "CDS" 1403235 1404602 1368 "-" "FIG00821456" "PLF_1763_00148725" "PGF_02420191" "BAL65207.1" 455 "Glycolate dehydrogenase (EC 1.1.99.14), subunit GlcD" "GO:0019154|glycolate dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.137" "ERDMAN_0136" "VBIMycTub1140_0137" "PATRIC.652616.3.AP012340.CDS.140333.141277.fwd" "PATRIC" "CDS" 140333 141277 945 "+" "FIG00031825" "PLF_1763_00002217" "PGF_00058635" "BAL63953.1" 314 "oxyS" "Transcriptional regulator OxyS, LysR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1427" "ERDMAN_1405" "VBIMycTub1140_1427" "PATRIC.652616.3.AP012340.CDS.1404599.1405858.rev" "PATRIC" "CDS" 1404599 1405858 1260 "-" "FIG01357208" "PLF_1763_00151488" "PGF_03091029" "BAL65208.1" 419 "MFS-type drug/proton antiporter Rv1258c family => implicated in rifampicin, ofloxacin, isoniazid, ethambutol efflux"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1428" "ERDMAN_1406" "VBIMycTub1140_1428" "PATRIC.652616.3.AP012340.CDS.1405944.1406756.fwd" "PATRIC" "CDS" 1405944 1406756 813 "+" "FIG01307118" "PLF_1763_00141585" "PGF_01962206" "BAL65209.1" 270 "Uracil-DNA glycosylase, family 5 (EC 3.2.2.27)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1429" "ERDMAN_1407" "VBIMycTub1140_1429" "PATRIC.652616.3.AP012340.CDS.1406770.1407876.fwd" "PATRIC" "CDS" 1406770 1407876 1107 "+" "FIG01321859" "PLF_1763_00000140" "PGF_01890265" "BAL65210.1" 368 "Oxidoreductase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1430" "ERDMAN_1408" "VBIMycTub1140_1430" "PATRIC.652616.3.AP012340.CDS.1408002.1408451.rev" "PATRIC" "CDS" 1408002 1408451 450 "-" "FIG01351665" "PLF_1763_00003775" "PGF_12849235" "BAL65211.1" 149 "AclJ"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1431" "ERDMAN_1409" "VBIMycTub1140_1431" "PATRIC.652616.3.AP012340.CDS.1408456.1408881.rev" "PATRIC" "CDS" 1408456 1408881 426 "-" "FIG00008590" "PLF_1763_00001904" "PGF_00404817" "BAL65212.1" 141 "Bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) (EC 3.6.1.17)" "GO:0004081|bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1432" "ERDMAN_1410" "VBIMycTub1140_1432" "PATRIC.652616.3.AP012340.CDS.1408949.1410337.fwd" "PATRIC" "CDS" 1408949 1410337 1389 "+" "FIG00454158" "PLF_1763_00022426" "PGF_01004092" "BAL65213.1" 462 "amiB2" "putative amidase Rv1263"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1433" "ERDMAN_1411" "VBIMycTub1140_1433" "PATRIC.652616.3.AP012340.CDS.1410424.1411605.fwd" "PATRIC" "CDS" 1410424 1411605 1182 "+" "FIG00001294" "PLF_1763_00021535" "PGF_08828113" "BAL65214.1" 393 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1434" "ERDMAN_1412" "VBIMycTub1140_1434" "PATRIC.652616.3.AP012340.CDS.1411765.1411878.fwd" "PATRIC" "CDS" 1411765 1411878 114 "+" "FIG01630361" "PLF_1763_00003939" "PGF_02413203" "BAL65215.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1435" "ERDMAN_1413" "VBIMycTub1140_1435" "PATRIC.652616.3.AP012340.CDS.1411904.1412458.fwd" "PATRIC" "CDS" 1411904 1412458 555 "+" "FIG00820423" "PLF_1763_00001455" "PGF_08225224" "BAL65216.1" 184 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1436" "ERDMAN_1414" "VBIMycTub1140_1436" "PATRIC.652616.3.AP012340.CDS.1412478.1414403.rev" "PATRIC" "CDS" 1412478 1414403 1926 "-" "FIG00933379" "PLF_1763_00000135" "PGF_00051509" "BAL65217.1" 641 "pknH" "Serine/threonine-protein kinase PknD (EC 2.7.11.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.138" "ERDMAN_0137" "VBIMycTub1140_0138" "PATRIC.652616.3.AP012340.CDS.141261.143018.rev" "PATRIC" "CDS" 141261 143018 1758 "-" "FIG00340853" "PLF_1763_00002024" "PGF_00028527" "BAL63954.1" 585 "oxcA" "Oxalyl-CoA decarboxylase (EC 4.1.1.8)" "GO:0008949|oxalyl-CoA decarboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.16" "ERDMAN_0017" "VBIMycTub1140_0016" "PATRIC.652616.3.AP012340.CDS.14134.14877.fwd" "PATRIC" "CDS" 14134 14877 744 "+" "FIG00480581" "PLF_1763_00001113" "PGF_06332624" "BAL63835.1" 247 "FIG215594: Membrane spanning protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1437" "ERDMAN_1415" "VBIMycTub1140_1437" "PATRIC.652616.3.AP012340.CDS.1414699.1415847.rev" "PATRIC" "CDS" 1414699 1415847 1149 "-" "FIG01308039" "PLF_1763_00001516" "PGF_10312254" "BAL65218.1" 382 "embR" "Transcriptional regulatory protein EmbR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1438" "ERDMAN_1416" "VBIMycTub1140_1438" "PATRIC.652616.3.AP012340.CDS.1415913.1416164.rev" "PATRIC" "CDS" 1415913 1416164 252 "-" "FIG00821407" "PLF_1763_00003875" "PGF_02413052" "BAL65219.1" 83 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1439" "ERDMAN_1417" "VBIMycTub1140_1439" "PATRIC.652616.3.AP012340.CDS.1416176.1416874.rev" "PATRIC" "CDS" 1416176 1416874 699 "-" "FIG00820364" "PLF_1763_00003229" "PGF_08225224" "BAL65220.1" 232 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1440" "ERDMAN_1418" "VBIMycTub1140_1440" "PATRIC.652616.3.AP012340.CDS.1417097.1417471.rev" "PATRIC" "CDS" 1417097 1417471 375 "-" "FIG01121868" "PLF_1763_00003450" "PGF_00409363" "BAL65221.1" 124 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1441" "ERDMAN_1419" "VBIMycTub1140_1441" "PATRIC.652616.3.AP012340.CDS.1417532.1418266.rev" "PATRIC" "CDS" 1417532 1418266 735 "-" "FIG01394562" "PLF_1763_00027603" "PGF_00218592" "BAL65222.1" 244 "lprA" "Lipoprotein LprA, modulates TLR2-induced inflammatory response in mammalian host"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1442" "ERDMAN_1420" "VBIMycTub1140_1442" "PATRIC.652616.3.AP012340.CDS.1418479.1418820.rev" "PATRIC" "CDS" 1418479 1418820 342 "-" "FIG00820783" "PLF_1763_00002984" "PGF_05432162" "BAL65223.1" 113 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1443" "ERDMAN_1421" "VBIMycTub1140_1443" "PATRIC.652616.3.AP012340.CDS.1418928.1420733.rev" "PATRIC" "CDS" 1418928 1420733 1806 "-" "FIG00017059" "PLF_1763_00000363" "PGF_10347424" "BAL65224.1" 601 "Efflux ABC transporter, permease/ATP-binding protein SCO2464"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1444" "ERDMAN_1422" "VBIMycTub1140_1444" "PATRIC.652616.3.AP012340.CDS.1420820.1422568.rev" "PATRIC" "CDS" 1420820 1422568 1749 "-" "FIG01956052" "PLF_1763_00001567" "PGF_07367015" "BAL65225.1" 582 "Efflux ABC transporter, permease/ATP-binding protein SCO2463"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1445" "ERDMAN_1423" "VBIMycTub1140_1445" "PATRIC.652616.3.AP012340.CDS.1422748.1423272.fwd" "PATRIC" "CDS" 1422748 1423272 525 "+" "FIG01320481" "PLF_1763_00001643" "PGF_00339308" "BAL65226.1" 174 "lprB" "Lipoprotein LprB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1446" "ERDMAN_1424" "VBIMycTub1140_1446" "PATRIC.652616.3.AP012340.CDS.1423269.1423811.fwd" "PATRIC" "CDS" 1423269 1423811 543 "+" "FIG01333765" "PLF_1763_00001038" "PGF_00388446" "BAL65227.1" 180 "lprC" "Lipoprotein LprC"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1447" "ERDMAN_1425" "VBIMycTub1140_1447" "PATRIC.652616.3.AP012340.CDS.1423956.1424462.rev" "PATRIC" "CDS" 1423956 1424462 507 "-" "FIG00001992" "PLF_1763_00004663" "PGF_10474010" "BAL65228.1" 168 "Phosphohistidine phosphatase SixA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1448" "ERDMAN_1426" "VBIMycTub1140_1448" "PATRIC.652616.3.AP012340.CDS.1424784.1425935.fwd" "PATRIC" "CDS" 1424784 1425935 1152 "+" "FIG00614964" "PLF_1763_00001176" "PGF_02278516" "BAL65229.1" 383 "DNA double-strand break repair protein Mre11"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1449" "ERDMAN_1427" "VBIMycTub1140_1449" "PATRIC.652616.3.AP012340.CDS.1425932.1428559.fwd" "PATRIC" "CDS" 1425932 1428559 2628 "+" "FIG00944792" "PLF_1763_00001501" "PGF_04291117" "BAL65230.1" 875 "DNA double-strand break repair Rad50 ATPase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1450" "ERDMAN_1428" "VBIMycTub1140_1450" "PATRIC.652616.3.AP012340.CDS.1428580.1430166.fwd" "PATRIC" "CDS" 1428580 1430166 1587 "+" "FIG00057416" "PLF_1763_00211164" "PGF_00915037" "BAL65231.1" 528 "Oxidoreductase, GMC family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1451" "ERDMAN_1429" "VBIMycTub1140_1451" "PATRIC.652616.3.AP012340.CDS.1430183.1431820.rev" "PATRIC" "CDS" 1430183 1431820 1638 "-" "FIG01307132" "PLF_1763_00001530" "PGF_02147779" "BAL65232.1" 545 "oppA" "Oligopeptide ABC transporter, substrate-binding protein OppA (TC 3.A.1.5.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.139" "ERDMAN_0138" "VBIMycTub1140_0139" "PATRIC.652616.3.AP012340.CDS.143131.144759.fwd" "PATRIC" "CDS" 143131 144759 1629 "+" "FIG00018699" "PLF_1763_00017590" "PGF_00017554" "BAL63955.1" 542 "fadD7" "CoA ligase @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD7" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1452" "ERDMAN_1430" "VBIMycTub1140_1452" "PATRIC.652616.3.AP012340.CDS.1431951.1433789.rev" "PATRIC" "CDS" 1431951 1433789 1839 "-" "FIG01955327" "PLF_1763_00001598" "PGF_00026991" "BAL65233.1" 612 "oppD" "Oligopeptide ABC transporter, ATP-binding protein OppD (TC 3.A.1.5.1) / Oligopeptide ABC transporter, ATP-binding protein OppF (TC 3.A.1.5.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1453" "ERDMAN_1431" "VBIMycTub1140_1453" "PATRIC.652616.3.AP012340.CDS.1433786.1434631.rev" "PATRIC" "CDS" 1433786 1434631 846 "-" "FIG00455853" "PLF_1763_00001658" "PGF_10569020" "BAL65234.1" 281 "oppC" "Oligopeptide ABC transporter, permease protein OppC (TC 3.A.1.5.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1454" "ERDMAN_1432" "VBIMycTub1140_1454" "PATRIC.652616.3.AP012340.CDS.1434658.1435635.rev" "PATRIC" "CDS" 1434658 1435635 978 "-" "FIG00945384" "PLF_1763_00001599" "PGF_00977978" "BAL65235.1" 325 "oppB" "Oligopeptide ABC transporter, permease protein OppB (TC 3.A.1.5.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1455" "ERDMAN_1433" "VBIMycTub1140_1455" "PATRIC.652616.3.AP012340.CDS.1435634.1435780.fwd" "PATRIC" "CDS" 1435634 1435780 147 "+" "FIG00821098" "PLF_1763_00003632" "PGF_02412601" "BAL65236.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1456" "ERDMAN_1434" "VBIMycTub1140_1456" "PATRIC.652616.3.AP012340.CDS.1435842.1436333.fwd" "PATRIC" "CDS" 1435842 1436333 492 "+" "FIG00023019" "PLF_1763_00001368" "PGF_00416525" "BAL65237.1" 163 "Carbonic anhydrase, beta class (EC 4.2.1.1)" "GO:0004089|carbonate dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1457" "ERDMAN_1435" "VBIMycTub1140_1457" "PATRIC.652616.3.AP012340.CDS.1436445.1437425.fwd" "PATRIC" "CDS" 1436445 1437425 981 "+" "FIG00000728" "PLF_1763_00001320" "PGF_00054961" "BAL65238.1" 326 "cysD" "Sulfate adenylyltransferase subunit 2 (EC 2.7.7.4)" "GO:0004781|sulfate adenylyltransferase (ATP) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1458" "ERDMAN_1436" "VBIMycTub1140_1458" "PATRIC.652616.3.AP012340.CDS.1437425.1439269.fwd" "PATRIC" "CDS" 1437425 1439269 1845 "+" "FIG00133521" "PLF_1763_00122752" "PGF_00054960" "BAL65239.1" 614 "cysN" "Sulfate adenylyltransferase subunit 1 (EC 2.7.7.4) / Adenylylsulfate kinase (EC 2.7.1.25)" "GO:0004020|adenylylsulfate kinase activity;GO:0004781|sulfate adenylyltransferase (ATP) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1459" "ERDMAN_1437" "VBIMycTub1140_1459" "PATRIC.652616.3.AP012340.CDS.1439329.1439808.fwd" "PATRIC" "CDS" 1439329 1439808 480 "+" "FIG00011844" "PLF_1763_00001702" "PGF_00036456" "BAL65240.1" 159 "Predicted transcriptional regulator of sulfate adenylyltransferase, Rrf2 family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1460" "ERDMAN_1438" "VBIMycTub1140_1460" "PATRIC.652616.3.AP012340.CDS.1439866.1441236.fwd" "PATRIC" "CDS" 1439866 1441236 1371 "+" "FIG00998593" "PLF_1763_00002037" "PGF_08038310" "BAL65241.1" 456 "Putative esterase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1461" "ERDMAN_1439" "VBIMycTub1140_1461" "PATRIC.652616.3.AP012340.CDS.1441291.1441917.fwd" "PATRIC" "CDS" 1441291 1441917 627 "+" "FIG00820434" "PLF_1763_00003208" "PGF_08225224" "BAL65242.1" 208 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1462" "ERDMAN_1440" "VBIMycTub1140_1462" "PATRIC.652616.3.AP012340.CDS.1442056.1443459.rev" "PATRIC" "CDS" 1442056 1443459 1404 "-" "FIG00820283" "PLF_1763_00290171" "PGF_08225224" "BAL65243.1" 467 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1463" "ERDMAN_1441" "VBIMycTub1140_1463" "PATRIC.652616.3.AP012340.CDS.1443791.1443946.fwd" "PATRIC" "CDS" 1443791 1443946 156 "+" "FIG01367518" "PLF_1763_00003346" "PGF_08225224" "BAL65244.1" 51 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1464" "ERDMAN_1442" "VBIMycTub1140_1464" "PATRIC.652616.3.AP012340.CDS.1444073.1444408.rev" "PATRIC" "CDS" 1444073 1444408 336 "-" "FIG00823514" "PLF_1763_00253244" "PGF_03950881" "BAL65245.1" 111 "FIG00823516: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1465" "ERDMAN_1444" "VBIMycTub1140_1465" "PATRIC.652616.3.AP012340.CDS.1444953.1446605.fwd" "PATRIC" "CDS" 1444953 1446605 1653 "+" "FIG00000088" "PLF_1763_00034192" "PGF_00926109" "BAL65246.1" 550 "argS" "Arginyl-tRNA synthetase (EC 6.1.1.19)" "GO:0004814|arginine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1466" "ERDMAN_1445" "VBIMycTub1140_1466" "PATRIC.652616.3.AP012340.CDS.1446602.1447945.fwd" "PATRIC" "CDS" 1446602 1447945 1344 "+" "FIG00138250" "PLF_1763_00000985" "PGF_10373476" "BAL65247.1" 447 "lysA" "Diaminopimelate decarboxylase (EC 4.1.1.20)" "GO:0008836|diaminopimelate decarboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.140" "ERDMAN_0139" "VBIMycTub1140_0140" "PATRIC.652616.3.AP012340.CDS.144760.146904.rev" "PATRIC" "CDS" 144760 146904 2145 "-" "FIG00001635" "PLF_1763_00103383" "PGF_00060412" "BAL63956.1" 714 "fusA2" "Elongation factor G-like protein TM_1651"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1467" "ERDMAN_1446" "VBIMycTub1140_1467" "PATRIC.652616.3.AP012340.CDS.1447949.1449274.fwd" "PATRIC" "CDS" 1447949 1449274 1326 "+" "FIG00000434" "PLF_1763_00000741" "PGF_00492707" "BAL65248.1" 441 "thrA" "Homoserine dehydrogenase (EC 1.1.1.3)" "GO:0004412|homoserine dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1468" "ERDMAN_1447" "VBIMycTub1140_1468" "PATRIC.652616.3.AP012340.CDS.1449271.1450353.fwd" "PATRIC" "CDS" 1449271 1450353 1083 "+" "FIG00000134" "PLF_1763_00000452" "PGF_03316046" "BAL65249.1" 360 "thrC" "Threonine synthase (EC 4.2.3.1)" "GO:0004795|threonine synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1469" "ERDMAN_1448" "VBIMycTub1140_1469" "PATRIC.652616.3.AP012340.CDS.1450353.1450577.fwd" "PATRIC" "CDS" 1450353 1450577 225 "+" "FIG01430941" "PLF_1763_00120269" "PGF_08225224" "BAL65250.1" 74 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1470" "ERDMAN_1449" "VBIMycTub1140_1470" "PATRIC.652616.3.AP012340.CDS.1450571.1451521.fwd" "PATRIC" "CDS" 1450571 1451521 951 "+" "FIG00000582" "PLF_1763_00000666" "PGF_00012356" "BAL65251.1" 316 "thrB" "Homoserine kinase (EC 2.7.1.39)" "GO:0004413|homoserine kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1471" "ERDMAN_1450" "VBIMycTub1140_1471" "PATRIC.652616.3.AP012340.CDS.1451778.1453586.fwd" "PATRIC" "CDS" 1451778 1453586 1809 "+" "FIG00000392" "PLF_1763_00000453" "PGF_00057483" "BAL65252.1" 602 "rho" "Transcription termination factor Rho" "GO:0003715|transcription termination factor activity;GO:0003723|RNA binding;GO:0005524|ATP binding;GO:0006353|transcription termination;GO:0015986|ATP synthesis coupled proton transport;GO:0016469|proton-transporting two-sector ATPase complex"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1472" "VBIMycTub1140_1472" "PATRIC.652616.3.AP012340.CDS.1453544.1453726.rev" "PATRIC" "CDS" 1453544 1453726 183 "-" "FIG01228517" "PLF_1763_00003457" "PGF_02412506" 60 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1473" "ERDMAN_1451" "VBIMycTub1140_1473" "PATRIC.652616.3.AP012340.CDS.1453836.1453979.fwd" "PATRIC" "CDS" 1453836 1453979 144 "+" "FIG00000092" "PLF_1763_00001225" "PGF_05770273" "BAL65253.1" 47 "rpmE" "LSU ribosomal protein L31p @ LSU ribosomal protein L31p, zinc-dependent"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1474" "ERDMAN_1452" "VBIMycTub1140_1474" "PATRIC.652616.3.AP012340.CDS.1454069.1455142.fwd" "PATRIC" "CDS" 1454069 1455142 1074 "+" "FIG00000188" "PLF_1763_00000601" "PGF_00030640" "BAL65254.1" 357 "prfA" "Peptide chain release factor 1" "GO:0003747|translation release factor activity;GO:0006415|translational termination"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1475" "ERDMAN_1453" "VBIMycTub1140_1475" "PATRIC.652616.3.AP012340.CDS.1455202.1456116.fwd" "PATRIC" "CDS" 1455202 1456116 915 "+" "FIG00795509" "PLF_1763_00001808" "PGF_05580933" "BAL65255.1" 304 "hemK" "Peptide chain release factor N(5)-glutamine methyltransferase (EC 2.1.1.297)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1476" "ERDMAN_1454" "VBIMycTub1140_1476" "PATRIC.652616.3.AP012340.CDS.1456132.1456785.fwd" "PATRIC" "CDS" 1456132 1456785 654 "+" "FIG01307104" "PLF_1763_00001079" "PGF_01898991" "BAL65256.1" 217 "Threonylcarbamoyl-AMP synthase (EC 2.7.7.87)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1477" "ERDMAN_1455" "VBIMycTub1140_1477" "PATRIC.652616.3.AP012340.CDS.1456869.1458083.fwd" "PATRIC" "CDS" 1456869 1458083 1215 "+" "FIG01955782" "PLF_1763_00000927" "PGF_03062930" "BAL65257.1" 404 "rfe" "Decaprenyl-phosphate N-acetylglucosaminephosphotransferase (EC 2.7.8.35)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1478" "ERDMAN_1456" "VBIMycTub1140_1478" "PATRIC.652616.3.AP012340.CDS.1458340.1458825.fwd" "PATRIC" "CDS" 1458340 1458825 486 "+" "FIG01955820" "PLF_1763_00010772" "PGF_00003153" "BAL65258.1" 161 "ATP synthase protein I"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1479" "ERDMAN_1457" "VBIMycTub1140_1479" "PATRIC.652616.3.AP012340.CDS.1458818.1459570.fwd" "PATRIC" "CDS" 1458818 1459570 753 "+" "FIG00000138" "PLF_1763_00000720" "PGF_08518355" "BAL65259.1" 250 "atpB" "ATP synthase F0 sector subunit a (EC 3.6.3.14)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1480" "ERDMAN_1458" "VBIMycTub1140_1480" "PATRIC.652616.3.AP012340.CDS.1459619.1459864.fwd" "PATRIC" "CDS" 1459619 1459864 246 "+" "FIG00017607" "PLF_1763_00001020" "PGF_10444145" "BAL65260.1" 81 "atpE" "ATP synthase F0 sector subunit c (EC 3.6.3.14)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1481" "ERDMAN_1459" "VBIMycTub1140_1481" "PATRIC.652616.3.AP012340.CDS.1459904.1460410.fwd" "PATRIC" "CDS" 1459904 1460410 507 "+" "FIG00000186" "PLF_1763_00001523" "PGF_00015120" "BAL65261.1" 168 "atpF" "ATP synthase F0 sector subunit b' (EC 3.6.3.14)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1482" "ERDMAN_1460" "VBIMycTub1140_1482" "PATRIC.652616.3.AP012340.CDS.1460417.1461757.fwd" "PATRIC" "CDS" 1460417 1461757 1341 "+" "FIG01305175" "PLF_1763_00001973" "PGF_00015100" "BAL65262.1" 446 "atpH" "ATP synthase F0 sector subunit b (EC 3.6.3.14) / ATP synthase delta chain (EC 3.6.3.14)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1483" "ERDMAN_1461" "VBIMycTub1140_1483" "PATRIC.652616.3.AP012340.CDS.1461802.1463451.fwd" "PATRIC" "CDS" 1461802 1463451 1650 "+" "FIG00000082" "PLF_1763_00000394" "PGF_04569524" "BAL65263.1" 549 "atpA" "ATP synthase alpha chain (EC 3.6.3.14)" "GO:0046933|hydrogen ion transporting ATP synthase activity, rotational mechanism;GO:0046961|hydrogen ion transporting ATPase activity, rotational mechanism"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1484" "ERDMAN_1462" "VBIMycTub1140_1484" "PATRIC.652616.3.AP012340.CDS.1463458.1464375.fwd" "PATRIC" "CDS" 1463458 1464375 918 "+" "FIG00023994" "PLF_1763_00001021" "PGF_00015259" "BAL65264.1" 305 "atpG" "ATP synthase gamma chain (EC 3.6.3.14)" "GO:0046933|hydrogen ion transporting ATP synthase activity, rotational mechanism;GO:0046961|hydrogen ion transporting ATPase activity, rotational mechanism"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1485" "ERDMAN_1463" "VBIMycTub1140_1485" "PATRIC.652616.3.AP012340.CDS.1464415.1465875.fwd" "PATRIC" "CDS" 1464415 1465875 1461 "+" "FIG00040241" "PLF_1763_00000413" "PGF_05195027" "BAL65265.1" 486 "atpD" "ATP synthase beta chain (EC 3.6.3.14)" "GO:0046933|hydrogen ion transporting ATP synthase activity, rotational mechanism;GO:0046961|hydrogen ion transporting ATPase activity, rotational mechanism"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1486" "ERDMAN_1464" "VBIMycTub1140_1486" "PATRIC.652616.3.AP012340.CDS.1465889.1466254.fwd" "PATRIC" "CDS" 1465889 1466254 366 "+" "FIG00000249" "PLF_1763_00001174" "PGF_07919746" "BAL65266.1" 121 "atpC" "ATP synthase epsilon chain (EC 3.6.3.14)" "GO:0046933|hydrogen ion transporting ATP synthase activity, rotational mechanism;GO:0046961|hydrogen ion transporting ATPase activity, rotational mechanism"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1487" "ERDMAN_1465" "VBIMycTub1140_1487" "PATRIC.652616.3.AP012340.CDS.1466274.1466705.fwd" "PATRIC" "CDS" 1466274 1466705 432 "+" "FIG01121868" "PLF_1763_00237161" "PGF_06796704" "BAL65267.1" 143 "Uncharacterized protein Rv1312"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1488" "ERDMAN_1466" "VBIMycTub1140_1488" "PATRIC.652616.3.AP012340.CDS.1466745.1468079.rev" "PATRIC" "CDS" 1466745 1468079 1335 "-" "FIG01306568" "PLF_1763_00000012" "PGF_01000105" "BAL65268.1" 444 "Mobile element protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1489" "ERDMAN_1467" "VBIMycTub1140_1489" "PATRIC.652616.3.AP012340.CDS.1468245.1468826.rev" "PATRIC" "CDS" 1468245 1468826 582 "-" "FIG00001045" "PLF_1763_00000261" "PGF_01447139" "BAL65269.1" 193 "ATP:Cob(I)alamin adenosyltransferase (EC 2.5.1.17)" "GO:0008817|cob(I)yrinic acid a,c-diamide adenosyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1490" "ERDMAN_1468" "VBIMycTub1140_1490" "PATRIC.652616.3.AP012340.CDS.1468895.1470151.fwd" "PATRIC" "CDS" 1468895 1470151 1257 "+" "FIG00034392" "PLF_1763_00000167" "PGF_00900122" "BAL65270.1" 418 "murA" "UDP-N-acetylglucosamine 1-carboxyvinyltransferase (EC 2.5.1.7)" "GO:0008760|UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.141" "ERDMAN_0140" "VBIMycTub1140_0141" "PATRIC.652616.3.AP012340.CDS.147041.147475.rev" "PATRIC" "CDS" 147041 147475 435 "-" "FIG00822235" "PLF_1763_00208856" "PGF_08225224" "BAL63957.1" 144 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1491" "ERDMAN_1470" "VBIMycTub1140_1491" "PATRIC.652616.3.AP012340.CDS.1472038.1472187.fwd" "PATRIC" "CDS" 1472038 1472187 150 "+" "FIG00820805" "PLF_1763_00003686" "PGF_02412636" "BAL65271.1" 49 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1492" "ERDMAN_1473" "VBIMycTub1140_1492" "PATRIC.652616.3.AP012340.CDS.1475708.1476205.rev" "PATRIC" "CDS" 1475708 1476205 498 "-" "FIG00000328" "PLF_1763_00297551" "PGF_10483430" "BAL65272.1" 165 "ogt" "Methylated-DNA--protein-cysteine methyltransferase (EC 2.1.1.63)" "GO:0003908|methylated-DNA-[protein]-cysteine S-methyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1493" "ERDMAN_1474" "VBIMycTub1140_1493" "PATRIC.652616.3.AP012340.CDS.1476202.1477692.rev" "PATRIC" "CDS" 1476202 1477692 1491 "-" "FIG00000328" "PLF_1763_00000211" "PGF_03858132" "BAL65273.1" 496 "alkA" "Methylphosphotriester-DNA--protein-cysteine S-methyltransferase (EC 2.1.1.n11) / DNA-3-methyladenine glycosylase II (EC 3.2.2.21)" "GO:0003905|alkylbase DNA N-glycosylase activity;GO:0003905|DNA-3-methyladenine glycosylase activity;GO:0003905|DNA-7-methylguanine glycosylase activity;GO:0003905|DNA-7-methyladenine glycosylase activity;GO:0003905|DNA-3-methylguanine glycosylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1494" "ERDMAN_1475" "VBIMycTub1140_1494" "PATRIC.652616.3.AP012340.CDS.1477773.1479398.rev" "PATRIC" "CDS" 1477773 1479398 1626 "-" "FIG00001294" "PLF_1763_00150637" "PGF_08828113" "BAL65274.1" 541 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.142" "ERDMAN_0141" "VBIMycTub1140_0142" "PATRIC.652616.3.AP012340.CDS.147810.147992.fwd" "PATRIC" "CDS" 147810 147992 183 "+" "PLF_1763_00003656" "PGF_12908913" "BAL63958.1" 60 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1495" "ERDMAN_1476" "VBIMycTub1140_1495" "PATRIC.652616.3.AP012340.CDS.1479468.1481066.rev" "PATRIC" "CDS" 1479468 1481066 1599 "-" "FIG00001294" "PLF_1763_00000055" "PGF_08828113" "BAL65275.1" 532 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.143" "ERDMAN_0142" "VBIMycTub1140_0143" "PATRIC.652616.3.AP012340.CDS.147989.148357.fwd" "PATRIC" "CDS" 147989 148357 369 "+" "FIG01313120" "PLF_1763_00003288" "PGF_02411956" "BAL63959.1" 122 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1496" "ERDMAN_1477" "VBIMycTub1140_1496" "PATRIC.652616.3.AP012340.CDS.1481073.1482749.rev" "PATRIC" "CDS" 1481073 1482749 1677 "-" "FIG00001294" "PLF_1763_00000055" "PGF_08828113" "BAL65276.1" 558 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1497" "ERDMAN_1478" "VBIMycTub1140_1497" "PATRIC.652616.3.AP012340.CDS.1482762.1484333.rev" "PATRIC" "CDS" 1482762 1484333 1572 "-" "FIG00001294" "PLF_1763_00002276" "PGF_08828113" "BAL65277.1" 523 "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.144" "ERDMAN_0143" "VBIMycTub1140_0144" "PATRIC.652616.3.AP012340.CDS.148438.148605.rev" "PATRIC" "CDS" 148438 148605 168 "-" "FIG01389795" "PLF_1763_00004148" "PGF_08225224" "BAL63960.1" 55 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1498" "ERDMAN_1479" "VBIMycTub1140_1498" "PATRIC.652616.3.AP012340.CDS.1484536.1485207.fwd" "PATRIC" "CDS" 1484536 1485207 672 "+" "FIG00945501" "PLF_1763_00000195" "PGF_00001331" "BAL65278.1" 223 "Endonuclease NucS"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1499" "ERDMAN_1480" "VBIMycTub1140_1499" "PATRIC.652616.3.AP012340.CDS.1485230.1485526.fwd" "PATRIC" "CDS" 1485230 1485526 297 "+" "FIG00997640" "PLF_1763_00004345" "PGF_00020650" "BAL65279.1" 98 "ATP/GTP-binding protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1500" "ERDMAN_1481" "VBIMycTub1140_1500" "PATRIC.652616.3.AP012340.CDS.1485561.1486019.rev" "PATRIC" "CDS" 1485561 1486019 459 "-" "FIG00019870" "PLF_1763_00000194" "PGF_00021018" "BAL65280.1" 152 "Methylmalonyl-CoA epimerase (EC 5.1.99.1) @ Ethylmalonyl-CoA epimerase" "GO:0004493|methylmalonyl-CoA epimerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1501" "ERDMAN_1482" "VBIMycTub1140_1501" "PATRIC.652616.3.AP012340.CDS.1486016.1486138.rev" "PATRIC" "CDS" 1486016 1486138 123 "-" "FIG01321492" "PLF_1763_00002363" "PGF_02408499" "BAL65281.1" 40 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1502" "ERDMAN_1483" "VBIMycTub1140_1502" "PATRIC.652616.3.AP012340.CDS.1486110.1487279.fwd" "PATRIC" "CDS" 1486110 1487279 1170 "+" "FIG00000004" "PLF_1763_00000166" "PGF_08262214" "BAL65282.1" 389 "fadA4" "3-ketoacyl-CoA thiolase (EC 2.3.1.16) @ Acetyl-CoA acetyltransferase (EC 2.3.1.9)" "GO:0003985|acetyl-CoA C-acetyltransferase activity;GO:0003988|acetyl-CoA C-acyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.145" "ERDMAN_0144" "VBIMycTub1140_0145" "PATRIC.652616.3.AP012340.CDS.148666.150309.fwd" "PATRIC" "CDS" 148666 150309 1644 "+" "FIG01371720" "PLF_1763_00156693" "PGF_03055141" "BAL63961.1" 547 "PE_PGRS family protein => PE_PGRS2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1503" "ERDMAN_1484" "VBIMycTub1140_1503" "PATRIC.652616.3.AP012340.CDS.1487442.1488323.fwd" "PATRIC" "CDS" 1487442 1488323 882 "+" "FIG00000875" "PLF_1763_00129898" "PGF_03863088" "BAL65283.1" 293 "FIG000875: Thioredoxin domain-containing protein EC-YbbN"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1504" "ERDMAN_1485" "VBIMycTub1140_1504" "PATRIC.652616.3.AP012340.CDS.1488402.1490213.rev" "PATRIC" "CDS" 1488402 1490213 1812 "-" "FIG01274276" "PLF_1763_00158721" "PGF_02873232" "BAL65284.1" 603 "PE_PGRS24" "PE_PGRS family protein => PE_PGRS24"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1505" "ERDMAN_1486" "VBIMycTub1140_1505" "PATRIC.652616.3.AP012340.CDS.1490365.1492560.rev" "PATRIC" "CDS" 1490365 1492560 2196 "-" "FIG00024930" "PLF_1763_00000201" "PGF_09031534" "BAL65285.1" 731 "glgB" "1,4-alpha-glucan (glycogen) branching enzyme, GH-13-type (EC 2.4.1.18)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.17" "ERDMAN_0018" "VBIMycTub1140_0017" "PATRIC.652616.3.AP012340.CDS.14914.15612.fwd" "PATRIC" "CDS" 14914 15612 699 "+" "FIG00229612" "PLF_1763_00001055" "PGF_10490900" "BAL63836.1" 232 "trpG" "Anthranilate synthase, amidotransferase component (EC 4.1.3.27) @ Para-aminobenzoate synthase, amidotransferase component (EC 2.6.1.85)" "GO:0004049|anthranilate synthase activity;GO:0046820|4-amino-4-deoxychorismate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1506" "ERDMAN_1487" "VBIMycTub1140_1506" "PATRIC.652616.3.AP012340.CDS.1492568.1494634.rev" "PATRIC" "CDS" 1492568 1494634 2067 "-" "FIG00143078" "PLF_1763_00000341" "PGF_09986522" "BAL65286.1" 688 "glgE" "Putative glucanase glgE (EC 3.2.1.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1507" "ERDMAN_1488" "VBIMycTub1140_1507" "PATRIC.652616.3.AP012340.CDS.1494812.1497403.fwd" "PATRIC" "CDS" 1494812 1497403 2592 "+" "FIG00000476" "PLF_1763_00021674" "PGF_00008872" "BAL65287.1" 863 "glgP" "Glycogen phosphorylase (EC 2.4.1.1)" "GO:0004645|phosphorylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1508" "ERDMAN_1489" "VBIMycTub1140_1508" "PATRIC.652616.3.AP012340.CDS.1497443.1499437.rev" "PATRIC" "CDS" 1497443 1499437 1995 "-" "FIG00000680" "PLF_1763_00001303" "PGF_00423472" "BAL65288.1" 664 "dinG" "DinG family ATP-dependent helicase YoaA" "GO:0003676|nucleic acid binding;GO:0005524|ATP binding;GO:0008026|ATP-dependent helicase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1509" "ERDMAN_1490" "VBIMycTub1140_1509" "PATRIC.652616.3.AP012340.CDS.1499461.1500807.rev" "PATRIC" "CDS" 1499461 1500807 1347 "-" "FIG00000387" "PLF_1763_00207277" "PGF_00025600" "BAL65289.1" 448 "Nicotinate phosphoribosyltransferase (EC 6.3.4.21)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1510" "ERDMAN_1491" "VBIMycTub1140_1510" "PATRIC.652616.3.AP012340.CDS.1500918.1501214.fwd" "PATRIC" "CDS" 1500918 1501214 297 "+" "FIG00018741" "PLF_1763_00000957" "PGF_00960330" "BAL65290.1" 98 "clpS" "ATP-dependent Clp protease adaptor protein ClpS"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1511" "ERDMAN_1492" "VBIMycTub1140_1511" "PATRIC.652616.3.AP012340.CDS.1501240.1501830.fwd" "PATRIC" "CDS" 1501240 1501830 591 "+" "FIG00447785" "PLF_1763_00010298" "PGF_00060135" "BAL65291.1" 196 "Transcriptional regulator"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1512" "ERDMAN_1493" "VBIMycTub1140_1512" "PATRIC.652616.3.AP012340.CDS.1501847.1502881.fwd" "PATRIC" "CDS" 1501847 1502881 1035 "+" "FIG01037871" "PLF_1763_00006352" "PGF_00035139" "BAL65292.1" 344 "Possible amide hydrolase Rv1333"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1513" "ERDMAN_1494" "VBIMycTub1140_1513" "PATRIC.652616.3.AP012340.CDS.1502916.1503329.fwd" "PATRIC" "CDS" 1502916 1503329 414 "+" "FIG00868377" "PLF_1763_00002031" "PGF_00420001" "BAL65293.1" 137 "CysO-cysteine peptidase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1514" "ERDMAN_1495" "VBIMycTub1140_1514" "PATRIC.652616.3.AP012340.CDS.1503351.1503632.fwd" "PATRIC" "CDS" 1503351 1503632 282 "+" "FIG01310587" "PLF_1763_00002162" "PGF_00055165" "BAL65294.1" 93 "cfp10A" "Sulfur/cysteine carrier protein CysO"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1515" "ERDMAN_1496" "VBIMycTub1140_1515" "PATRIC.652616.3.AP012340.CDS.1503642.1504613.fwd" "PATRIC" "CDS" 1503642 1504613 972 "+" "FIG00470735" "PLF_1763_00001533" "PGF_00420080" "BAL65295.1" 323 "cysM" "Cysteine synthase, CysO-dependent"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.146" "ERDMAN_0145" "VBIMycTub1140_0146" "PATRIC.652616.3.AP012340.CDS.150461.151528.fwd" "PATRIC" "CDS" 150461 151528 1068 "+" "FIG01322276" "PLF_1763_00001865" "PGF_00031118" "BAL63962.1" 355 "pepA" "Periplasmic serine protease"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1516" "ERDMAN_1497" "VBIMycTub1140_1516" "PATRIC.652616.3.AP012340.CDS.1504712.1505326.fwd" "PATRIC" "CDS" 1504712 1505326 615 "+" "FIG00824237" "PLF_1763_00000751" "PGF_10341262" "BAL65296.1" 204 "Rhomboid family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1517" "ERDMAN_1498" "VBIMycTub1140_1517" "PATRIC.652616.3.AP012340.CDS.1505323.1506138.fwd" "PATRIC" "CDS" 1505323 1506138 816 "+" "FIG00000397" "PLF_1763_00192266" "PGF_00008106" "BAL65297.1" 271 "murI" "Glutamate racemase (EC 5.1.1.3)" "GO:0008881|glutamate racemase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1518" "ERDMAN_1499" "VBIMycTub1140_1518" "PATRIC.652616.3.AP012340.CDS.1506333.1506986.fwd" "PATRIC" "CDS" 1506333 1506986 654 "+" "FIG00113090" "PLF_1763_00000842" "PGF_06975895" "BAL65298.1" 217 "Metal-dependent hydrolases of the beta-lactamase superfamily III"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1519" "ERDMAN_1500" "VBIMycTub1140_1519" "PATRIC.652616.3.AP012340.CDS.1507003.1507782.fwd" "PATRIC" "CDS" 1507003 1507782 780 "+" "FIG00135600" "PLF_1763_00000709" "PGF_00048586" "BAL65299.1" 259 "rph" "Ribonuclease PH (EC 2.7.7.56)" "GO:0009022|tRNA nucleotidyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1520" "ERDMAN_1501" "VBIMycTub1140_1520" "PATRIC.652616.3.AP012340.CDS.1507830.1508435.fwd" "PATRIC" "CDS" 1507830 1508435 606 "+" "FIG00000584" "PLF_1763_00001297" "PGF_00026362" "BAL65300.1" 201 "Nucleoside 5-triphosphatase RdgB (dHAPTP, dITP, XTP-specific) (EC 3.6.1.66)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1521" "ERDMAN_1502" "VBIMycTub1140_1521" "PATRIC.652616.3.AP012340.CDS.1508432.1508794.rev" "PATRIC" "CDS" 1508432 1508794 363 "-" "FIG00818075" "PLF_1763_00307786" "PGF_02383980" "BAL65301.1" 120 "Membrane protein Rv1342c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1522" "ERDMAN_1503" "VBIMycTub1140_1522" "PATRIC.652616.3.AP012340.CDS.1508791.1509171.rev" "PATRIC" "CDS" 1508791 1509171 381 "-" "FIG00861686" "PLF_1763_00001998" "PGF_01803206" "BAL65302.1" 126 "lprD" "Lipoprotein LprD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1523" "VBIMycTub1140_1523" "PATRIC.652616.3.AP012340.CDS.1509122.1509256.fwd" "PATRIC" "CDS" 1509122 1509256 135 "+" "FIG00824165" "PLF_1763_00004197" "PGF_02414620" 44 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1524" "ERDMAN_1504" "VBIMycTub1140_1524" "PATRIC.652616.3.AP012340.CDS.1509282.1509536.fwd" "PATRIC" "CDS" 1509282 1509536 255 "+" "FIG01346106" "PLF_1763_00002071" "PGF_02407029" "BAL65303.1" 84 "Acyl carrier protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1525" "ERDMAN_1505" "VBIMycTub1140_1525" "PATRIC.652616.3.AP012340.CDS.1509562.1511094.fwd" "PATRIC" "CDS" 1509562 1511094 1533 "+" "PLF_1763_00009062" "PGF_00017542" "BAL65304.1" 510 "fadD33" "Long-chain fatty-acid-AMP ligase, Mycobacterial subgroup FadD33"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1526" "ERDMAN_1506" "VBIMycTub1140_1526" "PATRIC.652616.3.AP012340.CDS.1511094.1512254.fwd" "PATRIC" "CDS" 1511094 1512254 1161 "+" "FIG00138712" "PLF_1763_00001974" "PGF_00882960" "BAL65305.1" 386 "fadE14" "Acyl-CoA dehydrogenase (EC 1.3.8.1), Mycobacterial subgroup FadE14" "GO:0004085|butyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1527" "ERDMAN_1507" "VBIMycTub1140_1527" "PATRIC.652616.3.AP012340.CDS.1512221.1512853.rev" "PATRIC" "CDS" 1512221 1512853 633 "-" "FIG01315986" "PLF_1763_00001226" "PGF_00017947" "BAL65306.1" 210 "Lysine N-acyltransferase MbtK (EC 2.3.1.-) @ Siderophore synthetase small component, acetyltransferase" "GO:0004147|dihydrolipoamide branched chain acyltransferase activity;GO:0004147|sterol O-acyltransferase activity;GO:0004147|N-acetyltransferase activity;GO:0004147|O-acyltransferase activity;GO:0004147|palmitoleoyl [acyl-carrier-protein]-dependent acyltransferase activity;GO:0004147|carnitine O-acyltransferase activity;GO:0004147|acetyltransferase activity;GO:0004147|C-acyltransferase activity;GO:0004147|palmitoyltransferase activity;GO:0004147|N-acyltransferase activity;GO:0004147|acylglycerol O-acyltransferase activity;GO:0004147|serine O-acyltransferase activity;GO:0004147|O-acetyltransferase activity;GO:0004147|O-octanoyltransferase activity;GO:0004147|octanoyltransferase activity;GO:0004147|O-palmitoyltransferase activity;GO:0004147|S-acyltransferase activity;GO:0004147|S-acetyltransferase activity;GO:0004147|S-malonyltransferase activity;GO:0004147|malonyltransferase activity;GO:0004147|C-palmitoyltransferase activity;GO:0004147|succinyltransferase activity;GO:0004147|N-succinyltransferase activity;GO:0004147|O-succinyltransferase activity;GO:0004147|S-succinyltransferase activity;GO:0004147|sinapoyltransferase activity;GO:0004147|O-sinapoyltransferase activity;GO:0004147|peptidyl-lysine N6-myristoyltransferase activity;GO:0004147|peptidyl-lysine N6-palmitoyltransferase activity;GO:0004147|benzoyl acetate-CoA thiolase activity;GO:0004147|3-hydroxybutyryl-CoA thiolase activity;GO:0004147|3-ketopimelyl-CoA thiolase activity;GO:0004147|N-palmitoyltransferase activity;GO:0004147|myristoyltransferase activity;GO:0004147|acyl-CoA N-acyltransferase activity;GO:0004147|protein-cysteine S-myristoyltransferase activity;GO:0004147|protein-cysteine S-acyltransferase activity;GO:0004147|dihydrolipoamide S-acyltransferase activity;GO:0004147|glucosaminyl-phosphotidylinositol O-acyltransferase activity;GO:0004147|ergosterol O-acyltransferase activity;GO:0004147|lanosterol O-acyltransferase activity;GO:0004147|naphthyl-2-oxomethyl-succinyl-CoA succinyl transferase activity;GO:0004147|2,4,4-trimethyl-3-oxopentanoyl-CoA 2-C-propanoyl transferase activity;GO:0004147|2-methylhexanoyl-CoA C-acetyltransferase activity;GO:0004147|butyryl-CoA 2-C-propionyltransferase activity;GO:0004147|2,6-dimethyl-5-methylene-3-oxo-heptanoyl-CoA C-acetyltransferase activity;GO:0004147|L-2-aminoadipate N-acetyltransferase activity;GO:0004147|UDP-3-O-[3-hydroxymyristoyl] glucosamine N-acyltransferase activity;GO:0004147|keto acid formate lyase activity;GO:0004147|Ras palmitoyltransferase activity;GO:0004147|azetidine-2-carboxylic acid acetyltransferase activity;GO:0004147|peptidyl-lysine N-acetyltransferase activity, acting on acetyl phosphate as donor;GO:0004147|acetyl-CoA:L-lysine N6-acetyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1528" "ERDMAN_1509" "VBIMycTub1140_1528" "PATRIC.652616.3.AP012340.CDS.1513307.1515874.fwd" "PATRIC" "CDS" 1513307 1515874 2568 "+" "FIG01956052" "PLF_1763_00268115" "PGF_02445456" "BAL65307.1" 855 "Iron siderophore ABC transporter, permease/ATP-binding protein IrtA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1529" "ERDMAN_1510" "VBIMycTub1140_1529" "PATRIC.652616.3.AP012340.CDS.1515871.1517610.fwd" "PATRIC" "CDS" 1515871 1517610 1740 "+" "FIG01956052" "PLF_1763_00046556" "PGF_00039067" "BAL65308.1" 579 "Iron siderophore ABC transporter, permease/ATP-binding protein IrtB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.147" "ERDMAN_0146" "VBIMycTub1140_0147" "PATRIC.652616.3.AP012340.CDS.151637.153442.fwd" "PATRIC" "CDS" 151637 153442 1806 "+" "FIG00005112" "PLF_1763_00001648" "PGF_00061802" "BAL63963.1" 601 "treS" "Trehalose synthase (EC 5.4.99.16) @ Alpha-amylase (EC 3.2.1.1)" "GO:0047471|maltose alpha-D-glucosyltransferase activity;GO:0004556|alpha-amylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1530" "ERDMAN_1511" "VBIMycTub1140_1530" "PATRIC.652616.3.AP012340.CDS.1517739.1518482.fwd" "PATRIC" "CDS" 1517739 1518482 744 "+" "FIG00621114" "PLF_1763_00263154" "PGF_10532194" "BAL65309.1" 247 "fabG" "Oxidoreductase, short-chain dehydrogenase/reductase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1531" "ERDMAN_1512" "VBIMycTub1140_1531" "PATRIC.652616.3.AP012340.CDS.1518536.1518808.fwd" "PATRIC" "CDS" 1518536 1518808 273 "+" "FIG00821859" "PLF_1763_00003384" "PGF_03476212" "BAL65310.1" 90 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1532" "ERDMAN_1513" "VBIMycTub1140_1532" "PATRIC.652616.3.AP012340.CDS.1519011.1519382.fwd" "PATRIC" "CDS" 1519011 1519382 372 "+" "FIG01325612" "PLF_1763_00003737" "PGF_12936607" "BAL65311.1" 123 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1533" "ERDMAN_1514" "VBIMycTub1140_1533" "PATRIC.652616.3.AP012340.CDS.1519448.1520035.rev" "PATRIC" "CDS" 1519448 1520035 588 "-" "FIG00554417" "PLF_1763_00000564" "PGF_07182652" "BAL65312.1" 195 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1534" "ERDMAN_1515" "VBIMycTub1140_1534" "PATRIC.652616.3.AP012340.CDS.1520789.1521712.rev" "PATRIC" "CDS" 1520789 1521712 924 "-" "FIG01325709" "PLF_1763_00003534" "PGF_10538082" "BAL65313.1" 307 "Sensory box/GGDEF family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1535" "ERDMAN_1516" "VBIMycTub1140_1535" "PATRIC.652616.3.AP012340.CDS.1521732.1521872.rev" "PATRIC" "CDS" 1521732 1521872 141 "-" "FIG00821086" "PLF_1763_00003530" "PGF_02412544" "BAL65314.1" 46 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1536" "ERDMAN_1517" "VBIMycTub1140_1536" "PATRIC.652616.3.AP012340.CDS.1522213.1525587.fwd" "PATRIC" "CDS" 1522213 1525587 3375 "+" "FIG01386132" "PLF_1763_00000141" "PGF_02949743" "BAL65315.1" 1124 "Cyclase homology domain / Predicted ATPase / Transcriptional regulator, LuxR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1537" "ERDMAN_1518" "VBIMycTub1140_1537" "PATRIC.652616.3.AP012340.CDS.1525816.1526421.fwd" "PATRIC" "CDS" 1525816 1526421 606 "+" "FIG01390934" "PLF_1763_00003546" "PGF_02412554" "BAL65316.1" 201 "Adenylyl cyclase class-3/4/guanylyl cyclase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1538" "ERDMAN_1519" "VBIMycTub1140_1538" "PATRIC.652616.3.AP012340.CDS.1526469.1526693.rev" "PATRIC" "CDS" 1526469 1526693 225 "-" "FIG00821515" "PLF_1763_00003666" "PGF_02412624" "BAL65317.1" 74 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1539" "ERDMAN_1520" "VBIMycTub1140_1539" "PATRIC.652616.3.AP012340.CDS.1526844.1527866.fwd" "PATRIC" "CDS" 1526844 1527866 1023 "+" "FIG01321859" "PLF_1763_00006697" "PGF_00425455" "BAL65318.1" 340 "F420-dependent oxidoreductase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1540" "ERDMAN_1521" "VBIMycTub1140_1540" "PATRIC.652616.3.AP012340.CDS.1527939.1529129.rev" "PATRIC" "CDS" 1527939 1529129 1191 "-" "FIG00013075" "PLF_1763_00154102" "PGF_02890103" "BAL65319.1" 396 "PPE19" "PPE family protein, SVP subgroup => PPE19"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1541" "ERDMAN_1522" "VBIMycTub1140_1541" "PATRIC.652616.3.AP012340.CDS.1529444.1530106.rev" "PATRIC" "CDS" 1529444 1530106 663 "-" "FIG01121868" "PLF_1763_00123480" "PGF_04005848" "BAL65320.1" 220 "FIG00820195: MCE associated membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1542" "ERDMAN_1523" "VBIMycTub1140_1542" "PATRIC.652616.3.AP012340.CDS.1530103.1530888.rev" "PATRIC" "CDS" 1530103 1530888 786 "-" "FIG01121868" "PLF_1763_00058221" "PGF_08086124" "BAL65321.1" 261 "FIG00821219: MCE associated membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1543" "ERDMAN_1524" "VBIMycTub1140_1543" "PATRIC.652616.3.AP012340.CDS.1531179.1533140.rev" "PATRIC" "CDS" 1531179 1533140 1962 "-" "FIG01307115" "PLF_1763_00002141" "PGF_04607819" "BAL65322.1" 653 "Serine phosphatase RsbU, regulator of sigma subunit"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1544" "ERDMAN_1525" "VBIMycTub1140_1544" "PATRIC.652616.3.AP012340.CDS.1533279.1533665.rev" "PATRIC" "CDS" 1533279 1533665 387 "-" "FIG01371525" "PLF_1763_00003375" "PGF_00057089" "BAL65323.1" 128 "rsfA" "Anti-sigma B factor antagonist RsbV"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1545" "ERDMAN_1526" "VBIMycTub1140_1545" "PATRIC.652616.3.AP012340.CDS.1533916.1534707.fwd" "PATRIC" "CDS" 1533916 1534707 792 "+" "FIG00005237" "PLF_1763_00003124" "PGF_00007007" "BAL65324.1" 263 "GTP pyrophosphokinase (EC 2.7.6.5)" "GO:0008728|GTP diphosphokinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1546" "ERDMAN_1527" "VBIMycTub1140_1546" "PATRIC.652616.3.AP012340.CDS.1534676.1534936.fwd" "PATRIC" "CDS" 1534676 1534936 261 "+" "FIG00824300" "PLF_1763_00003344" "PGF_02412277" "BAL65325.1" 86 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1547" "ERDMAN_1528" "VBIMycTub1140_1547" "PATRIC.652616.3.AP012340.CDS.1535008.1536213.rev" "PATRIC" "CDS" 1535008 1536213 1206 "-" "FIG00000681" "PLF_1763_00329484" "PGF_05518950" "BAL65326.1" 401 "Beta-lactamase class C-like and penicillin binding proteins (PBPs) superfamily"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.148" "ERDMAN_0147" "VBIMycTub1140_0148" "PATRIC.652616.3.AP012340.CDS.153545.154912.fwd" "PATRIC" "CDS" 153545 154912 1368 "+" "FIG01358172" "PLF_1763_00001536" "PGF_00019068" "BAL63964.1" 455 "Maltokinase (EC 2.7.1.175)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1548" "ERDMAN_1529" "VBIMycTub1140_1548" "PATRIC.652616.3.AP012340.CDS.1536352.1536465.fwd" "PATRIC" "CDS" 1536352 1536465 114 "+" "FIG00823487" "PLF_1763_00004054" "PGF_02413864" "BAL65327.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1549" "ERDMAN_1530" "VBIMycTub1140_1549" "PATRIC.652616.3.AP012340.CDS.1536516.1537301.fwd" "PATRIC" "CDS" 1536516 1537301 786 "+" "FIG01309998" "PLF_1763_00004134" "PGF_00283866" "BAL65328.1" 261 "lprF" "Lipoprotein LprF, involved in translocation of lipoarabinomannan (LAM) to Mycobacterial outer membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1550" "ERDMAN_1531" "VBIMycTub1140_1550" "PATRIC.652616.3.AP012340.CDS.1537581.1538966.fwd" "PATRIC" "CDS" 1537581 1538966 1386 "+" "FIG00864191" "PLF_1763_00000091" "PGF_00422980" "BAL65329.1" 461 "Desaturase-related protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1551" "ERDMAN_1532" "VBIMycTub1140_1551" "PATRIC.652616.3.AP012340.CDS.1538963.1540144.fwd" "PATRIC" "CDS" 1538963 1540144 1182 "+" "FIG00443156" "PLF_1763_00002773" "PGF_00025383" "BAL65330.1" 393 "Naringenin-chalcone synthase (EC 2.3.1.74)" "GO:0016210|naringenin-chalcone synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1552" "ERDMAN_1533" "VBIMycTub1140_1552" "PATRIC.652616.3.AP012340.CDS.1540150.1541130.fwd" "PATRIC" "CDS" 1540150 1541130 981 "+" "FIG01318737" "PLF_1763_00001797" "PGF_00008897" "BAL65331.1" 326 "Glycolipid sulfotransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1553" "ERDMAN_1534" "VBIMycTub1140_1553" "PATRIC.652616.3.AP012340.CDS.1542069.1543289.fwd" "PATRIC" "CDS" 1542069 1543289 1221 "+" "FIG00820052" "PLF_1763_00002343" "PGF_06635366" "BAL65332.1" 406 "YcaO-like protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1554" "ERDMAN_1535" "VBIMycTub1140_1554" "PATRIC.652616.3.AP012340.CDS.1543286.1544779.fwd" "PATRIC" "CDS" 1543286 1544779 1494 "+" "FIG01352517" "PLF_1763_00002721" "PGF_00002964" "BAL65333.1" 497 "FIG029924: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1555" "ERDMAN_1536" "VBIMycTub1140_1555" "PATRIC.652616.3.AP012340.CDS.1545366.1546655.rev" "PATRIC" "CDS" 1545366 1546655 1290 "-" "FIG01323616" "PLF_1763_00002310" "PGF_00415862" "BAL65334.1" 429 "CONSERVED 13E12 REPEAT FAMILY PROTEIN"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1556" "ERDMAN_1537" "VBIMycTub1140_1556" "PATRIC.652616.3.AP012340.CDS.1546792.1547373.fwd" "PATRIC" "CDS" 1546792 1547373 582 "+" "FIG00000677" "PLF_1763_00000656" "PGF_00066124" "BAL65335.1" 193 "pyrR" "Pyrimidine operon regulatory protein PyrR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1557" "ERDMAN_1538" "VBIMycTub1140_1557" "PATRIC.652616.3.AP012340.CDS.1547370.1548329.fwd" "PATRIC" "CDS" 1547370 1548329 960 "+" "FIG00000122" "PLF_1763_00000472" "PGF_00066906" "BAL65336.1" 319 "pyrB" "Aspartate carbamoyltransferase (EC 2.1.3.2)" "GO:0004070|aspartate carbamoyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1558" "ERDMAN_1539" "VBIMycTub1140_1558" "PATRIC.652616.3.AP012340.CDS.1548326.1549618.fwd" "PATRIC" "CDS" 1548326 1549618 1293 "+" "FIG00000032" "PLF_1763_00000382" "PGF_00423378" "BAL65337.1" 430 "pyrC" "Dihydroorotase (EC 3.5.2.3)" "GO:0004151|dihydroorotase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1559" "ERDMAN_1540" "VBIMycTub1140_1559" "PATRIC.652616.3.AP012340.CDS.1549615.1550112.fwd" "PATRIC" "CDS" 1549615 1550112 498 "+" "FIG01000122" "PLF_1763_00136352" "PGF_00499799" "BAL65338.1" 165 "FIG024784: Integral membrane protein related to pyrimidine synthesis"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.149" "ERDMAN_0148" "VBIMycTub1140_0149" "PATRIC.652616.3.AP012340.CDS.154980.155759.fwd" "PATRIC" "CDS" 154980 155759 780 "+" "FIG01121868" "PLF_1763_00001911" "PGF_02195195" "BAL63965.1" 259 "Putative transmembrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1560" "ERDMAN_1541" "VBIMycTub1140_1560" "PATRIC.652616.3.AP012340.CDS.1550109.1551239.fwd" "PATRIC" "CDS" 1550109 1551239 1131 "+" "FIG00000130" "PLF_1763_00000589" "PGF_07015581" "BAL65339.1" 376 "carA" "Carbamoyl-phosphate synthase small chain (EC 6.3.5.5)" "GO:0004088|carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1561" "ERDMAN_1542" "VBIMycTub1140_1561" "PATRIC.652616.3.AP012340.CDS.1551239.1554586.fwd" "PATRIC" "CDS" 1551239 1554586 3348 "+" "FIG00000111" "PLF_1763_00000216" "PGF_00416410" "BAL65340.1" 1115 "carB" "Carbamoyl-phosphate synthase large chain (EC 6.3.5.5)" "GO:0004088|carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1562" "ERDMAN_1543" "VBIMycTub1140_1562" "PATRIC.652616.3.AP012340.CDS.1554583.1555407.fwd" "PATRIC" "CDS" 1554583 1555407 825 "+" "FIG00000173" "PLF_1763_00001508" "PGF_06461498" "BAL65341.1" 274 "pyrF" "Orotidine 5'-phosphate decarboxylase (EC 4.1.1.23)" "GO:0004590|orotidine-5'-phosphate decarboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1563" "ERDMAN_1544" "VBIMycTub1140_1563" "PATRIC.652616.3.AP012340.CDS.1555602.1555910.fwd" "PATRIC" "CDS" 1555602 1555910 309 "+" "FIG01311212" "PLF_1763_00002684" "PGF_03075997" "BAL65342.1" 102 "PE15" "PE family protein => PE15"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1564" "ERDMAN_1545" "VBIMycTub1140_1564" "PATRIC.652616.3.AP012340.CDS.1555907.1557526.fwd" "PATRIC" "CDS" 1555907 1557526 1620 "+" "FIG00013075" "PLF_1763_00002458" "PGF_03121183" "BAL65343.1" 539 "PPE20" "PPE family protein, PPW subgroup => PPE20"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1565" "VBIMycTub1140_1565" "PATRIC.652616.3.AP012340.CDS.1557624.1557845.rev" "PATRIC" "CDS" 1557624 1557845 222 "-" "FIG00828682" "PLF_1763_00078590" "PGF_00385490" 73 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1566" "ERDMAN_1546" "VBIMycTub1140_1566" "PATRIC.652616.3.AP012340.CDS.1558087.1558404.fwd" "PATRIC" "CDS" 1558087 1558404 318 "+" "FIG00659306" "PLF_1763_00000993" "PGF_00014938" "BAL65344.1" 105 "mihF" "Integration host factor MihF"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.150" "ERDMAN_0149" "VBIMycTub1140_0150" "PATRIC.652616.3.AP012340.CDS.155824.155937.fwd" "PATRIC" "CDS" 155824 155937 114 "+" "FIG01314374" "PLF_1763_00003633" "PGF_02412602" "BAL63966.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1567" "ERDMAN_1547" "VBIMycTub1140_1567" "PATRIC.652616.3.AP012340.CDS.1558539.1559165.fwd" "PATRIC" "CDS" 1558539 1559165 627 "+" "FIG00000131" "PLF_1763_00000665" "PGF_00689961" "BAL65345.1" 208 "gmk" "Guanylate kinase (EC 2.7.4.8)" "GO:0004385|guanylate kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.151" "ERDMAN_0150" "VBIMycTub1140_0151" "PATRIC.652616.3.AP012340.CDS.155891.156913.rev" "PATRIC" "CDS" 155891 156913 1023 "-" "FIG00027986" "PLF_1763_00024864" "PGF_00059355" "BAL63967.1" 340 "fbpC" "Antigen 85-C precursor @ Mycolyl transferase 85C (EC 2.3.1.122)" "GO:0050348|trehalose O-mycolyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.18" "ERDMAN_0019" "VBIMycTub1140_0018" "PATRIC.652616.3.AP012340.CDS.15590.17470.rev" "PATRIC" "CDS" 15590 17470 1881 "-" "FIG01954987" "PLF_1763_00000581" "PGF_05218024" "BAL63837.1" 626 "pknB" "Serine/threonine-protein kinase PknB (EC 2.7.11.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1568" "ERDMAN_1548" "VBIMycTub1140_1568" "PATRIC.652616.3.AP012340.CDS.1559231.1559563.fwd" "PATRIC" "CDS" 1559231 1559563 333 "+" "FIG00000394" "PLF_1763_00001028" "PGF_05906360" "BAL65346.1" 110 "rpoZ" "DNA-directed RNA polymerase omega subunit (EC 2.7.7.6)" "GO:0003899|DNA-directed RNA polymerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1569" "ERDMAN_1549" "VBIMycTub1140_1569" "PATRIC.652616.3.AP012340.CDS.1559579.1560835.fwd" "PATRIC" "CDS" 1559579 1560835 1257 "+" "FIG00000330" "PLF_1763_00000539" "PGF_09111052" "BAL65347.1" 418 "dfp" "Phosphopantothenoylcysteine decarboxylase (EC 4.1.1.36) / Phosphopantothenoylcysteine synthetase (EC 6.3.2.5)" "GO:0004632|phosphopantothenate--cysteine ligase activity;GO:0004633|phosphopantothenoylcysteine decarboxylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1570" "ERDMAN_1550" "VBIMycTub1140_1570" "PATRIC.652616.3.AP012340.CDS.1560963.1562174.fwd" "PATRIC" "CDS" 1560963 1562174 1212 "+" "FIG00000329" "PLF_1763_00000434" "PGF_03202156" "BAL65348.1" 403 "metK" "S-adenosylmethionine synthetase (EC 2.5.1.6)" "GO:0004478|methionine adenosyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1571" "ERDMAN_1551" "VBIMycTub1140_1571" "PATRIC.652616.3.AP012340.CDS.1562247.1563722.rev" "PATRIC" "CDS" 1562247 1563722 1476 "-" "FIG00975774" "PLF_1763_00001324" "PGF_03395814" "BAL65349.1" 491 "Cyclohexanone monooxygenase (EC 1.14.13.22)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1572" "ERDMAN_1552" "VBIMycTub1140_1572" "PATRIC.652616.3.AP012340.CDS.1563722.1565107.rev" "PATRIC" "CDS" 1563722 1565107 1386 "-" "FIG01345397" "PLF_1763_00003712" "PGF_08225224" "BAL65350.1" 461 "cyp132" "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1573" "ERDMAN_1553" "VBIMycTub1140_1573" "PATRIC.652616.3.AP012340.CDS.1565224.1566219.fwd" "PATRIC" "CDS" 1565224 1566219 996 "+" "FIG00510130" "PLF_1763_00002782" "PGF_01671660" "BAL65351.1" 331 "Transcriptional regulator, AraC family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1574" "ERDMAN_1554" "VBIMycTub1140_1574" "PATRIC.652616.3.AP012340.CDS.1566419.1566898.rev" "PATRIC" "CDS" 1566419 1566898 480 "-" "FIG01274276" "PLF_1763_00145776" "PGF_02998206" "BAL65352.1" 159 "PE_PGRS family protein => PE_PGRS25"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1575" "ERDMAN_1555" "VBIMycTub1140_1575" "PATRIC.652616.3.AP012340.CDS.1567153.1567554.rev" "PATRIC" "CDS" 1567153 1567554 402 "-" "FIG00821200" "PLF_1763_00003232" "PGF_02411540" "BAL65353.1" 133 "toxin VapC10 @ Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1576" "ERDMAN_1556" "VBIMycTub1140_1576" "PATRIC.652616.3.AP012340.CDS.1567551.1567808.rev" "PATRIC" "CDS" 1567551 1567808 258 "-" "FIG01329321" "PLF_1763_00039455" "PGF_02411213" "BAL65354.1" 85 "antitoxin VapB10 @ Antitoxin to Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1577" "ERDMAN_1557" "VBIMycTub1140_1577" "PATRIC.652616.3.AP012340.CDS.1567891.1568850.rev" "PATRIC" "CDS" 1567891 1568850 960 "-" "FIG00932446" "PLF_1763_00023226" "PGF_10427541" "BAL65355.1" 319 "lipH" "Carboxylesterase NlhH (EC 3.1.1.1)" "GO:0052689|carboxylic ester hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1578" "ERDMAN_1558" "VBIMycTub1140_1578" "PATRIC.652616.3.AP012340.CDS.1568875.1569828.rev" "PATRIC" "CDS" 1568875 1569828 954 "-" "FIG00932446" "PLF_1763_00029302" "PGF_01380834" "BAL65356.1" 317 "lipI" "Esterase/lipase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1579" "ERDMAN_1559" "VBIMycTub1140_1579" "PATRIC.652616.3.AP012340.CDS.1569878.1570573.fwd" "PATRIC" "CDS" 1569878 1570573 696 "+" "FIG01333800" "PLF_1763_00349381" "PGF_00409576" "BAL65357.1" 231 "Uncharacterized membrane protein Rv1401/MT1445"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.152" "ERDMAN_0151" "VBIMycTub1140_0152" "PATRIC.652616.3.AP012340.CDS.156994.157119.rev" "PATRIC" "CDS" 156994 157119 126 "-" "FIG00820381" "PLF_1763_00253917" "PGF_12788482" "BAL63968.1" 41 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1580" "ERDMAN_1560" "VBIMycTub1140_1580" "PATRIC.652616.3.AP012340.CDS.1570582.1572621.fwd" "PATRIC" "CDS" 1570582 1572621 2040 "+" "FIG00080955" "PLF_1763_00000639" "PGF_12879692" "BAL65358.1" 679 "priA" "Helicase PriA essential for oriC/DnaA-independent DNA replication"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.153" "ERDMAN_0152" "VBIMycTub1140_0153" "PATRIC.652616.3.AP012340.CDS.157160.157615.fwd" "PATRIC" "CDS" 157160 157615 456 "+" "FIG00825052" "PLF_1763_00002057" "PGF_07628161" "BAL63969.1" 151 "Nodulation protein N-related dehydratase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1581" "ERDMAN_1561" "VBIMycTub1140_1581" "PATRIC.652616.3.AP012340.CDS.1572639.1573463.rev" "PATRIC" "CDS" 1572639 1573463 825 "-" "FIG01309193" "PLF_1763_00002438" "PGF_06788576" "BAL65359.1" 274 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1582" "ERDMAN_1562" "VBIMycTub1140_1582" "PATRIC.652616.3.AP012340.CDS.1573677.1574114.fwd" "PATRIC" "CDS" 1573677 1574114 438 "+" "FIG00554610" "PLF_1763_00002104" "PGF_10423881" "BAL65360.1" 145 "Transcriptional regulator, MarR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1583" "ERDMAN_1563" "VBIMycTub1140_1583" "PATRIC.652616.3.AP012340.CDS.1574186.1575010.rev" "PATRIC" "CDS" 1574186 1575010 825 "-" "FIG01309193" "PLF_1763_00002136" "PGF_06788576" "BAL65361.1" 274 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1584" "ERDMAN_1565" "VBIMycTub1140_1584" "PATRIC.652616.3.AP012340.CDS.1575207.1576145.fwd" "PATRIC" "CDS" 1575207 1576145 939 "+" "FIG00000112" "PLF_1763_00216123" "PGF_05165078" "BAL65362.1" 312 "fmt" "Methionyl-tRNA formyltransferase (EC 2.1.2.9)" "GO:0004479|methionyl-tRNA formyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1585" "ERDMAN_1566" "VBIMycTub1140_1585" "PATRIC.652616.3.AP012340.CDS.1576142.1577515.fwd" "PATRIC" "CDS" 1576142 1577515 1374 "+" "PLF_1763_00000294" "PGF_00769755" "BAL65363.1" 457 "fmu" "16S rRNA (cytosine(967)-C(5))-methyltransferase (EC 2.1.1.176)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.154" "ERDMAN_0153" "VBIMycTub1140_0154" "PATRIC.652616.3.AP012340.CDS.157628.158965.rev" "PATRIC" "CDS" 157628 158965 1338 "-" "FIG00009149" "PLF_1763_00001795" "PGF_03133765" "BAL63970.1" 445 "fadE1" "Acyl-CoA dehydrogenase (EC 1.3.8.1), Mycobacterial subgroup FadE1" "GO:0004085|butyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1586" "ERDMAN_1567" "VBIMycTub1140_1586" "PATRIC.652616.3.AP012340.CDS.1577549.1578238.fwd" "PATRIC" "CDS" 1577549 1578238 690 "+" "FIG00000047" "PLF_1763_00001217" "PGF_10245672" "BAL65364.1" 229 "rpe" "Ribulose-phosphate 3-epimerase (EC 5.1.3.1)" "GO:0004750|ribulose-phosphate 3-epimerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1587" "ERDMAN_1568" "VBIMycTub1140_1587" "PATRIC.652616.3.AP012340.CDS.1578235.1579254.fwd" "PATRIC" "CDS" 1578235 1579254 1020 "+" "FIG00000384" "PLF_1763_00000444" "PGF_00423089" "BAL65365.1" 339 "ribG" "Diaminohydroxyphosphoribosylaminopyrimidine deaminase (EC 3.5.4.26) / 5-amino-6-(5-phosphoribosylamino)uracil reductase (EC 1.1.1.193)" "GO:0008703|5-amino-6-(5-phosphoribosylamino)uracil reductase activity;GO:0008835|diaminohydroxyphosphoribosylaminopyrimidine deaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1588" "ERDMAN_1569" "VBIMycTub1140_1588" "PATRIC.652616.3.AP012340.CDS.1579251.1580855.rev" "PATRIC" "CDS" 1579251 1580855 1605 "-" "FIG00997405" "PLF_1763_00000747" "PGF_02564336" "BAL65366.1" 534 "Multidrug efflux pump P55"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1589" "ERDMAN_1570" "VBIMycTub1140_1589" "PATRIC.652616.3.AP012340.CDS.1580813.1581523.rev" "PATRIC" "CDS" 1580813 1581523 711 "-" "FIG01327396" "PLF_1763_00002595" "PGF_00008898" "BAL65367.1" 236 "lprG" "Glycolipoprotein LprG, triacylated glycolipid-binding antigen P27 => modulating immune response against mycobacteria in favour of bacterial persistence"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1590" "ERDMAN_1571" "VBIMycTub1140_1590" "PATRIC.652616.3.AP012340.CDS.1581608.1582213.fwd" "PATRIC" "CDS" 1581608 1582213 606 "+" "FIG00000273" "PLF_1763_00000604" "PGF_03751076" "BAL65368.1" 201 "ribC" "Riboflavin synthase eubacterial/eukaryotic (EC 2.5.1.9)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1591" "ERDMAN_1572" "VBIMycTub1140_1591" "PATRIC.652616.3.AP012340.CDS.1582427.1582942.fwd" "PATRIC" "CDS" 1582427 1582942 516 "+" "FIG01386312" "PLF_1763_00003218" "PGF_00018232" "BAL65369.1" 171 "METAL-ACTIVATED PYRIDOXAL ENZYME"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1592" "ERDMAN_1573" "VBIMycTub1140_1592" "PATRIC.652616.3.AP012340.CDS.1582932.1583333.fwd" "PATRIC" "CDS" 1582932 1583333 402 "+" "FIG01386312" "PLF_1763_00003485" "PGF_08225224" "BAL65370.1" 133 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1593" "ERDMAN_1574" "VBIMycTub1140_1593" "PATRIC.652616.3.AP012340.CDS.1583438.1584715.fwd" "PATRIC" "CDS" 1583438 1584715 1278 "+" "FIG00000378" "PLF_1763_00037446" "PGF_00416674" "BAL65371.1" 425 "ribA2" "3,4-dihydroxy-2-butanone 4-phosphate synthase (EC 4.1.99.12) / GTP cyclohydrolase II (EC 3.5.4.25)" "GO:0003935|GTP cyclohydrolase II activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1594" "ERDMAN_1575" "VBIMycTub1140_1594" "PATRIC.652616.3.AP012340.CDS.1584712.1585194.fwd" "PATRIC" "CDS" 1584712 1585194 483 "+" "FIG00000231" "PLF_1763_00001019" "PGF_00426932" "BAL65372.1" 160 "ribH" "6,7-dimethyl-8-ribityllumazine synthase (EC 2.5.1.78)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1595" "ERDMAN_1576" "VBIMycTub1140_1595" "PATRIC.652616.3.AP012340.CDS.1585191.1585655.fwd" "PATRIC" "CDS" 1585191 1585655 465 "+" "FIG00485194" "PLF_1763_00030158" "PGF_00019845" "BAL65373.1" 154 "Membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1596" "ERDMAN_1577" "VBIMycTub1140_1596" "PATRIC.652616.3.AP012340.CDS.1585737.1586366.fwd" "PATRIC" "CDS" 1585737 1586366 630 "+" "FIG01346249" "PLF_1763_00024138" "PGF_00333342" "BAL65374.1" 209 "lprH" "Lipoprotein LprH"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1597" "ERDMAN_1578" "VBIMycTub1140_1597" "PATRIC.652616.3.AP012340.CDS.1586546.1587019.fwd" "PATRIC" "CDS" 1586546 1587019 474 "+" "FIG00821635" "PLF_1763_00353920" "PGF_00846470" "BAL65375.1" 157 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1598" "ERDMAN_1579" "VBIMycTub1140_1598" "PATRIC.652616.3.AP012340.CDS.1587140.1589023.fwd" "PATRIC" "CDS" 1587140 1589023 1884 "+" "FIG00000185" "PLF_1763_00000415" "PGF_00424971" "BAL65376.1" 627 "uvrC" "Excinuclease ABC subunit C" "GO:0003677|DNA binding;GO:0004518|nuclease activity;GO:0005622|intracellular;GO:0006281|DNA repair;GO:0006289|nucleotide-excision repair"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1599" "ERDMAN_1580" "VBIMycTub1140_1599" "PATRIC.652616.3.AP012340.CDS.1589020.1589925.fwd" "PATRIC" "CDS" 1589020 1589925 906 "+" "FIG01307205" "PLF_1763_00000696" "PGF_03788368" "BAL65377.1" 301 "RNase adapter protein RapZ"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1600" "ERDMAN_1581" "VBIMycTub1140_1600" "PATRIC.652616.3.AP012340.CDS.1589922.1590950.fwd" "PATRIC" "CDS" 1589922 1590950 1029 "+" "FIG01953807" "PLF_1763_00000615" "PGF_08005402" "BAL65378.1" 342 "FIG002813: LPPG:FO 2-phospho-L-lactate transferase like, CofD-like"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.155" "ERDMAN_0154" "VBIMycTub1140_0155" "PATRIC.652616.3.AP012340.CDS.159013.160095.rev" "PATRIC" "CDS" 159013 160095 1083 "-" "FIG01311596" "PLF_1763_00002384" "PGF_08225224" "BAL63971.1" 360 "fgd2" "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1601" "ERDMAN_1582" "VBIMycTub1140_1601" "PATRIC.652616.3.AP012340.CDS.1590941.1591924.fwd" "PATRIC" "CDS" 1590941 1591924 984 "+" "FIG01304101" "PLF_1763_00000460" "PGF_00425738" "BAL65379.1" 327 "whiA" "Sporulation transcription regulator WhiA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1602" "ERDMAN_1583" "VBIMycTub1140_1602" "PATRIC.652616.3.AP012340.CDS.1591934.1592542.rev" "PATRIC" "CDS" 1591934 1592542 609 "-" "FIG00820380" "PLF_1763_00003281" "PGF_08225224" "BAL65380.1" 202 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1603" "ERDMAN_1584" "VBIMycTub1140_1603" "PATRIC.652616.3.AP012340.CDS.1592765.1594078.fwd" "PATRIC" "CDS" 1592765 1594078 1314 "+" "FIG01309728" "PLF_1763_00001384" "PGF_02446839" "BAL65381.1" 437 "Diacyglycerol O-acyltransferase (EC 2.3.1.20)" "GO:0004144|diacylglycerol O-acyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1604" "ERDMAN_1585" "VBIMycTub1140_1604" "PATRIC.652616.3.AP012340.CDS.1594100.1595314.rev" "PATRIC" "CDS" 1594100 1595314 1215 "-" "FIG01320296" "PLF_1763_00002224" "PGF_00705210" "BAL65382.1" 404 "lipO" "Esterase LipO"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1605" "ERDMAN_1586" "VBIMycTub1140_1605" "PATRIC.652616.3.AP012340.CDS.1595362.1596945.rev" "PATRIC" "CDS" 1595362 1596945 1584 "-" "FIG00018699" "PLF_1763_00001507" "PGF_03114428" "BAL65383.1" 527 "fadD12" "Long-chain-fatty-acid--CoA ligase (EC 6.2.1.3) @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD12" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1606" "ERDMAN_1587" "VBIMycTub1140_1606" "PATRIC.652616.3.AP012340.CDS.1596973.1597707.rev" "PATRIC" "CDS" 1596973 1597707 735 "-" "FIG00018699" "PLF_1763_00372817" "PGF_00018062" "BAL65384.1" 244 "Lysophospholipid Acyltransferases (LPLATs) of Glycerophospholipid Biosynthesis: MGAT-like"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1607" "ERDMAN_1588" "VBIMycTub1140_1607" "PATRIC.652616.3.AP012340.CDS.1597919.1599187.fwd" "PATRIC" "CDS" 1597919 1599187 1269 "+" "FIG01313060" "PLF_1763_00002844" "PGF_03145146" "BAL65385.1" 422 "Possible regulatory protein Trx"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1608" "ERDMAN_1589" "VBIMycTub1140_1608" "PATRIC.652616.3.AP012340.CDS.1599427.1601013.fwd" "PATRIC" "CDS" 1599427 1601013 1587 "+" "FIG01311212" "PLF_1763_00002696" "PGF_03114345" "BAL65386.1" 528 "PE16" "PE family protein => PE16"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1609" "ERDMAN_1590" "VBIMycTub1140_1609" "PATRIC.652616.3.AP012340.CDS.1601124.1602893.fwd" "PATRIC" "CDS" 1601124 1602893 1770 "+" "FIG01121868" "PLF_1763_00001688" "PGF_04977504" "BAL65387.1" 589 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.156" "ERDMAN_0155" "VBIMycTub1140_0156" "PATRIC.652616.3.AP012340.CDS.160182.160787.fwd" "PATRIC" "CDS" 160182 160787 606 "+" "FIG00001650" "PLF_1763_00001747" "PGF_10519603" "BAL63972.1" 201 "Acetyltransferase, GNAT family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1610" "ERDMAN_1591" "VBIMycTub1140_1610" "PATRIC.652616.3.AP012340.CDS.1602890.1604311.fwd" "PATRIC" "CDS" 1602890 1604311 1422 "+" "FIG00139162" "PLF_1763_00336265" "PGF_10387745" "BAL65388.1" 473 "Phytoene dehydrogenase and related proteins" "GO:0006118|electron transport;GO:0016491|oxidoreductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1611" "VBIMycTub1140_1611" "PATRIC.652616.3.AP012340.CDS.1604263.1604409.rev" "PATRIC" "CDS" 1604263 1604409 147 "-" "FIG00823621" "PLF_1763_00004150" "PGF_02414564" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1612" "VBIMycTub1140_1612" "PATRIC.652616.3.AP012340.CDS.1604436.1604552.rev" "PATRIC" "CDS" 1604436 1604552 117 "-" "PLF_1763_00004242" "PGF_02414662" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1613" "ERDMAN_1592" "VBIMycTub1140_1613" "PATRIC.652616.3.AP012340.CDS.1604556.1605290.fwd" "PATRIC" "CDS" 1604556 1605290 735 "+" "FIG00826588" "PLF_1763_00003275" "PGF_00930759" "BAL65389.1" 244 "L,D-transpeptidase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1614" "ERDMAN_1593" "VBIMycTub1140_1614" "PATRIC.652616.3.AP012340.CDS.1605389.1606009.rev" "PATRIC" "CDS" 1605389 1606009 621 "-" "FIG01388371" "PLF_1763_00014634" "PGF_03069042" "BAL65390.1" 206 "PE_PGRS family protein => PE_PGRS62"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1615" "ERDMAN_1594" "VBIMycTub1140_1615" "PATRIC.652616.3.AP012340.CDS.1606375.1607394.fwd" "PATRIC" "CDS" 1606375 1607394 1020 "+" "FIG00132586" "PLF_1763_00155112" "PGF_00024478" "BAL65391.1" 339 "gap" "NAD-dependent glyceraldehyde-3-phosphate dehydrogenase (EC 1.2.1.12)" "GO:0004365|glyceraldehyde-3-phosphate dehydrogenase (phosphorylating) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1616" "ERDMAN_1595" "VBIMycTub1140_1616" "PATRIC.652616.3.AP012340.CDS.1607397.1608635.fwd" "PATRIC" "CDS" 1607397 1608635 1239 "+" "FIG00054459" "PLF_1763_00000371" "PGF_02277678" "BAL65392.1" 412 "pgk" "Phosphoglycerate kinase (EC 2.7.2.3)" "GO:0004618|phosphoglycerate kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1617" "ERDMAN_1596" "VBIMycTub1140_1617" "PATRIC.652616.3.AP012340.CDS.1608632.1609417.fwd" "PATRIC" "CDS" 1608632 1609417 786 "+" "FIG00000076" "PLF_1763_00000819" "PGF_04574228" "BAL65393.1" 261 "tpiA" "Triosephosphate isomerase (EC 5.3.1.1)" "GO:0004807|triose-phosphate isomerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1618" "VBIMycTub1140_1618" "PATRIC.652616.3.AP012340.CDS.1609433.1609660.rev" "PATRIC" "CDS" 1609433 1609660 228 "-" "FIG00447785" "PLF_1763_00004093" "PGF_08225224" 75 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1619" "ERDMAN_1597" "VBIMycTub1140_1619" "PATRIC.652616.3.AP012340.CDS.1610029.1610454.rev" "PATRIC" "CDS" 1610029 1610454 426 "-" "FIG00822158" "PLF_1763_00003501" "PGF_00336803" "BAL65394.1" 141 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1620" "ERDMAN_1598" "VBIMycTub1140_1620" "PATRIC.652616.3.AP012340.CDS.1610528.1610689.rev" "PATRIC" "CDS" 1610528 1610689 162 "-" "FIG00820518" "PLF_1763_00004108" "PGF_02414246" "BAL65395.1" 53 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.157" "ERDMAN_0156" "VBIMycTub1140_0157" "PATRIC.652616.3.AP012340.CDS.161084.161986.fwd" "PATRIC" "CDS" 161084 161986 903 "+" "FIG01466354" "PLF_1763_00000042" "PGF_01003946" "BAL63973.1" 300 "ephF" "Epoxide hydrolase (EC 3.3.2.9)" "GO:0033961|cis-stilbene-oxide hydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1621" "ERDMAN_1599" "VBIMycTub1140_1621" "PATRIC.652616.3.AP012340.CDS.1610905.1611138.fwd" "PATRIC" "CDS" 1610905 1611138 234 "+" "FIG00001563" "PLF_1763_00001184" "PGF_00934722" "BAL65396.1" 77 "secG" "Protein translocase membrane subunit SecG"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1622" "ERDMAN_1600" "VBIMycTub1140_1622" "PATRIC.652616.3.AP012340.CDS.1611277.1612695.rev" "PATRIC" "CDS" 1611277 1612695 1419 "-" "FIG01274276" "PLF_1763_00158134" "PGF_03128844" "BAL65397.1" 472 "PE_PGRS family protein => PE_PGRS26"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1623" "ERDMAN_1601" "VBIMycTub1140_1623" "PATRIC.652616.3.AP012340.CDS.1612802.1615102.fwd" "PATRIC" "CDS" 1612802 1615102 2301 "+" "FIG00002403" "PLF_1763_00148584" "PGF_00404364" "BAL65398.1" 766 "bisC" "Biotin sulfoxide reductase (EC 1.-.-.-) / Free methionine-(S)-sulfoxide reductase" "GO:0008748|N-ethylmaleimide reductase activity;GO:0008748|reduced coenzyme F420 dehydrogenase activity;GO:0008748|sulfur oxygenase reductase activity;GO:0008748|malolactic enzyme activity;GO:0008748|NADPH:sulfur oxidoreductase activity;GO:0008748|epoxyqueuosine reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1624" "ERDMAN_1602" "VBIMycTub1140_1624" "PATRIC.652616.3.AP012340.CDS.1615099.1615218.rev" "PATRIC" "CDS" 1615099 1615218 120 "-" "FIG00820849" "PLF_1763_00003652" "PGF_02412614" "BAL65399.1" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1625" "ERDMAN_1603" "VBIMycTub1140_1625" "PATRIC.652616.3.AP012340.CDS.1615218.1615682.rev" "PATRIC" "CDS" 1615218 1615682 465 "-" "FIG00824620" "PLF_1763_00003644" "PGF_08225224" "BAL65400.1" 154 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1626" "ERDMAN_1604" "VBIMycTub1140_1626" "PATRIC.652616.3.AP012340.CDS.1615779.1616018.fwd" "PATRIC" "CDS" 1615779 1616018 240 "+" "FIG00820604" "PLF_1763_00003617" "PGF_02412589" "BAL65401.1" 79 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1627" "ERDMAN_1605" "VBIMycTub1140_1627" "PATRIC.652616.3.AP012340.CDS.1616135.1616248.rev" "PATRIC" "CDS" 1616135 1616248 114 "-" "FIG01407071" "PLF_1763_00003992" "PGF_08067856" "BAL65402.1" 37 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1628" "ERDMAN_1606" "VBIMycTub1140_1628" "PATRIC.652616.3.AP012340.CDS.1616298.1616669.rev" "PATRIC" "CDS" 1616298 1616669 372 "-" "FIG00820197" "PLF_1763_00002393" "PGF_08225224" "BAL65403.1" 123 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1629" "ERDMAN_1607" "VBIMycTub1140_1629" "PATRIC.652616.3.AP012340.CDS.1616725.1617468.rev" "PATRIC" "CDS" 1616725 1617468 744 "-" "FIG00000776" "PLF_1763_00001353" "PGF_07402119" "BAL65404.1" 247 "devB" "6-phosphogluconolactonase (EC 3.1.1.31), eukaryotic type"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1630" "ERDMAN_1608" "VBIMycTub1140_1630" "PATRIC.652616.3.AP012340.CDS.1617465.1618376.rev" "PATRIC" "CDS" 1617465 1618376 912 "-" "FIG00018823" "PLF_1763_00001229" "PGF_00027216" "BAL65405.1" 303 "opcA" "OpcA, an allosteric effector of glucose-6-phosphate dehydrogenase, actinobacterial"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1631" "ERDMAN_1609" "VBIMycTub1140_1631" "PATRIC.652616.3.AP012340.CDS.1618429.1619973.rev" "PATRIC" "CDS" 1618429 1619973 1545 "-" "FIG00000332" "PLF_1763_00035175" "PGF_06027248" "BAL65406.1" 514 "zwf2" "Glucose-6-phosphate 1-dehydrogenase (EC 1.1.1.49)" "GO:0004345|glucose-6-phosphate dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.158" "ERDMAN_0157" "VBIMycTub1140_0158" "PATRIC.652616.3.AP012340.CDS.161957.162562.rev" "PATRIC" "CDS" 161957 162562 606 "-" "FIG00554417" "PLF_1763_00001620" "PGF_07182652" "BAL63974.1" 201 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1632" "ERDMAN_1610" "VBIMycTub1140_1632" "PATRIC.652616.3.AP012340.CDS.1619970.1621091.rev" "PATRIC" "CDS" 1619970 1621091 1122 "-" "FIG00000023" "PLF_1763_00000276" "PGF_00057399" "BAL65407.1" 373 "tal" "Transaldolase (EC 2.2.1.2)" "GO:0004801|transaldolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1633" "ERDMAN_1612" "VBIMycTub1140_1633" "PATRIC.652616.3.AP012340.CDS.1621108.1623210.rev" "PATRIC" "CDS" 1621108 1623210 2103 "-" "FIG00020289" "PLF_1763_00153214" "PGF_01136362" "BAL65408.1" 700 "tkt" "Transketolase (EC 2.2.1.1)" "GO:0004802|transketolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1634" "ERDMAN_1613" "VBIMycTub1140_1634" "PATRIC.652616.3.AP012340.CDS.1623251.1623376.rev" "PATRIC" "CDS" 1623251 1623376 126 "-" "PLF_1763_00004216" "PGF_02414637" "BAL65409.1" 41 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1635" "ERDMAN_1614" "VBIMycTub1140_1635" "PATRIC.652616.3.AP012340.CDS.1623402.1623554.rev" "PATRIC" "CDS" 1623402 1623554 153 "-" "FIG00825037" "PLF_1763_00004005" "PGF_08225224" "BAL65410.1" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1636" "ERDMAN_1615" "VBIMycTub1140_1636" "PATRIC.652616.3.AP012340.CDS.1623649.1627419.rev" "PATRIC" "CDS" 1623649 1627419 3771 "-" "FIG01326805" "PLF_1763_00157158" "PGF_02997129" "BAL65411.1" 1256 "PE_PGRS family protein => PE_PGRS27"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.159" "ERDMAN_0158" "VBIMycTub1140_0159" "PATRIC.652616.3.AP012340.CDS.162679.164004.fwd" "PATRIC" "CDS" 162679 164004 1326 "+" "FIG01333220" "PLF_1763_00038060" "PGF_00420171" "BAL63975.1" 441 "cyp138" "Cytochrome P450"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1637" "ERDMAN_1616" "VBIMycTub1140_1637" "PATRIC.652616.3.AP012340.CDS.1627866.1628744.fwd" "PATRIC" "CDS" 1627866 1628744 879 "+" "FIG00000497" "PLF_1763_00000291" "PGF_07157721" "BAL65412.1" 292 "ctaB" "Heme O synthase, protoheme IX farnesyltransferase, COX10-CtaB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1638" "ERDMAN_1617" "VBIMycTub1140_1638" "PATRIC.652616.3.AP012340.CDS.1628793.1629941.rev" "PATRIC" "CDS" 1628793 1629941 1149 "-" "FIG01813383" "PLF_1763_00154904" "PGF_03063297" "BAL65413.1" 382 "PE_PGRS family protein => PE_PGRS28"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1639" "ERDMAN_1618" "VBIMycTub1140_1639" "PATRIC.652616.3.AP012340.CDS.1629938.1631008.rev" "PATRIC" "CDS" 1629938 1631008 1071 "-" "FIG01326805" "PLF_1763_00145349" "PGF_03063297" "BAL65414.1" 356 "PE_PGRS family protein => PE_PGRS28"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1640" "ERDMAN_1619" "VBIMycTub1140_1640" "PATRIC.652616.3.AP012340.CDS.1631124.1632422.fwd" "PATRIC" "CDS" 1631124 1632422 1299 "+" "FIG00822824" "PLF_1763_00002560" "PGF_03145146" "BAL65415.1" 432 "Possible regulatory protein Trx"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1641" "ERDMAN_1620" "VBIMycTub1140_1641" "PATRIC.652616.3.AP012340.CDS.1632450.1633436.rev" "PATRIC" "CDS" 1632450 1633436 987 "-" "FIG00002982" "PLF_1763_00001737" "PGF_04596496" "BAL65416.1" 328 "qor" "Quinone oxidoreductase (EC 1.6.5.5)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1642" "ERDMAN_1621" "VBIMycTub1140_1642" "PATRIC.652616.3.AP012340.CDS.1633444.1633578.rev" "PATRIC" "CDS" 1633444 1633578 135 "-" "FIG00821551" "PLF_1763_00003367" "PGF_02412448" "BAL65417.1" 44 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1643" "ERDMAN_1622" "VBIMycTub1140_1643" "PATRIC.652616.3.AP012340.CDS.1634269.1635201.rev" "PATRIC" "CDS" 1634269 1635201 933 "-" "FIG01121947" "PLF_1763_00001388" "PGF_05949825" "BAL65418.1" 310 "Heme A synthase, cytochrome oxidase biogenesis protein Cox15-CtaA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1644" "ERDMAN_1623" "VBIMycTub1140_1644" "PATRIC.652616.3.AP012340.CDS.1635313.1636098.rev" "PATRIC" "CDS" 1635313 1636098 786 "-" "FIG01307030" "PLF_1763_00001140" "PGF_04372241" "BAL65419.1" 261 "Efflux ABC transporter, permease protein Rv1457c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1645" "ERDMAN_1624" "VBIMycTub1140_1645" "PATRIC.652616.3.AP012340.CDS.1636095.1637036.rev" "PATRIC" "CDS" 1636095 1637036 942 "-" "FIG01307013" "PLF_1763_00001065" "PGF_03152404" "BAL65420.1" 313 "Efflux ABC transporter, ATP-binding protein Rv1458c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1646" "ERDMAN_1625" "VBIMycTub1140_1646" "PATRIC.652616.3.AP012340.CDS.1637192.1638967.rev" "PATRIC" "CDS" 1637192 1638967 1776 "-" "FIG01037873" "PLF_1763_00073344" "PGF_02435548" "BAL65421.1" 591 "Integral membrane protein Rv1459c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1647" "ERDMAN_1626" "VBIMycTub1140_1647" "PATRIC.652616.3.AP012340.CDS.1639156.1639821.fwd" "PATRIC" "CDS" 1639156 1639821 666 "+" "FIG00003245" "PLF_1763_00000941" "PGF_00015543" "BAL65422.1" 221 "Iron-sulfur cluster regulator SufR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1648" "ERDMAN_1627" "VBIMycTub1140_1648" "PATRIC.652616.3.AP012340.CDS.1639818.1642358.fwd" "PATRIC" "CDS" 1639818 1642358 2541 "+" "FIG00037195" "PLF_1763_00000491" "PGF_00015514" "BAL65423.1" 846 "Iron-sulfur cluster assembly protein SufB"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.160" "ERDMAN_0159" "VBIMycTub1140_0160" "PATRIC.652616.3.AP012340.CDS.164025.164573.rev" "PATRIC" "CDS" 164025 164573 549 "-" "FIG00002199" "PLF_1763_00001431" "PGF_05083865" "BAL63976.1" 182 "msrA" "Peptide-methionine (S)-S-oxide reductase MsrA (EC 1.8.4.11)" "GO:0008113|peptide-methionine (S)-S-oxide reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1649" "ERDMAN_1628" "VBIMycTub1140_1649" "PATRIC.652616.3.AP012340.CDS.1642355.1643548.fwd" "PATRIC" "CDS" 1642355 1643548 1194 "+" "FIG00072797" "PLF_1763_00000595" "PGF_00015517" "BAL65424.1" 397 "Iron-sulfur cluster assembly protein SufD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1650" "ERDMAN_1629" "VBIMycTub1140_1650" "PATRIC.652616.3.AP012340.CDS.1643545.1644345.fwd" "PATRIC" "CDS" 1643545 1644345 801 "+" "FIG00018727" "PLF_1763_00000864" "PGF_00015510" "BAL65425.1" 266 "Iron-sulfur cluster assembly ATPase protein SufC" "GO:0005524|ATP binding;GO:0016887|ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1651" "ERDMAN_1630" "VBIMycTub1140_1651" "PATRIC.652616.3.AP012340.CDS.1644347.1645600.fwd" "PATRIC" "CDS" 1644347 1645600 1254 "+" "FIG00229199" "PLF_1763_00000960" "PGF_07583562" "BAL65426.1" 417 "csd" "Cysteine desulfurase (EC 2.8.1.7) => SufS" "GO:0031071|cysteine desulfurase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1652" "ERDMAN_1631" "VBIMycTub1140_1652" "PATRIC.652616.3.AP012340.CDS.1645597.1646085.fwd" "PATRIC" "CDS" 1645597 1646085 489 "+" "FIG00000306" "PLF_1763_00001075" "PGF_00041788" "BAL65427.1" 162 "Putative iron-sulfur cluster assembly scaffold protein for SUF system, SufE2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1653" "ERDMAN_1632" "VBIMycTub1140_1653" "PATRIC.652616.3.AP012340.CDS.1646060.1646407.fwd" "PATRIC" "CDS" 1646060 1646407 348 "+" "FIG00009637" "PLF_1763_00001143" "PGF_06661068" "BAL65428.1" 115 "PaaD-like protein (DUF59) involved in Fe-S cluster assembly"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.161" "ERDMAN_0160" "VBIMycTub1140_0161" "PATRIC.652616.3.AP012340.CDS.164636.165139.fwd" "PATRIC" "CDS" 164636 165139 504 "+" "FIG00821694" "PLF_1763_00001710" "PGF_08225224" "BAL63977.1" 167 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1654" "ERDMAN_1633" "VBIMycTub1140_1654" "PATRIC.652616.3.AP012340.CDS.1646502.1648331.rev" "PATRIC" "CDS" 1646502 1648331 1830 "-" "FIG01954271" "PLF_1763_00001803" "PGF_02893693" "BAL65429.1" 609 "fadE15" "Acyl-CoA dehydrogenase (EC 1.3.8.1), Mycobacterial subgroup FadE15" "GO:0004085|butyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1655" "ERDMAN_1634" "VBIMycTub1140_1655" "PATRIC.652616.3.AP012340.CDS.1648438.1648581.rev" "PATRIC" "CDS" 1648438 1648581 144 "-" "FIG01311212" "PLF_1763_00003008" "PGF_02916381" "BAL65430.1" 47 "PE_PGRS family protein => PE_PGRS29"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1656" "ERDMAN_1635" "VBIMycTub1140_1656" "PATRIC.652616.3.AP012340.CDS.1648542.1649549.rev" "PATRIC" "CDS" 1648542 1649549 1008 "-" "FIG01311212" "PLF_1763_00003008" "PGF_02916381" "BAL65431.1" 335 "PE_PGRS family protein => PE_PGRS29"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1657" "ERDMAN_1636" "VBIMycTub1140_1657" "PATRIC.652616.3.AP012340.CDS.1649902.1651764.fwd" "PATRIC" "CDS" 1649902 1651764 1863 "+" "FIG00658111" "PLF_1763_00002475" "PGF_07109475" "BAL65432.1" 620 "ctpD" "Lead, cadmium, zinc and mercury transporting ATPase (EC 3.6.3.3) (EC 3.6.3.5); Copper-translocating P-type ATPase (EC 3.6.3.4)" "GO:0004008|copper-exporting ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.162" "ERDMAN_0161" "VBIMycTub1140_0162" "PATRIC.652616.3.AP012340.CDS.165140.166162.fwd" "PATRIC" "CDS" 165140 166162 1023 "+" "FIG00042188" "PLF_1763_00014192" "PGF_00024328" "BAL63978.1" 340 "Hopanoid-associated sugar epimerase HpnA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1658" "ERDMAN_1637" "VBIMycTub1140_1658" "PATRIC.652616.3.AP012340.CDS.1651808.1652182.fwd" "PATRIC" "CDS" 1651808 1652182 375 "+" "FIG01316778" "PLF_1763_00003110" "PGF_10345259" "BAL65433.1" 124 "trxA" "Thioredoxin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1659" "ERDMAN_1638" "VBIMycTub1140_1659" "PATRIC.652616.3.AP012340.CDS.1652198.1652569.fwd" "PATRIC" "CDS" 1652198 1652569 372 "+" "FIG01340204" "PLF_1763_00003134" "PGF_10345259" "BAL65434.1" 123 "trxB1" "Thioredoxin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1660" "ERDMAN_1639" "VBIMycTub1140_1660" "PATRIC.652616.3.AP012340.CDS.1652591.1653448.fwd" "PATRIC" "CDS" 1652591 1653448 858 "+" "FIG00033206" "PLF_1763_00000487" "PGF_03210551" "BAL65435.1" 285 "echA12" "Enoyl-CoA hydratase (EC 4.2.1.17)" "GO:0004300|enoyl-CoA hydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1661" "ERDMAN_1640" "VBIMycTub1140_1661" "PATRIC.652616.3.AP012340.CDS.1653484.1655112.fwd" "PATRIC" "CDS" 1653484 1655112 1629 "+" "FIG01956052" "PLF_1763_00000545" "PGF_02552445" "BAL65436.1" 542 "Bis-ABC ATPase SCO1840"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1662" "ERDMAN_1641" "VBIMycTub1140_1662" "PATRIC.652616.3.AP012340.CDS.1655209.1655400.fwd" "PATRIC" "CDS" 1655209 1655400 192 "+" "FIG01346806" "PLF_1763_00001954" "PGF_10379029" "BAL65437.1" 63 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1663" "ERDMAN_1642" "VBIMycTub1140_1663" "PATRIC.652616.3.AP012340.CDS.1655469.1656032.rev" "PATRIC" "CDS" 1655469 1656032 564 "-" "FIG00554417" "PLF_1763_00001047" "PGF_07182652" "BAL65438.1" 187 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1664" "ERDMAN_1643" "VBIMycTub1140_1664" "PATRIC.652616.3.AP012340.CDS.1656043.1658859.rev" "PATRIC" "CDS" 1656043 1658859 2817 "-" "FIG00138200" "PLF_1763_00000334" "PGF_00029269" "BAL65439.1" 938 "acn" "Aconitate hydratase (EC 4.2.1.3) @ 2-methylisocitrate dehydratase (EC 4.2.1.99)" "GO:0003994|aconitate hydratase activity;GO:0047456|2-methylisocitrate dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1665" "ERDMAN_1644" "VBIMycTub1140_1665" "PATRIC.652616.3.AP012340.CDS.1659032.1659592.fwd" "PATRIC" "CDS" 1659032 1659592 561 "+" "FIG01121868" "PLF_1763_00356008" "PGF_00408565" "BAL65440.1" 186 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1666" "ERDMAN_1645" "VBIMycTub1140_1666" "PATRIC.652616.3.AP012340.CDS.1659818.1661236.fwd" "PATRIC" "CDS" 1659818 1661236 1419 "+" "FIG00012683" "PLF_1763_00042631" "PGF_00025007" "BAL65441.1" 472 "NLP/P60 family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1667" "ERDMAN_1646" "VBIMycTub1140_1667" "PATRIC.652616.3.AP012340.CDS.1661247.1661972.fwd" "PATRIC" "CDS" 1661247 1661972 726 "+" "FIG01316782" "PLF_1763_00213496" "PGF_06171121" "BAL65442.1" 241 "Invasion protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1668" "ERDMAN_1647" "VBIMycTub1140_1668" "PATRIC.652616.3.AP012340.CDS.1662111.1663244.fwd" "PATRIC" "CDS" 1662111 1663244 1134 "+" "FIG00821266" "PLF_1763_00001118" "PGF_05079020" "BAL65443.1" 377 "moxR1" "MoxR-like ATPase in aerotolerance operon"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.163" "ERDMAN_0162" "VBIMycTub1140_0163" "PATRIC.652616.3.AP012340.CDS.166223.166603.fwd" "PATRIC" "CDS" 166223 166603 381 "+" "FIG00822461" "PLF_1763_00002874" "PGF_03158251" "BAL63979.1" 126 "COGs COG2343"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1669" "ERDMAN_1648" "VBIMycTub1140_1669" "PATRIC.652616.3.AP012340.CDS.1663241.1664194.fwd" "PATRIC" "CDS" 1663241 1664194 954 "+" "PLF_1763_00000824" "PGF_07460808" "BAL65444.1" 317 "hypothetical protein PA3071"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1670" "ERDMAN_1649" "VBIMycTub1140_1670" "PATRIC.652616.3.AP012340.CDS.1664205.1665212.fwd" "PATRIC" "CDS" 1664205 1665212 1008 "+" "FIG01121868" "PLF_1763_00000120" "PGF_10081007" "BAL65445.1" 335 "Aerotolerance protein BatA"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1671" "ERDMAN_1650" "VBIMycTub1140_1671" "PATRIC.652616.3.AP012340.CDS.1665285.1666163.rev" "PATRIC" "CDS" 1665285 1666163 879 "-" "FIG00821774" "PLF_1763_00001172" "PGF_08225224" "BAL65446.1" 292 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.164" "ERDMAN_0163" "VBIMycTub1140_0164" "PATRIC.652616.3.AP012340.CDS.166584.166997.rev" "PATRIC" "CDS" 166584 166997 414 "-" "FIG00820092" "PLF_1763_00330422" "PGF_02932273" "BAL63980.1" 137 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1672" "ERDMAN_1651" "VBIMycTub1140_1672" "PATRIC.652616.3.AP012340.CDS.1666268.1667011.fwd" "PATRIC" "CDS" 1666268 1667011 744 "+" "FIG00621114" "PLF_1763_00001206" "PGF_08693885" "BAL65447.1" 247 "fabG1" "3-oxoacyl-[acyl-carrier protein] reductase (EC 1.1.1.100), FadG" "GO:0004316|3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1673" "ERDMAN_1652" "VBIMycTub1140_1673" "PATRIC.652616.3.AP012340.CDS.1667030.1667839.fwd" "PATRIC" "CDS" 1667030 1667839 810 "+" "FIG00000524" "PLF_1763_00000911" "PGF_10160552" "BAL65448.1" 269 "inhA" "Enoyl-[acyl-carrier-protein] reductase [NADH] (EC 1.3.1.9)" "GO:0004318|enoyl-[acyl-carrier-protein] reductase (NADH) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1674" "ERDMAN_1653" "VBIMycTub1140_1674" "PATRIC.652616.3.AP012340.CDS.1667845.1668879.fwd" "PATRIC" "CDS" 1667845 1668879 1035 "+" "FIG00000345" "PLF_1763_00000770" "PGF_02866866" "BAL65449.1" 344 "hemH" "Coproporphyrin ferrochelatase (EC 4.99.1.9)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1675" "ERDMAN_1654" "VBIMycTub1140_1675" "PATRIC.652616.3.AP012340.CDS.1668845.1669753.rev" "PATRIC" "CDS" 1668845 1669753 909 "-" "FIG00864343" "PLF_1763_00053374" "PGF_08225224" "BAL65450.1" 302 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1676" "ERDMAN_1655" "VBIMycTub1140_1676" "PATRIC.652616.3.AP012340.CDS.1669769.1670203.fwd" "PATRIC" "CDS" 1669769 1670203 435 "+" "FIG00019415" "PLF_1763_00001198" "PGF_10482976" "BAL65451.1" 144 "Putative activity regulator of membrane protease YbbK"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1677" "ERDMAN_1656" "VBIMycTub1140_1677" "PATRIC.652616.3.AP012340.CDS.1670225.1671319.fwd" "PATRIC" "CDS" 1670225 1671319 1095 "+" "FIG00000531" "PLF_1763_00000950" "PGF_00634936" "BAL65452.1" 364 "Protein QmcA (possibly involved in integral membrane quality control)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.165" "ERDMAN_0164" "VBIMycTub1140_0165" "PATRIC.652616.3.AP012340.CDS.167039.167950.fwd" "PATRIC" "CDS" 167039 167950 912 "+" "FIG00822260" "PLF_1763_00184473" "PGF_08225224" "BAL63981.1" 303 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1678" "ERDMAN_1657" "VBIMycTub1140_1678" "PATRIC.652616.3.AP012340.CDS.1671391.1671738.fwd" "PATRIC" "CDS" 1671391 1671738 348 "+" "FIG00822896" "PLF_1763_00348926" "PGF_08225224" "BAL65453.1" 115 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1679" "ERDMAN_1658" "VBIMycTub1140_1679" "PATRIC.652616.3.AP012340.CDS.1671772.1672002.fwd" "PATRIC" "CDS" 1671772 1672002 231 "+" "FIG01305173" "PLF_1763_00003729" "PGF_00021022" "BAL65454.1" 76 "Methylmalonyl-CoA mutase large subunit, MutB (EC 5.4.99.2)" "GO:0004494|methylmalonyl-CoA mutase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1680" "ERDMAN_1659" "VBIMycTub1140_1680" "PATRIC.652616.3.AP012340.CDS.1672152.1673459.fwd" "PATRIC" "CDS" 1672152 1673459 1308 "+" "FIG01121868" "PLF_1763_00002464" "PGF_08225224" "BAL65455.1" 435 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1681" "ERDMAN_1660" "VBIMycTub1140_1681" "PATRIC.652616.3.AP012340.CDS.1673626.1673820.fwd" "PATRIC" "CDS" 1673626 1673820 195 "+" "FIG00821852" "PLF_1763_00003626" "PGF_02412595" "BAL65456.1" 64 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1682" "ERDMAN_1661" "VBIMycTub1140_1682" "PATRIC.652616.3.AP012340.CDS.1674038.1674796.rev" "PATRIC" "CDS" 1674038 1674796 759 "-" "FIG00027618" "PLF_1763_00008488" "PGF_00422706" "BAL65457.1" 252 "DedA family protein paralog"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1683" "ERDMAN_1662" "VBIMycTub1140_1683" "PATRIC.652616.3.AP012340.CDS.1674987.1676834.fwd" "PATRIC" "CDS" 1674987 1676834 1848 "+" "FIG01274184" "PLF_1763_00000508" "PGF_00021023" "BAL65458.1" 615 "mutA" "Methylmalonyl-CoA mutase small subunit, MutA (EC 5.4.99.2)" "GO:0004494|methylmalonyl-CoA mutase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1684" "ERDMAN_1663" "VBIMycTub1140_1684" "PATRIC.652616.3.AP012340.CDS.1676835.1679087.fwd" "PATRIC" "CDS" 1676835 1679087 2253 "+" "FIG00000927" "PLF_1763_00000250" "PGF_00021022" "BAL65459.1" 750 "mutB" "Methylmalonyl-CoA mutase large subunit, MutB (EC 5.4.99.2)" "GO:0004494|methylmalonyl-CoA mutase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1685" "ERDMAN_1664" "VBIMycTub1140_1685" "PATRIC.652616.3.AP012340.CDS.1679140.1679403.fwd" "PATRIC" "CDS" 1679140 1679403 264 "+" "FIG00821541" "PLF_1763_00003301" "PGF_02412056" "BAL65460.1" 87 "Programmed cell death antitoxin MazE"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1686" "ERDMAN_1665" "VBIMycTub1140_1686" "PATRIC.652616.3.AP012340.CDS.1679400.1679717.fwd" "PATRIC" "CDS" 1679400 1679717 318 "+" "FIG00822396" "PLF_1763_00003167" "PGF_00037491" "BAL65461.1" 105 "Programmed cell death toxin MazF"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1687" "ERDMAN_1666" "VBIMycTub1140_1687" "PATRIC.652616.3.AP012340.CDS.1679708.1680718.fwd" "PATRIC" "CDS" 1679708 1680718 1011 "+" "FIG00007966" "PLF_1763_00000875" "PGF_09621708" "BAL65462.1" 336 "putative periplasmic protein kinase ArgK and related GTPases of G3E family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.166" "ERDMAN_0165" "VBIMycTub1140_0166" "PATRIC.652616.3.AP012340.CDS.168017.169495.rev" "PATRIC" "CDS" 168017 169495 1479 "-" "FIG00731882" "PLF_1763_00002349" "PGF_08147022" "BAL63982.1" 492 "Chloride channel protein" "GO:0005247|voltage-gated chloride channel activity;GO:0006821|chloride transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1688" "ERDMAN_1667" "VBIMycTub1140_1688" "PATRIC.652616.3.AP012340.CDS.1680771.1682060.fwd" "PATRIC" "CDS" 1680771 1682060 1290 "+" "FIG01388262" "PLF_1763_00001720" "PGF_00769929" "BAL65463.1" 429 "lipL" "Esterase LipL"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1689" "ERDMAN_1668" "VBIMycTub1140_1689" "PATRIC.652616.3.AP012340.CDS.1682133.1682750.rev" "PATRIC" "CDS" 1682133 1682750 618 "-" "FIG00515945" "PLF_1763_00126810" "PGF_06535873" "BAL65464.1" 205 "SAM-dependent methyltransferase Rv1498c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1690" "ERDMAN_1669" "VBIMycTub1140_1690" "PATRIC.652616.3.AP012340.CDS.1682964.1683176.rev" "PATRIC" "CDS" 1682964 1683176 213 "-" "FIG00820699" "PLF_1763_00248122" "PGF_03739865" "BAL65465.1" 70 "Dodecin, a flavin storage/sequestration protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1691" "ERDMAN_1670" "VBIMycTub1140_1691" "PATRIC.652616.3.AP012340.CDS.1683279.1683635.fwd" "PATRIC" "CDS" 1683279 1683635 357 "+" "FIG00821020" "PLF_1763_00003395" "PGF_00852610" "BAL65466.1" 118 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1692" "ERDMAN_1671" "VBIMycTub1140_1692" "PATRIC.652616.3.AP012340.CDS.1683704.1684708.fwd" "PATRIC" "CDS" 1683704 1684708 1005 "+" "FIG00454917" "PLF_1763_00003103" "PGF_00666902" "BAL65467.1" 334 "Glycosyl transferase, family 2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1693" "ERDMAN_1672" "VBIMycTub1140_1693" "PATRIC.652616.3.AP012340.CDS.1684720.1685541.fwd" "PATRIC" "CDS" 1684720 1685541 822 "+" "FIG01393940" "PLF_1763_00003017" "PGF_01076819" "BAL65468.1" 273 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1694" "ERDMAN_1673" "VBIMycTub1140_1694" "PATRIC.652616.3.AP012340.CDS.1685754.1686653.fwd" "PATRIC" "CDS" 1685754 1686653 900 "+" "FIG00821233" "PLF_1763_00002223" "PGF_12904048" "BAL65469.1" 299 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1695" "ERDMAN_1674" "VBIMycTub1140_1695" "PATRIC.652616.3.AP012340.CDS.1686826.1687092.rev" "PATRIC" "CDS" 1686826 1687092 267 "-" "FIG01308784" "BAL65470.1" 88 "dTDP-4-amino-4,6-dideoxygalactose transaminase (EC 2.6.1.59)" "GO:0019180|dTDP-4-amino-4,6-dideoxygalactose transaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1696" "ERDMAN_1675" "VBIMycTub1140_1696" "PATRIC.652616.3.AP012340.CDS.1687375.1687779.rev" "PATRIC" "CDS" 1687375 1687779 405 "-" "FIG00002354" "PLF_1763_00000050" "PGF_00070457" "BAL65471.1" 134 "dTDP-4-amino-4,6-dideoxygalactose transaminase (EC 2.6.1.59)" "GO:0019180|dTDP-4-amino-4,6-dideoxygalactose transaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1697" "ERDMAN_1676" "VBIMycTub1140_1697" "PATRIC.652616.3.AP012340.CDS.1687852.1687971.fwd" "PATRIC" "CDS" 1687852 1687971 120 "+" "FIG00820593" "PLF_1763_00004237" "PGF_02414655" "BAL65472.1" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1698" "ERDMAN_1677" "VBIMycTub1140_1698" "PATRIC.652616.3.AP012340.CDS.1688111.1688776.rev" "PATRIC" "CDS" 1688111 1688776 666 "-" "FIG01336741" "PLF_1763_00003303" "PGF_00044508" "BAL65473.1" 221 "Putative transferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1699" "ERDMAN_1678" "VBIMycTub1140_1699" "PATRIC.652616.3.AP012340.CDS.1688773.1688907.rev" "PATRIC" "CDS" 1688773 1688907 135 "-" "PLF_1763_00004111" "PGF_08225224" "BAL65474.1" 44 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1700" "ERDMAN_1679" "VBIMycTub1140_1700" "PATRIC.652616.3.AP012340.CDS.1689228.1689404.rev" "PATRIC" "CDS" 1689228 1689404 177 "-" "FIG01417068" "PLF_1763_00004183" "PGF_02414602" "BAL65475.1" 58 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1701" "ERDMAN_1680" "VBIMycTub1140_1701" "PATRIC.652616.3.AP012340.CDS.1689557.1690252.rev" "PATRIC" "CDS" 1689557 1690252 696 "-" "FIG00821894" "PLF_1763_00003968" "PGF_08225224" "BAL65476.1" 231 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1702" "ERDMAN_1681" "VBIMycTub1140_1702" "PATRIC.652616.3.AP012340.CDS.1690925.1692484.rev" "PATRIC" "CDS" 1690925 1692484 1560 "-" "FIG01121868" "PLF_1763_00368207" "PGF_08225224" "BAL65477.1" 519 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1703" "ERDMAN_1682" "VBIMycTub1140_1703" "PATRIC.652616.3.AP012340.CDS.1692696.1693058.fwd" "PATRIC" "CDS" 1692696 1693058 363 "+" "FIG00822915" "PLF_1763_00004517" "PGF_02415711" "BAL65478.1" 120 "GDP-mannose 4,6-dehydratase (EC 4.2.1.47)" "GO:0008446|GDP-mannose 4,6-dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1704" "ERDMAN_1683" "VBIMycTub1140_1704" "PATRIC.652616.3.AP012340.CDS.1693084.1693923.fwd" "PATRIC" "CDS" 1693084 1693923 840 "+" "FIG00995955" "PLF_1763_00003966" "PGF_01898258" "BAL65479.1" 279 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1705" "ERDMAN_1684" "VBIMycTub1140_1705" "PATRIC.652616.3.AP012340.CDS.1694152.1695423.fwd" "PATRIC" "CDS" 1694152 1695423 1272 "+" "FIG00638284" "PLF_1763_00155645" "PGF_03661863" "BAL65480.1" 423 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1706" "ERDMAN_1685" "VBIMycTub1140_1706" "PATRIC.652616.3.AP012340.CDS.1695904.1696926.fwd" "PATRIC" "CDS" 1695904 1696926 1023 "+" "FIG01463199" "PLF_1763_00003928" "PGF_02415711" "BAL65481.1" 340 "gmdA" "GDP-mannose 4,6-dehydratase (EC 4.2.1.47)" "GO:0008446|GDP-mannose 4,6-dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1707" "ERDMAN_1686" "VBIMycTub1140_1707" "PATRIC.652616.3.AP012340.CDS.1696923.1697891.fwd" "PATRIC" "CDS" 1696923 1697891 969 "+" "FIG01321732" "PLF_1763_00003931" "PGF_02827227" "BAL65482.1" 322 "epiA" "GDP-L-fucose synthetase (EC 1.1.1.271)" "GO:0050577|GDP-L-fucose synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1708" "ERDMAN_1687" "VBIMycTub1140_1708" "PATRIC.652616.3.AP012340.CDS.1697888.1698619.fwd" "PATRIC" "CDS" 1697888 1698619 732 "+" "FIG01352866" "PLF_1763_00003955" "PGF_08225224" "BAL65483.1" 243 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.167" "ERDMAN_0166" "VBIMycTub1140_0167" "PATRIC.652616.3.AP012340.CDS.169795.170439.fwd" "PATRIC" "CDS" 169795 170439 645 "+" "FIG00554417" "PLF_1763_00000497" "PGF_07182652" "BAL63983.1" 214 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1709" "ERDMAN_1688" "VBIMycTub1140_1709" "PATRIC.652616.3.AP012340.CDS.1698637.1699425.rev" "PATRIC" "CDS" 1698637 1699425 789 "-" "FIG01195418" "PLF_1763_00003969" "PGF_08225224" "BAL65484.1" 262 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1710" "ERDMAN_1689" "VBIMycTub1140_1710" "PATRIC.652616.3.AP012340.CDS.1699460.1700317.rev" "PATRIC" "CDS" 1699460 1700317 858 "-" "FIG00822021" "PLF_1763_00003973" "PGF_08225224" "BAL65485.1" 285 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1711" "ERDMAN_1690" "VBIMycTub1140_1711" "PATRIC.652616.3.AP012340.CDS.1700359.1701369.rev" "PATRIC" "CDS" 1700359 1701369 1011 "-" "FIG01346104" "PLF_1763_00003975" "PGF_08225224" "BAL65486.1" 336 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1712" "VBIMycTub1140_1712" "PATRIC.652616.3.AP012340.CDS.1701366.1701482.rev" "PATRIC" "CDS" 1701366 1701482 117 "-" "FIG01334324" "PLF_1763_00004008" "PGF_02413531" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1713" "ERDMAN_1691" "VBIMycTub1140_1713" "PATRIC.652616.3.AP012340.CDS.1701710.1702465.fwd" "PATRIC" "CDS" 1701710 1702465 756 "+" "FIG01341103" "PLF_1763_00003354" "PGF_08225224" "BAL65487.1" 251 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1714" "ERDMAN_1692" "VBIMycTub1140_1714" "PATRIC.652616.3.AP012340.CDS.1702498.1703433.fwd" "PATRIC" "CDS" 1702498 1703433 936 "+" "FIG00015097" "PLF_1763_00003298" "PGF_00009860" "BAL65488.1" 311 "Glycosyltransferase PglI (EC 2.4.1.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1715" "ERDMAN_1693" "VBIMycTub1140_1715" "PATRIC.652616.3.AP012340.CDS.1703665.1703832.fwd" "PATRIC" "CDS" 1703665 1703832 168 "+" "FIG00821350" "PLF_1763_00003858" "PGF_08225224" "BAL65489.1" 55 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1716" "ERDMAN_1694" "VBIMycTub1140_1716" "PATRIC.652616.3.AP012340.CDS.1703858.1704898.fwd" "PATRIC" "CDS" 1703858 1704898 1041 "+" "FIG01362738" "PLF_1763_00003388" "PGF_08225224" "BAL65490.1" 346 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1717" "ERDMAN_1695" "VBIMycTub1140_1717" "PATRIC.652616.3.AP012340.CDS.1704887.1705087.rev" "PATRIC" "CDS" 1704887 1705087 201 "-" "FIG00820989" "PLF_1763_00003527" "PGF_02412540" "BAL65491.1" 66 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1718" "ERDMAN_1696" "VBIMycTub1140_1718" "PATRIC.652616.3.AP012340.CDS.1705138.1706883.fwd" "PATRIC" "CDS" 1705138 1706883 1746 "+" "FIG00018699" "PLF_1763_00001999" "PGF_03124475" "BAL65492.1" 581 "fadD25" "Polyketide synthase modules and related proteins @ Long-chain fatty-acid-AMP ligase, Mycobacterial subgroup FadD25"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.168" "ERDMAN_0167" "VBIMycTub1140_0168" "PATRIC.652616.3.AP012340.CDS.170528.171481.fwd" "PATRIC" "CDS" 170528 171481 954 "+" "FIG00823032" "PLF_1763_00000084" "PGF_02409218" "BAL63984.1" 317 "O-methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1719" "ERDMAN_1697" "VBIMycTub1140_1719" "PATRIC.652616.3.AP012340.CDS.1707002.1710442.rev" "PATRIC" "CDS" 1707002 1710442 3441 "-" "FIG01328060" "PLF_1763_00054565" "PGF_00060618" "BAL65493.1" 1146 "mmpL12" "Transmembrane transport protein MmpL8/MmpL10/MmpL12"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1720" "ERDMAN_1698" "VBIMycTub1140_1720" "PATRIC.652616.3.AP012340.CDS.1710431.1710751.fwd" "PATRIC" "CDS" 1710431 1710751 321 "+" "FIG00820233" "PLF_1763_00012735" "PGF_00385571" "BAL65494.1" 106 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1721" "ERDMAN_1699" "VBIMycTub1140_1721" "PATRIC.652616.3.AP012340.CDS.1710741.1711526.fwd" "PATRIC" "CDS" 1710741 1711526 786 "+" "FIG01308437" "PLF_1763_00003413" "PGF_00004119" "BAL65495.1" 261 "Fatty-acid O-methyltransferase (EC 2.1.1.15)" "GO:0030733|fatty acid O-methyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1722" "ERDMAN_1700" "VBIMycTub1140_1722" "PATRIC.652616.3.AP012340.CDS.1711556.1712800.fwd" "PATRIC" "CDS" 1711556 1712800 1245 "+" "PLF_1763_00001854" "PGF_00064732" "BAL65496.1" 414 "Uncharacterized glycosyltransferase Rv1524/MT1575 (EC 2.-.-.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1723" "ERDMAN_1701" "VBIMycTub1140_1723" "PATRIC.652616.3.AP012340.CDS.1712880.1713632.fwd" "PATRIC" "CDS" 1712880 1713632 753 "+" "FIG01317637" "PLF_1763_00003835" "PGF_02412913" "BAL65497.1" 250 "wbbL2" "POSSIBLE RHAMNOSYL TRANSFERASE WBBL2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1724" "ERDMAN_1702" "VBIMycTub1140_1724" "PATRIC.652616.3.AP012340.CDS.1713610.1714878.rev" "PATRIC" "CDS" 1713610 1714878 1269 "-" "PLF_1763_00002936" "PGF_08225224" "BAL65498.1" 422 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1725" "ERDMAN_1703" "VBIMycTub1140_1725" "PATRIC.652616.3.AP012340.CDS.1714913.1721176.rev" "PATRIC" "CDS" 1714913 1721176 6264 "-" "FIG00823157" "PLF_1763_00013147" "PGF_00034673" "BAL65499.1" 2087 "pks5" "Polyketide synthase / Multifunctional mycocerosic acid synthase membrane-associated mas"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.169" "ERDMAN_0168" "VBIMycTub1140_0169" "PATRIC.652616.3.AP012340.CDS.171524.172456.fwd" "PATRIC" "CDS" 171524 172456 933 "+" "FIG00823032" "PLF_1763_00009011" "PGF_02409218" "BAL63985.1" 310 "O-methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1726" "ERDMAN_1704" "VBIMycTub1140_1726" "PATRIC.652616.3.AP012340.CDS.1721783.1722223.rev" "PATRIC" "CDS" 1721783 1722223 441 "-" "FIG01333432" "PLF_1763_00003211" "PGF_02411424" "BAL65500.1" 146 "papA4" "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1727" "ERDMAN_1705" "VBIMycTub1140_1727" "PATRIC.652616.3.AP012340.CDS.1722332.1724086.fwd" "PATRIC" "CDS" 1722332 1724086 1755 "+" "FIG00018699" "PLF_1763_00003074" "PGF_03139219" "BAL65501.1" 584 "fadD24" "Polyketide synthase modules and related proteins @ Long-chain fatty-acid-AMP ligase, Mycobacterial subgroup FadD24"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1728" "ERDMAN_1706" "VBIMycTub1140_1728" "PATRIC.652616.3.AP012340.CDS.1724203.1725306.fwd" "PATRIC" "CDS" 1724203 1725306 1104 "+" "FIG01007502" "PLF_1763_00002677" "PGF_03572345" "BAL65502.1" 367 "adh" "Alcohol dehydrogenase (EC 1.1.1.1)" "GO:0004022|alcohol dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1729" "ERDMAN_1707" "VBIMycTub1140_1729" "PATRIC.652616.3.AP012340.CDS.1725318.1725869.fwd" "PATRIC" "CDS" 1725318 1725869 552 "+" "FIG00825342" "PLF_1763_00154604" "PGF_02386207" "BAL65503.1" 183 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.170" "ERDMAN_0169" "VBIMycTub1140_0170" "PATRIC.652616.3.AP012340.CDS.172551.174071.fwd" "PATRIC" "CDS" 172551 174071 1521 "+" "FIG01292786" "PLF_1763_00035771" "PGF_07597988" "BAL63986.1" 506 "Aldehyde dehydrogenase (EC 1.2.1.3)" "GO:0004029|aldehyde dehydrogenase (NAD) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1730" "ERDMAN_1708" "VBIMycTub1140_1730" "PATRIC.652616.3.AP012340.CDS.1725946.1726380.rev" "PATRIC" "CDS" 1725946 1726380 435 "-" "FIG01382284" "PLF_1763_00003539" "PGF_08225224" "BAL65504.1" 144 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1731" "ERDMAN_1709" "VBIMycTub1140_1731" "PATRIC.652616.3.AP012340.CDS.1726440.1727567.fwd" "PATRIC" "CDS" 1726440 1727567 1128 "+" "FIG00007641" "PLF_1763_00352002" "PGF_05326245" "BAL65505.1" 375 "putative oxidoreductase, nitronate monooxygenase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1732" "ERDMAN_1710" "VBIMycTub1140_1732" "PATRIC.652616.3.AP012340.CDS.1727564.1728241.fwd" "PATRIC" "CDS" 1727564 1728241 678 "+" "FIG00554417" "PLF_1763_00002793" "PGF_07182652" "BAL65506.1" 225 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1733" "ERDMAN_1711" "VBIMycTub1140_1733" "PATRIC.652616.3.AP012340.CDS.1728806.1729042.fwd" "PATRIC" "CDS" 1728806 1729042 237 "+" "FIG01349460" "PLF_1763_00003311" "PGF_08225224" "BAL65507.1" 78 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1734" "ERDMAN_1712" "VBIMycTub1140_1734" "PATRIC.652616.3.AP012340.CDS.1729349.1732474.fwd" "PATRIC" "CDS" 1729349 1732474 3126 "+" "FIG00000085" "PLF_1763_00000409" "PGF_05171623" "BAL65508.1" 1041 "ileS" "Isoleucyl-tRNA synthetase (EC 6.1.1.5)" "GO:0004822|isoleucine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1735" "ERDMAN_1713" "VBIMycTub1140_1735" "PATRIC.652616.3.AP012340.CDS.1732686.1734077.fwd" "PATRIC" "CDS" 1732686 1734077 1392 "+" "FIG00023943" "PLF_1763_00000834" "PGF_03787622" "BAL65509.1" 463 "dinX" "DNA polymerase IV (EC 2.7.7.7)" "GO:0003887|DNA-directed DNA polymerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1736" "ERDMAN_1714" "VBIMycTub1140_1736" "PATRIC.652616.3.AP012340.CDS.1734042.1735007.rev" "PATRIC" "CDS" 1734042 1735007 966 "-" "FIG00000376" "PLF_1763_00006740" "PGF_00016046" "BAL65510.1" 321 "ansA" "L-asparaginase (EC 3.5.1.1)" "GO:0004067|asparaginase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1737" "ERDMAN_1715" "VBIMycTub1140_1737" "PATRIC.652616.3.AP012340.CDS.1735176.1735682.fwd" "PATRIC" "CDS" 1735176 1735682 507 "+" "FIG00000081" "PLF_1763_00001033" "PGF_10049472" "BAL65511.1" 168 "lspA" "Lipoprotein signal peptidase (EC 3.4.23.36)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1738" "ERDMAN_1716" "VBIMycTub1140_1738" "PATRIC.652616.3.AP012340.CDS.1735717.1736601.fwd" "PATRIC" "CDS" 1735717 1736601 885 "+" "FIG00000124" "PLF_1763_00000815" "PGF_10569727" "BAL65512.1" 294 "LSU rRNA pseudouridine(1911/1915/1917) synthase (EC 5.4.99.23)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1739" "ERDMAN_1717" "VBIMycTub1140_1739" "PATRIC.652616.3.AP012340.CDS.1736608.1737078.rev" "PATRIC" "CDS" 1736608 1737078 471 "-" "FIG01470432" "PLF_1763_00003273" "PGF_00400658" "BAL65513.1" 156 "lprI" "Glycolipoprotein LprI, lysozyme inhibitor"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1740" "ERDMAN_1718" "VBIMycTub1140_1740" "PATRIC.652616.3.AP012340.CDS.1737256.1737648.rev" "PATRIC" "CDS" 1737256 1737648 393 "-" "FIG00002685" "PLF_1763_00002005" "PGF_00419864" "BAL65514.1" 130 "glbN" "Cyanoglobin; Hemoglobin-like protein HbN"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1741" "ERDMAN_1719" "VBIMycTub1140_1741" "PATRIC.652616.3.AP012340.CDS.1737894.1738919.fwd" "PATRIC" "CDS" 1737894 1738919 1026 "+" "FIG01320732" "PLF_1763_00366455" "PGF_10532194" "BAL65515.1" 341 "Oxidoreductase, short-chain dehydrogenase/reductase family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1742" "ERDMAN_1720" "VBIMycTub1140_1742" "PATRIC.652616.3.AP012340.CDS.1738924.1739727.fwd" "PATRIC" "CDS" 1738924 1739727 804 "+" "FIG01339396" "PLF_1763_00003477" "PGF_08225224" "BAL65516.1" 267 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1743" "ERDMAN_1721" "VBIMycTub1140_1743" "PATRIC.652616.3.AP012340.CDS.1740025.1740456.fwd" "PATRIC" "CDS" 1740025 1740456 432 "+" "FIG00820143" "PLF_1763_00155782" "PGF_08225224" "BAL65517.1" 143 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1744" "ERDMAN_1722" "VBIMycTub1140_1744" "PATRIC.652616.3.AP012340.CDS.1740554.1744078.fwd" "PATRIC" "CDS" 1740554 1744078 3525 "+" "FIG00041038" "PLF_1763_00000272" "PGF_10406880" "BAL65518.1" 1174 "dnaE" "DNA polymerase III alpha subunit (EC 2.7.7.7)" "GO:0003887|DNA-directed DNA polymerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.171" "ERDMAN_0170" "VBIMycTub1140_0171" "PATRIC.652616.3.AP012340.CDS.174146.175006.fwd" "PATRIC" "CDS" 174146 175006 861 "+" "FIG00546160" "PLF_1763_00000260" "PGF_09682510" "BAL63987.1" 286 "Short-chain dehydrogenase/reductase SDR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1745" "ERDMAN_1723" "VBIMycTub1140_1745" "PATRIC.652616.3.AP012340.CDS.1744127.1746172.rev" "PATRIC" "CDS" 1744127 1746172 2046 "-" "FIG00013075" "PLF_1763_00002959" "PGF_03042093" "BAL65519.1" 681 "PPE21" "PPE family protein, MPTR subgroup => PPE21"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1746" "ERDMAN_1724" "VBIMycTub1140_1746" "PATRIC.652616.3.AP012340.CDS.1746437.1746868.fwd" "PATRIC" "CDS" 1746437 1746868 432 "+" "FIG00018699" "PLF_1763_00150323" "PGF_03048236" "BAL65520.1" 143 "fadD11.1" "Long-chain-fatty-acid--CoA ligase (EC 6.2.1.3) @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD11" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.19" "ERDMAN_0020" "VBIMycTub1140_0019" "PATRIC.652616.3.AP012340.CDS.17467.18744.rev" "PATRIC" "CDS" 17467 18744 1278 "-" "FIG00662117" "PLF_1763_00010796" "PGF_03099722" "BAL63838.1" 425 "pknA" "Serine/threonine-protein kinase PknA (EC 2.7.11.1)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1747" "ERDMAN_1725" "VBIMycTub1140_1747" "PATRIC.652616.3.AP012340.CDS.1746874.1748262.fwd" "PATRIC" "CDS" 1746874 1748262 1389 "+" "FIG00018699" "PLF_1763_00000043" "PGF_03048236" "BAL65521.1" 462 "fadD11" "Long-chain-fatty-acid--CoA ligase (EC 6.2.1.3) @ Long-chain fatty-acid-CoA ligase (EC 6.2.1.3), Mycobacterial subgroup FadD11" "GO:0004467|long-chain fatty acid-CoA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1748" "ERDMAN_1726" "VBIMycTub1140_1748" "PATRIC.652616.3.AP012340.CDS.1748291.1750141.fwd" "PATRIC" "CDS" 1748291 1750141 1851 "+" "FIG00001327" "PLF_1763_00249195" "PGF_00008595" "BAL65522.1" 616 "plsB1" "Glycerol-3-phosphate acyltransferase (EC 2.3.1.15)" "GO:0004366|glycerol-3-phosphate O-acyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.172" "ERDMAN_0171" "VBIMycTub1140_0172" "PATRIC.652616.3.AP012340.CDS.175013.175981.fwd" "PATRIC" "CDS" 175013 175981 969 "+" "FIG00002982" "PLF_1763_00002471" "PGF_04596496" "BAL63988.1" 322 "Quinone oxidoreductase (EC 1.6.5.5)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1749" "ERDMAN_1727" "VBIMycTub1140_1749" "PATRIC.652616.3.AP012340.CDS.1750269.1750502.fwd" "PATRIC" "CDS" 1750269 1750502 234 "+" "FIG00821242" "PLF_1763_00003642" "PGF_07660389" "BAL65523.1" 77 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1750" "ERDMAN_1728" "VBIMycTub1140_1750" "PATRIC.652616.3.AP012340.CDS.1750512.1752263.fwd" "PATRIC" "CDS" 1750512 1752263 1752 "+" "FIG00136922" "PLF_1763_00002912" "PGF_03803868" "BAL65524.1" 583 "frdA" "Fumarate reductase flavoprotein subunit (EC 1.3.5.4)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1751" "ERDMAN_1729" "VBIMycTub1140_1751" "PATRIC.652616.3.AP012340.CDS.1752269.1753009.fwd" "PATRIC" "CDS" 1752269 1753009 741 "+" "FIG00026006" "PLF_1763_00003601" "PGF_03034557" "BAL65525.1" 246 "frdB" "Fumarate reductase iron-sulfur protein (EC 1.3.5.4)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1752" "ERDMAN_1730" "VBIMycTub1140_1752" "PATRIC.652616.3.AP012340.CDS.1753072.1753386.fwd" "PATRIC" "CDS" 1753072 1753386 315 "+" "FIG00002653" "PLF_1763_00003941" "PGF_08220860" "BAL65526.1" 104 "frdC" "Fumarate reductase subunit C" "GO:0006118|electron transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1753" "ERDMAN_1731" "VBIMycTub1140_1753" "PATRIC.652616.3.AP012340.CDS.1753383.1753760.fwd" "PATRIC" "CDS" 1753383 1753760 378 "+" "FIG00002739" "PLF_1763_00003780" "PGF_00006501" "BAL65527.1" 125 "frdD" "Fumarate reductase subunit D" "GO:0006106|fumarate metabolic process;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1754" "ERDMAN_1732" "VBIMycTub1140_1754" "PATRIC.652616.3.AP012340.CDS.1753909.1754436.fwd" "PATRIC" "CDS" 1753909 1754436 528 "+" "FIG00554417" "PLF_1763_00250520" "PGF_07182652" "BAL65528.1" 175 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1755" "ERDMAN_1733" "VBIMycTub1140_1755" "PATRIC.652616.3.AP012340.CDS.1754575.1755768.fwd" "PATRIC" "CDS" 1754575 1755768 1194 "+" "FIG01441570" "PLF_1763_00052576" "PGF_03073455" "BAL65529.1" 397 "mmpL6" "Transmembrane transport protein MmpL6"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1756" "ERDMAN_1734" "VBIMycTub1140_1756" "PATRIC.652616.3.AP012340.CDS.1755778.1756224.fwd" "PATRIC" "CDS" 1755778 1756224 447 "+" "FIG00862767" "PLF_1763_00002154" "PGF_10223249" "BAL65530.1" 148 "Uncharacterized flavin-binding protein SCO0775"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1757" "ERDMAN_1735" "VBIMycTub1140_1757" "PATRIC.652616.3.AP012340.CDS.1756259.1757548.fwd" "PATRIC" "CDS" 1756259 1757548 1290 "+" "FIG00022899" "PLF_1763_00061794" "PGF_06757295" "BAL65531.1" 429 "ilvA" "Threonine dehydratase biosynthetic (EC 4.3.1.19)" "GO:0004794|L-threonine ammonia-lyase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1758" "ERDMAN_1736" "VBIMycTub1140_1758" "PATRIC.652616.3.AP012340.CDS.1757586.1757804.fwd" "PATRIC" "CDS" 1757586 1757804 219 "+" "FIG00821923" "PLF_1763_00003063" "PGF_02411000" "BAL65532.1" 72 "antotoxin VapB11 @ Antitoxin to Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1759" "ERDMAN_1737" "VBIMycTub1140_1759" "PATRIC.652616.3.AP012340.CDS.1757810.1758214.fwd" "PATRIC" "CDS" 1757810 1758214 405 "+" "FIG00820946" "PLF_1763_00003019" "PGF_00100179" "BAL65533.1" 134 "toxin VapC11 @ Toxin 1, PIN domain"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1760" "ERDMAN_1738" "VBIMycTub1140_1760" "PATRIC.652616.3.AP012340.CDS.1758231.1759973.rev" "PATRIC" "CDS" 1758231 1759973 1743 "-" "FIG00001338" "PLF_1763_00001406" "PGF_00019051" "BAL65534.1" 580 "treZ" "Malto-oligosyltrehalose trehalohydrolase (EC 3.2.1.141)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.173" "ERDMAN_0172" "VBIMycTub1140_0173" "PATRIC.652616.3.AP012340.CDS.175978.176301.rev" "PATRIC" "CDS" 175978 176301 324 "-" "FIG00820778" "PLF_1763_00003047" "PGF_08153961" "BAL63989.1" 107 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1761" "ERDMAN_1739" "VBIMycTub1140_1761" "PATRIC.652616.3.AP012340.CDS.1759966.1762263.rev" "PATRIC" "CDS" 1759966 1762263 2298 "-" "FIG00001606" "PLF_1763_00000132" "PGF_06757690" "BAL65535.1" 765 "treY" "Malto-oligosyltrehalose synthase (EC 5.4.99.15)" "GO:0047470|(1,4)-alpha-D-glucan 1-alpha-D-glucosylmutase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1762" "ERDMAN_1740" "VBIMycTub1140_1762" "PATRIC.652616.3.AP012340.CDS.1762267.1764435.rev" "PATRIC" "CDS" 1762267 1764435 2169 "-" "FIG00109688" "PLF_1763_00035246" "PGF_05732875" "BAL65536.1" 722 "treX" "Limit dextrin alpha-1,6-maltotetraose-hydrolase (EC 3.2.1.196)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1763" "ERDMAN_1741" "VBIMycTub1140_1763" "PATRIC.652616.3.AP012340.CDS.1764471.1766594.rev" "PATRIC" "CDS" 1764471 1766594 2124 "-" "FIG01370327" "PLF_1763_00344245" "PGF_00026650" "BAL65537.1" 707 "O-antigen acetylase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1764" "ERDMAN_1742" "VBIMycTub1140_1764" "PATRIC.652616.3.AP012340.CDS.1766759.1767451.rev" "PATRIC" "CDS" 1766759 1767451 693 "-" "FIG01316782" "PLF_1763_00013462" "PGF_05037189" "BAL65538.1" 230 "NLP/P60 family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.174" "ERDMAN_0173" "VBIMycTub1140_0174" "PATRIC.652616.3.AP012340.CDS.176701.176826.fwd" "PATRIC" "CDS" 176701 176826 126 "+" "FIG00819974" "PLF_1763_00003507" "PGF_02412532" "BAL63990.1" 41 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1765" "ERDMAN_1743" "VBIMycTub1140_1765" "PATRIC.652616.3.AP012340.CDS.1767691.1767975.rev" "PATRIC" "CDS" 1767691 1767975 285 "-" "FIG00821754" "PLF_1763_00411781" "PGF_12786100" "BAL65539.1" 94 "Uncharacterized protein Rv1567c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1766" "ERDMAN_1744" "VBIMycTub1140_1766" "PATRIC.652616.3.AP012340.CDS.1768187.1769536.fwd" "PATRIC" "CDS" 1768187 1769536 1350 "+" "FIG00012547" "PLF_1763_00000795" "PGF_05255412" "BAL65540.1" 449 "bioA" "Adenosylmethionine-8-amino-7-oxononanoate aminotransferase (EC 2.6.1.62)" "GO:0004015|adenosylmethionine-8-amino-7-oxononanoate transaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.175" "ERDMAN_0174" "VBIMycTub1140_0175" "PATRIC.652616.3.AP012340.CDS.176856.178538.rev" "PATRIC" "CDS" 176856 178538 1683 "-" "FIG01311212" "PLF_1763_00002624" "PGF_02893628" "BAL63991.1" 560 "PE1" "PE family protein => PE1"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1767" "ERDMAN_1745" "VBIMycTub1140_1767" "PATRIC.652616.3.AP012340.CDS.1769533.1770693.fwd" "PATRIC" "CDS" 1769533 1770693 1161 "+" "FIG00051001" "PLF_1763_00001383" "PGF_07541421" "BAL65541.1" 386 "bioF1" "8-amino-7-oxononanoate synthase (EC 2.3.1.47)" "GO:0008710|8-amino-7-oxononanoate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1768" "ERDMAN_1746" "VBIMycTub1140_1768" "PATRIC.652616.3.AP012340.CDS.1770690.1771370.fwd" "PATRIC" "CDS" 1770690 1771370 681 "+" "FIG00000423" "PLF_1763_00001357" "PGF_03760224" "BAL65542.1" 226 "bioD" "Dethiobiotin synthase BioD (EC 6.3.3.3)" "GO:0004141|dethiobiotin synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1769" "ERDMAN_1747" "VBIMycTub1140_1769" "PATRIC.652616.3.AP012340.CDS.1771373.1771879.fwd" "PATRIC" "CDS" 1771373 1771879 507 "+" "FIG00820025" "PLF_1763_00377494" "PGF_08225224" "BAL65543.1" 168 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1770" "ERDMAN_1748" "VBIMycTub1140_1770" "PATRIC.652616.3.AP012340.CDS.1772025.1772981.rev" "PATRIC" "CDS" 1772025 1772981 957 "-" "FIG00820827" "PLF_1763_00042741" "PGF_05503590" "BAL65544.1" 318 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1771" "ERDMAN_1749" "VBIMycTub1140_1771" "PATRIC.652616.3.AP012340.CDS.1772974.1773093.fwd" "PATRIC" "CDS" 1772974 1773093 120 "+" "FIG01804231" "PLF_1763_00000014" "PGF_03982285" "BAL65545.1" 39 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1772" "ERDMAN_1750" "VBIMycTub1140_1772" "PATRIC.652616.3.AP012340.CDS.1773820.1774917.fwd" "PATRIC" "CDS" 1773820 1774917 1098 "+" "FIG00000467" "PLF_1763_00000612" "PGF_01400330" "BAL65546.1" 365 "bioB" "Biotin synthase (EC 2.8.1.6)" "GO:0004076|biotin synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1773" "VBIMycTub1140_1773" "PATRIC.652616.3.AP012340.CDS.1774930.1775157.fwd" "PATRIC" "CDS" 1774930 1775157 228 "+" "FIG00820825" "PLF_1763_00003841" "PGF_02890787" 75 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1774" "ERDMAN_1751" "VBIMycTub1140_1774" "PATRIC.652616.3.AP012340.CDS.1775097.1775819.fwd" "PATRIC" "CDS" 1775097 1775819 723 "+" "FIG01121868" "PLF_1763_00009186" "PGF_03690133" "BAL65547.1" 240 "Putative transmembrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1775" "ERDMAN_1752" "VBIMycTub1140_1775" "PATRIC.652616.3.AP012340.CDS.1775984.1777324.rev" "PATRIC" "CDS" 1775984 1777324 1341 "-" "FIG01327998" "PLF_1763_00000643" "PGF_00017018" "BAL65548.1" 446 "Lipase 1 (EC 3.1.1.3)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1776" "ERDMAN_1753" "VBIMycTub1140_1776" "PATRIC.652616.3.AP012340.CDS.1777581.1778291.rev" "PATRIC" "CDS" 1777581 1778291 711 "-" "FIG00937811" "PLF_1763_00001120" "PGF_06745520" "BAL65549.1" 236 "Nudix-related transcriptional regulator NrtR"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1777" "ERDMAN_1754" "VBIMycTub1140_1777" "PATRIC.652616.3.AP012340.CDS.1778340.1779389.fwd" "PATRIC" "CDS" 1778340 1779389 1050 "+" "FIG00000463" "PLF_1763_00000814" "PGF_02278006" "BAL65550.1" 349 "nadA" "Quinolinate synthetase (EC 2.5.1.72)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1778" "ERDMAN_1755" "VBIMycTub1140_1778" "PATRIC.652616.3.AP012340.CDS.1779389.1780972.fwd" "PATRIC" "CDS" 1779389 1780972 1584 "+" "FIG00000575" "PLF_1763_00001309" "PGF_07459509" "BAL65551.1" 527 "nadB" "L-aspartate oxidase (EC 1.4.3.16)" "GO:0008734|L-aspartate oxidase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1779" "ERDMAN_1756" "VBIMycTub1140_1779" "PATRIC.652616.3.AP012340.CDS.1780972.1781829.fwd" "PATRIC" "CDS" 1780972 1781829 858 "+" "FIG00000413" "PLF_1763_00001214" "PGF_04828114" "BAL65552.1" 285 "nadC" "Quinolinate phosphoribosyltransferase [decarboxylating] (EC 2.4.2.19)" "GO:0004514|nicotinate-nucleotide diphosphorylase (carboxylating) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1780" "ERDMAN_1757" "VBIMycTub1140_1780" "PATRIC.652616.3.AP012340.CDS.1781902.1782636.fwd" "PATRIC" "CDS" 1781902 1782636 735 "+" "FIG00515945" "PLF_1763_00002694" "PGF_06788576" "BAL65553.1" 244 "SAM-dependent methyltransferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1781" "ERDMAN_1758" "VBIMycTub1140_1781" "PATRIC.652616.3.AP012340.CDS.1782657.1783067.rev" "PATRIC" "CDS" 1782657 1783067 411 "-" "FIG00820653" "PLF_1763_00413003" "PGF_08225224" "BAL65554.1" 136 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1782" "ERDMAN_1759" "VBIMycTub1140_1782" "PATRIC.652616.3.AP012340.CDS.1783149.1784483.fwd" "PATRIC" "CDS" 1783149 1784483 1335 "+" "FIG00000303" "PLF_1763_00000490" "PGF_05760069" "BAL65555.1" 444 "hisD" "Histidinol dehydrogenase (EC 1.1.1.23)" "GO:0004399|histidinol dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1783" "ERDMAN_1760" "VBIMycTub1140_1783" "PATRIC.652616.3.AP012340.CDS.1784480.1785622.fwd" "PATRIC" "CDS" 1784480 1785622 1143 "+" "FIG00000474" "PLF_1763_00083101" "PGF_03811905" "BAL65556.1" 380 "hisC1" "Histidinol-phosphate aminotransferase (EC 2.6.1.9)" "GO:0004400|histidinol-phosphate transaminase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1784" "ERDMAN_1761" "VBIMycTub1140_1784" "PATRIC.652616.3.AP012340.CDS.1785619.1786251.fwd" "PATRIC" "CDS" 1785619 1786251 633 "+" "FIG00000601" "PLF_1763_00000863" "PGF_00013803" "BAL65557.1" 210 "hisB" "Imidazoleglycerol-phosphate dehydratase (EC 4.2.1.19)" "GO:0004424|imidazoleglycerol-phosphate dehydratase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1785" "ERDMAN_1762" "VBIMycTub1140_1785" "PATRIC.652616.3.AP012340.CDS.1786248.1786868.fwd" "PATRIC" "CDS" 1786248 1786868 621 "+" "FIG00010738" "PLF_1763_00000862" "PGF_04867467" "BAL65558.1" 206 "hisH" "Imidazole glycerol phosphate synthase amidotransferase subunit HisH"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.176" "ERDMAN_0175" "VBIMycTub1140_0176" "PATRIC.652616.3.AP012340.CDS.178632.180104.rev" "PATRIC" "CDS" 178632 180104 1473 "-" "FIG01311212" "PLF_1763_00002524" "PGF_02912734" "BAL63992.1" 490 "PE2" "PE family protein => PE2"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1786" "ERDMAN_1763" "VBIMycTub1140_1786" "PATRIC.652616.3.AP012340.CDS.1786881.1787615.fwd" "PATRIC" "CDS" 1786881 1787615 735 "+" "FIG00137296" "PLF_1763_00000675" "PGF_00033950" "BAL65559.1" 244 "hisA" "Phosphoribosylformimino-5-aminoimidazole carboxamide ribotide isomerase (EC 5.3.1.16) @ Acting phosphoribosylanthranilate isomerase (EC 5.3.1.24)" "GO:0003949|1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity;GO:0004640|phosphoribosylanthranilate isomerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1787" "ERDMAN_1764" "VBIMycTub1140_1787" "PATRIC.652616.3.AP012340.CDS.1787623.1788435.fwd" "PATRIC" "CDS" 1787623 1788435 813 "+" "FIG00001748" "PLF_1763_00001373" "PGF_08151051" "BAL65560.1" 270 "impA" "Histidinol-phosphatase [alternative form] (EC 3.1.3.15)" "GO:0004401|histidinol-phosphatase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1788" "ERDMAN_1765" "VBIMycTub1140_1788" "PATRIC.652616.3.AP012340.CDS.1788437.1789240.fwd" "PATRIC" "CDS" 1788437 1789240 804 "+" "FIG00000258" "PLF_1763_00000574" "PGF_02011760" "BAL65561.1" 267 "hisF" "Imidazole glycerol phosphate synthase cyclase subunit"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1789" "ERDMAN_1766" "VBIMycTub1140_1789" "PATRIC.652616.3.AP012340.CDS.1789237.1789584.fwd" "PATRIC" "CDS" 1789237 1789584 348 "+" "FIG01303889" "PLF_1763_00001183" "PGF_02776739" "BAL65562.1" 115 "hisI" "Phosphoribosyl-AMP cyclohydrolase (EC 3.5.4.19)" "GO:0004635|phosphoribosyl-AMP cyclohydrolase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1790" "ERDMAN_1767" "VBIMycTub1140_1790" "PATRIC.652616.3.AP012340.CDS.1789765.1790847.fwd" "PATRIC" "CDS" 1789765 1790847 1083 "+" "FIG00634903" "PLF_1763_00002145" "PGF_03161859" "BAL65563.1" 360 "chaA" "Calcium/proton antiporter"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1791" "ERDMAN_1768" "VBIMycTub1140_1791" "PATRIC.652616.3.AP012340.CDS.1790882.1791346.rev" "PATRIC" "CDS" 1790882 1791346 465 "-" "FIG01258694" "PLF_1763_00060971" "PGF_01003110" "BAL65564.1" 154 "bcpB" "Alkylhydroperoxide reductase subunit C-like protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1792" "ERDMAN_1769" "VBIMycTub1140_1792" "PATRIC.652616.3.AP012340.CDS.1791487.1793037.fwd" "PATRIC" "CDS" 1791487 1793037 1551 "+" "FIG00011663" "PLF_1763_00000831" "PGF_00056814" "BAL65565.1" 516 "trpE" "Anthranilate synthase, aminase component (EC 4.1.3.27)" "GO:0004049|anthranilate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1793" "ERDMAN_1770" "VBIMycTub1140_1793" "PATRIC.652616.3.AP012340.CDS.1793075.1793734.fwd" "PATRIC" "CDS" 1793075 1793734 660 "+" "FIG00997093" "PLF_1763_00025318" "PGF_05554317" "BAL65566.1" 219 "Tryptophan-associated membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1794" "ERDMAN_1771" "VBIMycTub1140_1794" "PATRIC.652616.3.AP012340.CDS.1793824.1794642.fwd" "PATRIC" "CDS" 1793824 1794642 819 "+" "FIG00135159" "PLF_1763_00000807" "PGF_00014051" "BAL65567.1" 272 "trpC" "Indole-3-glycerol phosphate synthase (EC 4.1.1.48)" "GO:0004425|indole-3-glycerol-phosphate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1795" "ERDMAN_1772" "VBIMycTub1140_1795" "PATRIC.652616.3.AP012340.CDS.1794711.1795943.fwd" "PATRIC" "CDS" 1794711 1795943 1233 "+" "FIG00116323" "PLF_1763_00000469" "PGF_00062027" "BAL65568.1" 410 "trpB" "Tryptophan synthase beta chain (EC 4.2.1.20)" "GO:0004834|tryptophan synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1796" "ERDMAN_1773" "VBIMycTub1140_1796" "PATRIC.652616.3.AP012340.CDS.1795946.1796755.fwd" "PATRIC" "CDS" 1795946 1796755 810 "+" "FIG00105533" "PLF_1763_00000925" "PGF_00062023" "BAL65569.1" 269 "trpA" "Tryptophan synthase alpha chain (EC 4.2.1.20)" "GO:0004834|tryptophan synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1797" "ERDMAN_1774" "VBIMycTub1140_1797" "PATRIC.652616.3.AP012340.CDS.1796752.1798161.fwd" "PATRIC" "CDS" 1796752 1798161 1410 "+" "FIG00000985" "PLF_1763_00262886" "PGF_05621995" "BAL65570.1" 469 "lgt" "Prolipoprotein diacylglyceryl transferase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1798" "ERDMAN_1775" "VBIMycTub1140_1798" "PATRIC.652616.3.AP012340.CDS.1798112.1798267.rev" "PATRIC" "CDS" 1798112 1798267 156 "-" "FIG00821862" "PLF_1763_00003590" "PGF_02412581" "BAL65571.1" 51 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1799" "ERDMAN_1776" "VBIMycTub1140_1799" "PATRIC.652616.3.AP012340.CDS.1798882.1799277.fwd" "PATRIC" "CDS" 1798882 1799277 396 "+" "FIG00822582" "PLF_1763_00086279" "PGF_08225224" "BAL65572.1" 131 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1800" "ERDMAN_1777" "VBIMycTub1140_1800" "PATRIC.652616.3.AP012340.CDS.1799315.1799665.fwd" "PATRIC" "CDS" 1799315 1799665 351 "+" "FIG01121868" "PLF_1763_00002457" "PGF_00019823" "BAL65573.1" 116 "Membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1801" "ERDMAN_1778" "VBIMycTub1140_1801" "PATRIC.652616.3.AP012340.CDS.1799872.1801191.fwd" "PATRIC" "CDS" 1799872 1801191 1320 "+" "FIG00000043" "PLF_1763_00000353" "PGF_07760799" "BAL65574.1" 439 "pykA" "Pyruvate kinase (EC 2.7.1.40)" "GO:0004743|pyruvate kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.177" "ERDMAN_0176" "VBIMycTub1140_0177" "PATRIC.652616.3.AP012340.CDS.180118.180342.rev" "PATRIC" "CDS" 180118 180342 225 "-" "FIG01311212" "PLF_1763_00003424" "PGF_02412487" "BAL63993.1" 74 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1802" "ERDMAN_1779" "VBIMycTub1140_1802" "PATRIC.652616.3.AP012340.CDS.1801217.1802101.fwd" "PATRIC" "CDS" 1801217 1802101 885 "+" "FIG00002217" "PLF_1763_00000762" "PGF_00922738" "BAL65575.1" 294 "tesB1" "Acyl-CoA thioesterase II (EC 3.1.2.-)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1803" "VBIMycTub1140_1803" "PATRIC.652616.3.AP012340.CDS.1802126.1802479.rev" "PATRIC" "CDS" 1802126 1802479 354 "-" "FIG01426829" "PLF_1763_00003807" "PGF_02412834" 117 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1804" "ERDMAN_1780" "VBIMycTub1140_1804" "PATRIC.652616.3.AP012340.CDS.1803547.1805259.rev" "PATRIC" "CDS" 1803547 1805259 1713 "-" "FIG00046358" "PLF_1763_00000653" "PGF_04183997" "BAL65576.1" 570 "cydC" "Efflux ABC transporter for glutathione/L-cysteine, essential for assembly of bd-type respiratory oxidases => CydC subunit"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.178" "ERDMAN_0177" "VBIMycTub1140_0178" "PATRIC.652616.3.AP012340.CDS.180468.181298.rev" "PATRIC" "CDS" 180468 181298 831 "-" "FIG00819984" "PLF_1763_00001859" "PGF_02012688" "BAL63994.1" 276 "ptbB" "Protein tyrosine phosphatase (EC 3.1.3.48)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1805" "ERDMAN_1781" "VBIMycTub1140_1805" "PATRIC.652616.3.AP012340.CDS.1805274.1806857.rev" "PATRIC" "CDS" 1805274 1806857 1584 "-" "FIG01010650" "PLF_1763_00309579" "PGF_00596539" "BAL65577.1" 527 "cydD" "Efflux ABC transporter for glutathione/L-cysteine, essential for assembly of bd-type respiratory oxidases => CydD subunit"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1806" "ERDMAN_1782" "VBIMycTub1140_1806" "PATRIC.652616.3.AP012340.CDS.1806944.1807984.rev" "PATRIC" "CDS" 1806944 1807984 1041 "-" "FIG00000390" "PLF_1763_00000414" "PGF_10109529" "BAL65578.1" 346 "cydB" "Cytochrome d ubiquinol oxidase subunit II (EC 1.10.3.-)" "GO:0006118|electron transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1807" "ERDMAN_1783" "VBIMycTub1140_1807" "PATRIC.652616.3.AP012340.CDS.1808014.1809471.rev" "PATRIC" "CDS" 1808014 1809471 1458 "-" "FIG00096593" "PLF_1763_00307872" "PGF_01605461" "BAL65579.1" 485 "cydA" "Cytochrome d ubiquinol oxidase subunit I (EC 1.10.3.-)" "GO:0006118|electron transport;GO:0016020|membrane;GO:0016491|oxidoreductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1808" "ERDMAN_1784" "VBIMycTub1140_1808" "PATRIC.652616.3.AP012340.CDS.1809582.1810115.rev" "PATRIC" "CDS" 1809582 1810115 534 "-" "FIG01121868" "PLF_1763_00011657" "PGF_00947830" "BAL65580.1" 177 "putative membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1809" "ERDMAN_1785" "VBIMycTub1140_1809" "PATRIC.652616.3.AP012340.CDS.1810198.1811454.rev" "PATRIC" "CDS" 1810198 1811454 1257 "-" "FIG00001294" "PLF_1763_00001415" "PGF_08828113" "BAL65581.1" 418 "cya" "Adenylate cyclase (EC 4.6.1.1)" "GO:0004016|adenylate cyclase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1810" "ERDMAN_1787" "VBIMycTub1140_1810" "PATRIC.652616.3.AP012340.CDS.1811764.1812381.fwd" "PATRIC" "CDS" 1811764 1812381 618 "+" "FIG00826122" "PLF_1763_00001319" "PGF_00336478" "BAL65582.1" 205 "Two-component transcriptional response regulator PdtaR, LuxR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1811" "ERDMAN_1788" "VBIMycTub1140_1811" "PATRIC.652616.3.AP012340.CDS.1812449.1813657.rev" "PATRIC" "CDS" 1812449 1813657 1209 "-" "FIG01418201" "PLF_1763_00001328" "PGF_05164129" "BAL65583.1" 402 "Probable nonspecific lipid-transfer protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.179" "ERDMAN_0178" "VBIMycTub1140_0179" "PATRIC.652616.3.AP012340.CDS.181300.182523.rev" "PATRIC" "CDS" 181300 182523 1224 "-" "FIG00009149" "PLF_1763_00156062" "PGF_02952276" "BAL63995.1" 407 "fadE2" "Acyl-CoA dehydrogenase (EC 1.3.8.1), Mycobacterial subgroup FadE2" "GO:0004085|butyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1812" "ERDMAN_1789" "VBIMycTub1140_1812" "PATRIC.652616.3.AP012340.CDS.1813654.1814145.rev" "PATRIC" "CDS" 1813654 1814145 492 "-" "FIG00823077" "PLF_1763_00001288" "PGF_12874827" "BAL65584.1" 163 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1813" "ERDMAN_1790" "VBIMycTub1140_1813" "PATRIC.652616.3.AP012340.CDS.1814249.1816963.fwd" "PATRIC" "CDS" 1814249 1816963 2715 "+" "FIG00000404" "PLF_1763_00255592" "PGF_10347756" "BAL65585.1" 904 "polA" "DNA polymerase I (EC 2.7.7.7)" "GO:0003887|DNA-directed DNA polymerase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1814" "ERDMAN_1791" "VBIMycTub1140_1814" "PATRIC.652616.3.AP012340.CDS.1817126.1818571.fwd" "PATRIC" "CDS" 1817126 1818571 1446 "+" "FIG00000210" "PLF_1763_00000817" "PGF_09939762" "BAL65586.1" 481 "rpsA" "SSU ribosomal protein S1p" "GO:0003723|RNA binding"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1815" "ERDMAN_1792" "VBIMycTub1140_1815" "PATRIC.652616.3.AP012340.CDS.1818597.1819820.fwd" "PATRIC" "CDS" 1818597 1819820 1224 "+" "FIG00000267" "PLF_1763_00002205" "PGF_01135236" "BAL65587.1" 407 "coaE" "Dephospho-CoA kinase (EC 2.7.1.24)" "GO:0004140|dephospho-CoA kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1816" "ERDMAN_1793" "VBIMycTub1140_1816" "PATRIC.652616.3.AP012340.CDS.1819784.1819900.fwd" "PATRIC" "CDS" 1819784 1819900 117 "+" "FIG00820194" "PLF_1763_00003372" "PGF_02412454" "BAL65588.1" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1817" "ERDMAN_1794" "VBIMycTub1140_1817" "PATRIC.652616.3.AP012340.CDS.1819971.1820414.rev" "PATRIC" "CDS" 1819971 1820414 444 "-" "FIG00820123" "PLF_1763_00001203" "PGF_08225224" "BAL65589.1" 147 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1818" "ERDMAN_1795" "VBIMycTub1140_1818" "PATRIC.652616.3.AP012340.CDS.1820439.1820585.fwd" "PATRIC" "CDS" 1820439 1820585 147 "+" "FIG00820697" "PLF_1763_00003890" "PGF_02413108" "BAL65590.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1819" "ERDMAN_1796" "VBIMycTub1140_1819" "PATRIC.652616.3.AP012340.CDS.1820596.1822755.fwd" "PATRIC" "CDS" 1820596 1822755 2160 "+" "FIG00000146" "PLF_1763_00000325" "PGF_00950554" "BAL65591.1" 719 "uvrB" "Excinuclease ABC subunit B" "GO:0003676|nucleic acid binding;GO:0003677|DNA binding;GO:0004386|helicase activity;GO:0004518|nuclease activity;GO:0005524|ATP binding;GO:0006289|nucleotide-excision repair"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1820" "ERDMAN_1797" "VBIMycTub1140_1820" "PATRIC.652616.3.AP012340.CDS.1822752.1824167.fwd" "PATRIC" "CDS" 1822752 1824167 1416 "+" "FIG01387845" "PLF_1763_00150191" "PGF_02962456" "BAL65592.1" 471 "MFS-type transporter Rv1634 family => implicated in rifampicin, ofloxacin efflux"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1821" "ERDMAN_1798" "VBIMycTub1140_1821" "PATRIC.652616.3.AP012340.CDS.1824156.1825853.rev" "PATRIC" "CDS" 1824156 1825853 1698 "-" "FIG01121868" "PLF_1763_00001864" "PGF_00019762" "BAL65593.1" 565 "Membrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1822" "ERDMAN_1799" "VBIMycTub1140_1822" "PATRIC.652616.3.AP012340.CDS.1825875.1826012.fwd" "PATRIC" "CDS" 1825875 1826012 138 "+" "PLF_1763_00003366" "PGF_02412447" "BAL65594.1" 45 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1823" "ERDMAN_1800" "VBIMycTub1140_1823" "PATRIC.652616.3.AP012340.CDS.1826035.1826475.fwd" "PATRIC" "CDS" 1826035 1826475 441 "+" "FIG01023736" "PLF_1763_00000342" "PGF_00065958" "BAL65595.1" 146 "TB15.3" "Universal stress protein UspA and related nucleotide-binding proteins"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1824" "ERDMAN_1801" "VBIMycTub1140_1824" "PATRIC.652616.3.AP012340.CDS.1826482.1827273.rev" "PATRIC" "CDS" 1826482 1827273 792 "-" "FIG01193879" "PLF_1763_00000576" "PGF_10420457" "BAL65596.1" 263 "MBL-fold metallo-hydrolase superfamily"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1825" "VBIMycTub1140_1825" "PATRIC.652616.3.AP012340.CDS.1827160.1827330.fwd" "PATRIC" "CDS" 1827160 1827330 171 "+" "FIG00830229" "PLF_1763_00004076" "PGF_02414040" 56 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.180" "ERDMAN_0179" "VBIMycTub1140_0180" "PATRIC.652616.3.AP012340.CDS.182728.182874.fwd" "PATRIC" "CDS" 182728 182874 147 "+" "FIG01452534" "PLF_1763_00002853" "PGF_02410291" "BAL63996.1" 48 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1826" "ERDMAN_1802" "VBIMycTub1140_1826" "PATRIC.652616.3.AP012340.CDS.1827382.1830300.fwd" "PATRIC" "CDS" 1827382 1830300 2919 "+" "FIG00000147" "PLF_1763_00354278" "PGF_04041316" "BAL65597.1" 972 "uvrA" "Excinuclease ABC subunit A" "GO:0005524|ATP binding;GO:0016887|ATPase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.181" "ERDMAN_0180" "VBIMycTub1140_0181" "PATRIC.652616.3.AP012340.CDS.182935.184035.fwd" "PATRIC" "CDS" 182935 184035 1101 "+" "FIG00001143" "PLF_1763_00001326" "PGF_07027046" "BAL63997.1" 366 "pntAa" "NAD(P) transhydrogenase N-domain of subunit alpha (EC 1.6.1.2)" "GO:0008750|NAD(P)+ transhydrogenase (AB-specific) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1827" "ERDMAN_1803" "VBIMycTub1140_1827" "PATRIC.652616.3.AP012340.CDS.1830357.1830614.rev" "PATRIC" "CDS" 1830357 1830614 258 "-" "FIG00820126" "PLF_1763_00007361" "PGF_00888667" "BAL65598.1" 85 "FIG00820127: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1828" "ERDMAN_1804" "VBIMycTub1140_1828" "PATRIC.652616.3.AP012340.CDS.1830630.1832081.rev" "PATRIC" "CDS" 1830630 1832081 1452 "-" "FIG01366795" "PLF_1763_00000078" "PGF_00399648" "BAL65599.1" 483 "hypothetical protein Rv1639c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1829" "ERDMAN_1805" "VBIMycTub1140_1829" "PATRIC.652616.3.AP012340.CDS.1832158.1835409.rev" "PATRIC" "CDS" 1832158 1835409 3252 "-" "FIG00009947" "PLF_1763_00000202" "PGF_00015995" "BAL65600.1" 1083 "lysS" "L-O-lysylphosphatidylglycerol synthase (EC 2.3.2.3) / Lysyl-tRNA synthetase (class II) (EC 6.1.1.6), L-O-lysylphosphatidylglycerol synthetase specific" "GO:0050071|lysyltransferase activity;GO:0004824|lysine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1830" "ERDMAN_1806" "VBIMycTub1140_1830" "PATRIC.652616.3.AP012340.CDS.1835998.1836519.fwd" "PATRIC" "CDS" 1835998 1836519 522 "+" "FIG00000206" "PLF_1763_00000924" "PGF_00060478" "BAL65601.1" 173 "infC" "Translation initiation factor 3" "GO:0003743|translation initiation factor activity;GO:0006413|translational initiation"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1831" "ERDMAN_1807" "VBIMycTub1140_1831" "PATRIC.652616.3.AP012340.CDS.1836569.1836763.fwd" "PATRIC" "CDS" 1836569 1836763 195 "+" "FIG00000259" "PLF_1763_00001258" "PGF_03818138" "BAL65602.1" 64 "rpmI" "LSU ribosomal protein L35p" "GO:0003735|structural constituent of ribosome;GO:0005622|intracellular;GO:0005840|ribosome;GO:0006412|translation"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1832" "ERDMAN_1808" "VBIMycTub1140_1832" "PATRIC.652616.3.AP012340.CDS.1836825.1837214.fwd" "PATRIC" "CDS" 1836825 1837214 390 "+" "FIG00000216" "PLF_1763_00000996" "PGF_00016358" "BAL65603.1" 129 "rplT" "LSU ribosomal protein L20p" "GO:0003723|RNA binding;GO:0003735|structural constituent of ribosome;GO:0005622|intracellular;GO:0005840|ribosome;GO:0006412|translation"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1833" "ERDMAN_1809" "VBIMycTub1140_1833" "PATRIC.652616.3.AP012340.CDS.1837247.1838029.fwd" "PATRIC" "CDS" 1837247 1838029 783 "+" "FIG01289107" "PLF_1763_00018775" "PGF_09288314" "BAL65604.1" 260 "tsnR" "RNA methyltransferase, TrmH family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1834" "ERDMAN_1810" "VBIMycTub1140_1834" "PATRIC.652616.3.AP012340.CDS.1838040.1839095.rev" "PATRIC" "CDS" 1838040 1839095 1056 "-" "FIG00820090" "PLF_1763_00001679" "PGF_02404869" "BAL65605.1" 351 "hypothetical protein Rv1645c"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1835" "ERDMAN_1811" "VBIMycTub1140_1835" "PATRIC.652616.3.AP012340.CDS.1839405.1840337.fwd" "PATRIC" "CDS" 1839405 1840337 933 "+" "FIG01311212" "PLF_1763_00003106" "PGF_02877936" "BAL65606.1" 310 "PE17" "PE family protein => PE17"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.182" "ERDMAN_0181" "VBIMycTub1140_0182" "PATRIC.652616.3.AP012340.CDS.184036.184368.fwd" "PATRIC" "CDS" 184036 184368 333 "+" "FIG00001143" "PLF_1763_00001401" "PGF_01481908" "BAL63998.1" 110 "pntAb" "NAD(P) transhydrogenase C-domain of subunit alpha (EC 1.6.1.2)" "GO:0008750|NAD(P)+ transhydrogenase (AB-specific) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1836" "ERDMAN_1812" "VBIMycTub1140_1836" "PATRIC.652616.3.AP012340.CDS.1840559.1841365.fwd" "PATRIC" "CDS" 1840559 1841365 807 "+" "FIG00026664" "PLF_1763_00000271" "PGF_00038978" "BAL65607.1" 268 "Purine cyclase-related protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1837" "ERDMAN_1813" "VBIMycTub1140_1837" "PATRIC.652616.3.AP012340.CDS.1841372.1842178.fwd" "PATRIC" "CDS" 1841372 1842178 807 "+" "FIG01121868" "PLF_1763_00002233" "PGF_00661487" "BAL65608.1" 268 "Putative transmembrane protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1838" "ERDMAN_1814" "VBIMycTub1140_1838" "PATRIC.652616.3.AP012340.CDS.1842341.1843399.fwd" "PATRIC" "CDS" 1842341 1843399 1059 "+" "FIG00000098" "PLF_1763_00001001" "PGF_02019462" "BAL65609.1" 352 "pheS" "Phenylalanyl-tRNA synthetase alpha chain (EC 6.1.1.20)" "GO:0004826|phenylalanine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1839" "ERDMAN_1815" "VBIMycTub1140_1839" "PATRIC.652616.3.AP012340.CDS.1843399.1845894.fwd" "PATRIC" "CDS" 1843399 1845894 2496 "+" "FIG00000116" "PLF_1763_00195204" "PGF_00033095" "BAL65610.1" 831 "pheT" "Phenylalanyl-tRNA synthetase beta chain (EC 6.1.1.20)" "GO:0004826|phenylalanine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.183" "ERDMAN_0182" "VBIMycTub1140_0183" "PATRIC.652616.3.AP012340.CDS.184365.185792.fwd" "PATRIC" "CDS" 184365 185792 1428 "+" "FIG00000629" "PLF_1763_00000917" "PGF_00024322" "BAL63999.1" 475 "pntB" "NAD(P) transhydrogenase subunit beta (EC 1.6.1.2)" "GO:0008750|NAD(P)+ transhydrogenase (AB-specific) activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1840" "ERDMAN_1816" "VBIMycTub1140_1840" "PATRIC.652616.3.AP012340.CDS.1845988.1849023.rev" "PATRIC" "CDS" 1845988 1849023 3036 "-" "FIG01311212" "PLF_1763_00004354" "PGF_03143536" "BAL65611.1" 1011 "PE_PGRS30" "PE_PGRS family protein => PE_PGRS30"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1841" "ERDMAN_1818" "VBIMycTub1140_1841" "PATRIC.652616.3.AP012340.CDS.1849181.1849459.rev" "PATRIC" "CDS" 1849181 1849459 279 "-" "FIG00823557" "PLF_1763_00004277" "PGF_02414692" "BAL65612.1" 92 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1842" "ERDMAN_1819" "VBIMycTub1140_1842" "PATRIC.652616.3.AP012340.CDS.1849445.1850275.fwd" "PATRIC" "CDS" 1849445 1850275 831 "+" "FIG01959572" "PLF_1763_00001119" "PGF_07889681" "BAL65613.1" 276 "argC" "N-acetyl-gamma-glutamyl-phosphate reductase (EC 1.2.1.38)" "GO:0003942|N-acetyl-gamma-glutamyl-phosphate reductase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1843" "ERDMAN_1820" "VBIMycTub1140_1843" "PATRIC.652616.3.AP012340.CDS.1850272.1851486.fwd" "PATRIC" "CDS" 1850272 1851486 1215 "+" "FIG00000630" "PLF_1763_00000320" "PGF_00008075" "BAL65614.1" 404 "argJ" "Glutamate N-acetyltransferase (EC 2.3.1.35) @ N-acetylglutamate synthase (EC 2.3.1.1)" "GO:0004358|glutamate N-acetyltransferase activity;GO:0004042|acetyl-CoA:L-glutamate N-acetyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1844" "ERDMAN_1821" "VBIMycTub1140_1844" "PATRIC.652616.3.AP012340.CDS.1851483.1852367.fwd" "PATRIC" "CDS" 1851483 1852367 885 "+" "FIG00000383" "PLF_1763_00000686" "PGF_00026615" "BAL65615.1" 294 "argB" "N-acetylglutamate kinase (EC 2.7.2.8)" "GO:0003991|acetylglutamate kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1845" "ERDMAN_1822" "VBIMycTub1140_1845" "PATRIC.652616.3.AP012340.CDS.1852364.1853566.fwd" "PATRIC" "CDS" 1852364 1853566 1203 "+" "FIG00001168" "PLF_1763_00001022" "PGF_00027514" "BAL65616.1" 400 "argD" "N-acetylornithine aminotransferase (EC 2.6.1.11)" "GO:0003992|N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1846" "ERDMAN_1823" "VBIMycTub1140_1846" "PATRIC.652616.3.AP012340.CDS.1853563.1854486.fwd" "PATRIC" "CDS" 1853563 1854486 924 "+" "FIG00000084" "PLF_1763_00000492" "PGF_02346669" "BAL65617.1" 307 "argF" "Ornithine carbamoyltransferase (EC 2.1.3.3)" "GO:0004585|ornithine carbamoyltransferase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1847" "ERDMAN_1824" "VBIMycTub1140_1847" "PATRIC.652616.3.AP012340.CDS.1854465.1854995.fwd" "PATRIC" "CDS" 1854465 1854995 531 "+" "FIG00003270" "PLF_1763_00001210" "PGF_02156631" "BAL65618.1" 176 "argR" "Arginine pathway regulatory protein ArgR, repressor of arg regulon"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1848" "ERDMAN_1825" "VBIMycTub1140_1848" "PATRIC.652616.3.AP012340.CDS.1855004.1856200.fwd" "PATRIC" "CDS" 1855004 1856200 1197 "+" "FIG00000301" "PLF_1763_00000688" "PGF_02862285" "BAL65619.1" 398 "argG" "Argininosuccinate synthase (EC 6.3.4.5)" "GO:0004055|argininosuccinate synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1849" "ERDMAN_1826" "VBIMycTub1140_1849" "PATRIC.652616.3.AP012340.CDS.1856280.1857692.fwd" "PATRIC" "CDS" 1856280 1857692 1413 "+" "FIG00000333" "PLF_1763_00001056" "PGF_02620298" "BAL65620.1" 470 "argH" "Argininosuccinate lyase (EC 4.3.2.1)" "GO:0004056|argininosuccinate lyase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1850" "ERDMAN_1827" "VBIMycTub1140_1850" "PATRIC.652616.3.AP012340.CDS.1857801.1858862.fwd" "PATRIC" "CDS" 1857801 1858862 1062 "+" "FIG00443156" "PLF_1763_00060158" "PGF_00025383" "BAL65621.1" 353 "pks10" "Naringenin-chalcone synthase (EC 2.3.1.74)" "GO:0016210|naringenin-chalcone synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.184" "VBIMycTub1140_0184" "PATRIC.652616.3.AP012340.CDS.185808.185936.rev" "PATRIC" "CDS" 185808 185936 129 "-" "FIG00821070" "PLF_1763_00045970" "PGF_02419751" 42 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1851" "ERDMAN_1828" "VBIMycTub1140_1851" "PATRIC.652616.3.AP012340.CDS.1858945.1865325.fwd" "PATRIC" "CDS" 1858945 1865325 6381 "+" "FIG00820856" "PLF_1763_00094077" "PGF_10520214" "BAL65622.1" 2126 "pks7" "Modular polyketide synthase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.185" "ERDMAN_0183" "VBIMycTub1140_0185" "PATRIC.652616.3.AP012340.CDS.186098.186742.fwd" "PATRIC" "CDS" 186098 186742 645 "+" "FIG00554417" "PLF_1763_00000900" "PGF_10335905" "BAL64000.1" 214 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1852" "ERDMAN_1829" "VBIMycTub1140_1852" "PATRIC.652616.3.AP012340.CDS.1865345.1870153.fwd" "PATRIC" "CDS" 1865345 1870153 4809 "+" "FIG00820856" "PLF_1763_00030152" "PGF_10520214" "BAL65623.1" 1602 "pks8" "Modular polyketide synthase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.186" "ERDMAN_0184" "VBIMycTub1140_0186" "PATRIC.652616.3.AP012340.CDS.186746.188152.rev" "PATRIC" "CDS" 186746 188152 1407 "-" "FIG01311212" "PLF_1763_00002530" "PGF_02873483" "BAL64001.1" 468 "PE3" "PE family protein => PE3"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1853" "ERDMAN_1830" "VBIMycTub1140_1853" "PATRIC.652616.3.AP012340.CDS.1870129.1871661.fwd" "PATRIC" "CDS" 1870129 1871661 1533 "+" "FIG00822147" "PLF_1763_00061338" "PGF_10520214" "BAL65624.1" 510 "pks17" "Modular polyketide synthase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1854" "ERDMAN_1831" "VBIMycTub1140_1854" "PATRIC.652616.3.AP012340.CDS.1871667.1874720.fwd" "PATRIC" "CDS" 1871667 1874720 3054 "+" "FIG00823157" "PLF_1763_00016821" "PGF_10520214" "BAL65625.1" 1017 "pks9" "Modular polyketide synthase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1855" "ERDMAN_1832" "VBIMycTub1140_1855" "PATRIC.652616.3.AP012340.CDS.1874855.1875928.fwd" "PATRIC" "CDS" 1874855 1875928 1074 "+" "FIG00443156" "PLF_1763_00002719" "PGF_00025383" "BAL65626.1" 357 "pks11" "Naringenin-chalcone synthase (EC 2.3.1.74)" "GO:0016210|naringenin-chalcone synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.20" "ERDMAN_0021" "VBIMycTub1140_0020" "PATRIC.652616.3.AP012340.CDS.18759.20207.rev" "PATRIC" "CDS" 18759 20207 1449 "-" "FIG00046929" "PLF_1763_00000800" "PGF_10511254" "BAL63839.1" 482 "pbpA" "FtsI-like cell elongation transpeptidase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1856" "ERDMAN_1833" "VBIMycTub1140_1856" "PATRIC.652616.3.AP012340.CDS.1875911.1877221.rev" "PATRIC" "CDS" 1875911 1877221 1311 "-" "FIG01346688" "PLF_1763_00002326" "PGF_00420171" "BAL65627.1" 436 "cyp139" "Cytochrome P450"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1857" "ERDMAN_1834" "VBIMycTub1140_1857" "PATRIC.652616.3.AP012340.CDS.1877218.1878993.rev" "PATRIC" "CDS" 1877218 1878993 1776 "-" "FIG01373278" "PLF_1763_00001412" "PGF_03029859" "BAL65628.1" 591 "Bis-ABC ATPase Uup"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1858" "VBIMycTub1140_1858" "PATRIC.652616.3.AP012340.CDS.1879472.1879624.fwd" "PATRIC" "CDS" 1879472 1879624 153 "+" "FIG00821326" "PLF_1763_00003982" "PGF_02413384" 50 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1859" "ERDMAN_1835" "VBIMycTub1140_1859" "PATRIC.652616.3.AP012340.CDS.1879657.1880004.fwd" "PATRIC" "CDS" 1879657 1880004 348 "+" "FIG00820310" "PLF_1763_00002931" "PGF_08225224" "BAL65629.1" 115 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1860" "ERDMAN_1836" "VBIMycTub1140_1860" "PATRIC.652616.3.AP012340.CDS.1880009.1880404.fwd" "PATRIC" "CDS" 1880009 1880404 396 "+" "FIG01121868" "PLF_1763_00003703" "PGF_08225224" "BAL65630.1" 131 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1861" "ERDMAN_1837" "VBIMycTub1140_1861" "PATRIC.652616.3.AP012340.CDS.1880413.1881744.rev" "PATRIC" "CDS" 1880413 1881744 1332 "-" "FIG00820204" "PLF_1763_00003659" "PGF_08225224" "BAL65631.1" 443 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1862" "ERDMAN_1838" "VBIMycTub1140_1862" "PATRIC.652616.3.AP012340.CDS.1881837.1882769.rev" "PATRIC" "CDS" 1881837 1882769 933 "-" "FIG01321681" "PLF_1763_00003731" "PGF_00877020" "BAL65632.1" 310 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.187" "ERDMAN_0185" "VBIMycTub1140_0187" "PATRIC.652616.3.AP012340.CDS.188244.189752.rev" "PATRIC" "CDS" 188244 189752 1509 "-" "FIG01311212" "PLF_1763_00002577" "PGF_02927232" "BAL64002.1" 502 "PE4" "PE family protein => PE4"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1863" "ERDMAN_1839" "VBIMycTub1140_1863" "PATRIC.652616.3.AP012340.CDS.1882797.1883453.rev" "PATRIC" "CDS" 1882797 1883453 657 "-" "FIG00003845" "PLF_1763_00003305" "PGF_08030842" "BAL65633.1" 218 "Transcriptional regulator, ArsR family" "GO:0003700|transcription factor activity;GO:0005622|intracellular"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1864" "ERDMAN_1840" "VBIMycTub1140_1864" "PATRIC.652616.3.AP012340.CDS.1883629.1883784.fwd" "PATRIC" "CDS" 1883629 1883784 156 "+" "FIG00820268" "PLF_1763_00003753" "PGF_00224543" "BAL65634.1" 51 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1865" "ERDMAN_1841" "VBIMycTub1140_1865" "PATRIC.652616.3.AP012340.CDS.1883778.1884356.rev" "PATRIC" "CDS" 1883778 1884356 579 "-" "FIG00003090" "PLF_1763_00003339" "PGF_00059137" "BAL65635.1" 192 "Transcriptional regulator, Crp/Fnr family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1866" "ERDMAN_1842" "VBIMycTub1140_1866" "PATRIC.652616.3.AP012340.CDS.1884713.1885288.fwd" "PATRIC" "CDS" 1884713 1885288 576 "+" "FIG00820850" "PLF_1763_00002985" "PGF_03589662" "BAL65636.1" 191 "Peroxiredoxin"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1867" "ERDMAN_1843" "VBIMycTub1140_1867" "PATRIC.652616.3.AP012340.CDS.1885372.1885833.fwd" "PATRIC" "CDS" 1885372 1885833 462 "+" "FIG01352813" "PLF_1763_00003338" "PGF_00053554" "BAL65637.1" 153 "dsbF" "Soluble secreted antigen MPT53 precursor"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1868" "ERDMAN_1844" "VBIMycTub1140_1868" "PATRIC.652616.3.AP012340.CDS.1885943.1886836.fwd" "PATRIC" "CDS" 1885943 1886836 894 "+" "FIG00824644" "PLF_1763_00002518" "PGF_12700677" "BAL65638.1" 297 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1869" "ERDMAN_1845" "VBIMycTub1140_1869" "PATRIC.652616.3.AP012340.CDS.1886833.1887957.fwd" "PATRIC" "CDS" 1886833 1887957 1125 "+" "FIG00138712" "PLF_1763_00002921" "PGF_00030873" "BAL65639.1" 374 "fadE16" "Acyl-CoA dehydrogenase (EC 1.3.8.1), Mycobacterial subgroup FadE16" "GO:0004085|butyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1870" "ERDMAN_1846" "VBIMycTub1140_1870" "PATRIC.652616.3.AP012340.CDS.1887966.1888790.fwd" "PATRIC" "CDS" 1887966 1888790 825 "+" "FIG00014764" "PLF_1763_00002983" "PGF_06414735" "BAL65640.1" 274 "ABC transporter, substrate-binding protein (cluster 12, methionine/phosphonates)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1871" "ERDMAN_1847" "VBIMycTub1140_1871" "PATRIC.652616.3.AP012340.CDS.1888784.1889779.fwd" "PATRIC" "CDS" 1888784 1889779 996 "+" "FIG00832443" "PLF_1763_00003004" "PGF_00004182" "BAL65641.1" 331 "moeX" "Fe-S oxidoreductases of moaA/nifB/pqqE family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1872" "ERDMAN_1848" "VBIMycTub1140_1872" "PATRIC.652616.3.AP012340.CDS.1890009.1890857.fwd" "PATRIC" "CDS" 1890009 1890857 849 "+" "FIG01310516" "PLF_1763_00002730" "PGF_02409969" "BAL65642.1" 282 "putative cellulose-binding protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1873" "ERDMAN_1849" "VBIMycTub1140_1873" "PATRIC.652616.3.AP012340.CDS.1891134.1894130.fwd" "PATRIC" "CDS" 1891134 1894130 2997 "+" "FIG00000970" "PLF_1763_00295666" "PGF_00944206" "BAL65643.1" 998 "Polyhydroxyalkanoic acid synthase / Acyl-CoA synthase"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1874" "ERDMAN_1850" "VBIMycTub1140_1874" "PATRIC.652616.3.AP012340.CDS.1894123.1894347.fwd" "PATRIC" "CDS" 1894123 1894347 225 "+" "FIG01304147" "PLF_1763_00001436" "PGF_07550057" "BAL65644.1" 74 "FIG002473: Protein YcaR in KDO2-Lipid A biosynthesis cluster"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1875" "ERDMAN_1851" "VBIMycTub1140_1875" "PATRIC.652616.3.AP012340.CDS.1894313.1894804.rev" "PATRIC" "CDS" 1894313 1894804 492 "-" "FIG00554417" "PLF_1763_00027471" "PGF_07182652" "BAL65645.1" 163 "Transcriptional regulator, AcrR family"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1876" "ERDMAN_1852" "VBIMycTub1140_1876" "PATRIC.652616.3.AP012340.CDS.1894938.1895618.rev" "PATRIC" "CDS" 1894938 1895618 681 "-" "FIG01121530" "PLF_1763_00001786" "PGF_00006351" "BAL65646.1" 226 "Efflux ABC transporter, permease protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1877" "ERDMAN_1853" "VBIMycTub1140_1877" "PATRIC.652616.3.AP012340.CDS.1895690.1896457.rev" "PATRIC" "CDS" 1895690 1896457 768 "-" "FIG01956052" "PLF_1763_00002839" "PGF_00008621" "BAL65647.1" 255 "ABC-type multidrug transport system ATP-binding component yhiH"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1878" "ERDMAN_1854" "VBIMycTub1140_1878" "PATRIC.652616.3.AP012340.CDS.1896516.1897127.fwd" "PATRIC" "CDS" 1896516 1897127 612 "+" "FIG00001134" "PLF_1763_00001399" "PGF_04198961" "BAL65648.1" 203 "mpg" "DNA-3-methyladenine glycosylase II (EC 3.2.2.21)" "GO:0003905|alkylbase DNA N-glycosylase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1879" "ERDMAN_1855" "VBIMycTub1140_1879" "PATRIC.652616.3.AP012340.CDS.1897139.1898413.fwd" "PATRIC" "CDS" 1897139 1898413 1275 "+" "PLF_1763_00000787" "PGF_00063916" "BAL65649.1" 424 "tyrS" "Tyrosyl-tRNA synthetase (EC 6.1.1.1)" "GO:0004831|tyrosine-tRNA ligase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1880" "ERDMAN_1856" "VBIMycTub1140_1880" "PATRIC.652616.3.AP012340.CDS.1898830.1898946.rev" "PATRIC" "CDS" 1898830 1898946 117 "-" "FIG01416347" "PLF_1763_00004001" "PGF_02413492" "BAL65650.1" 38 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.188" "ERDMAN_0186" "VBIMycTub1140_0188" "PATRIC.652616.3.AP012340.CDS.189896.191269.fwd" "PATRIC" "CDS" 189896 191269 1374 "+" "FIG00945653" "PLF_1763_00000488" "PGF_00425608" "BAL64003.1" 457 "FAD/FMN-containing dehydrogenases"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1881" "ERDMAN_1857" "VBIMycTub1140_1881" "PATRIC.652616.3.AP012340.CDS.1899124.1899447.fwd" "PATRIC" "CDS" 1899124 1899447 324 "+" "FIG01330511" "PLF_1763_00003222" "PGF_00940519" "BAL65651.1" 107 "lprJ" "Lipoprotein LprJ, modulates kdpFABC expression via interacting with sensing domain of KdpD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1882" "ERDMAN_1858" "VBIMycTub1140_1882" "PATRIC.652616.3.AP012340.CDS.1899636.1900238.fwd" "PATRIC" "CDS" 1899636 1900238 603 "+" "FIG01336235" "PLF_1763_00001248" "PGF_00055665" "BAL65652.1" 200 "TPR-repeat-containing protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1883" "ERDMAN_1859" "VBIMycTub1140_1883" "PATRIC.652616.3.AP012340.CDS.1900235.1901296.fwd" "PATRIC" "CDS" 1900235 1901296 1062 "+" "FIG00672032" "PLF_1763_00350554" "PGF_00424619" "BAL65653.1" 353 "4-nitrophenylphosphatase (EC 3.1.3.41)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1884" "ERDMAN_1860" "VBIMycTub1140_1884" "PATRIC.652616.3.AP012340.CDS.1901293.1901469.fwd" "PATRIC" "CDS" 1901293 1901469 177 "+" "FIG00820005" "PLF_1763_00002823" "PGF_00000554" "BAL65654.1" 58 "FIG00820006: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1885" "ERDMAN_1861" "VBIMycTub1140_1885" "PATRIC.652616.3.AP012340.CDS.1901477.1902283.fwd" "PATRIC" "CDS" 1901477 1902283 807 "+" "FIG00001125" "PLF_1763_00001017" "PGF_00415308" "BAL65655.1" 268 "tlyA" "23S rRNA (cytidine(1920)-2'-O)-methyltransferase (EC 2.1.1.226) @ 16S rRNA (cytidine(1409)-2'-O)-methyltransferase (EC 2.1.1.227)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1886" "ERDMAN_1862" "VBIMycTub1140_1886" "PATRIC.652616.3.AP012340.CDS.1902283.1903206.fwd" "PATRIC" "CDS" 1902283 1903206 924 "+" "FIG00000075" "PLF_1763_00000812" "PGF_08421732" "BAL65656.1" 307 "ppnK" "NAD kinase (EC 2.7.1.23)" "GO:0003951|NAD+ kinase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1887" "ERDMAN_1863" "VBIMycTub1140_1887" "PATRIC.652616.3.AP012340.CDS.1903220.1904983.fwd" "PATRIC" "CDS" 1903220 1904983 1764 "+" "FIG00000317" "PLF_1763_00000302" "PGF_00421796" "BAL65657.1" 587 "recN" "DNA repair protein RecN" "GO:0005524|ATP binding;GO:0005694|chromosome;GO:0051276|chromosome organization and biogenesis"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1888" "ERDMAN_1864" "VBIMycTub1140_1888" "PATRIC.652616.3.AP012340.CDS.1905079.1906260.fwd" "PATRIC" "CDS" 1905079 1906260 1182 "+" "FIG00005773" "PLF_1763_00000734" "PGF_00426739" "BAL65658.1" 393 "FIG005773: conserved membrane protein ML1361"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1889" "ERDMAN_1865" "VBIMycTub1140_1889" "PATRIC.652616.3.AP012340.CDS.1906282.1907226.fwd" "PATRIC" "CDS" 1906282 1907226 945 "+" "FIG00007481" "PLF_1763_00010385" "PGF_04369685" "BAL65659.1" 314 "FIG007481: hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1890" "ERDMAN_1866" "VBIMycTub1140_1890" "PATRIC.652616.3.AP012340.CDS.1907366.1909126.fwd" "PATRIC" "CDS" 1907366 1909126 1761 "+" "FIG00000176" "PLF_1763_00000499" "PGF_00416129" "BAL65660.1" 586 "pyrG" "CTP synthase (EC 6.3.4.2)" "GO:0003883|CTP synthase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1891" "ERDMAN_1867" "VBIMycTub1140_1891" "PATRIC.652616.3.AP012340.CDS.1909119.1909742.fwd" "PATRIC" "CDS" 1909119 1909742 624 "+" "FIG00000367" "PLF_1763_00234672" "PGF_07808527" "BAL65661.1" 207 "ADP-ribose pyrophosphatase (EC 3.6.1.13)" "GO:0047631|ADP-ribose diphosphatase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1892" "ERDMAN_1868" "VBIMycTub1140_1892" "PATRIC.652616.3.AP012340.CDS.1909739.1910674.fwd" "PATRIC" "CDS" 1909739 1910674 936 "+" "FIG01227142" "PLF_1763_00000651" "PGF_00052943" "BAL65662.1" 311 "xerD" "Site-specific tyrosine recombinase XerD"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1893" "ERDMAN_1869" "VBIMycTub1140_1893" "PATRIC.652616.3.AP012340.CDS.1910748.1912112.rev" "PATRIC" "CDS" 1910748 1912112 1365 "-" "FIG01327493" "PLF_1763_00126669" "PGF_05503590" "BAL65663.1" 454 "13E12 repeat family protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1894" "ERDMAN_1870" "VBIMycTub1140_1894" "PATRIC.652616.3.AP012340.CDS.1912374.1912535.rev" "PATRIC" "CDS" 1912374 1912535 162 "-" "FIG00820899" "PLF_1763_00003373" "PGF_02412455" "BAL65664.1" 53 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1895" "ERDMAN_1871" "VBIMycTub1140_1895" "PATRIC.652616.3.AP012340.CDS.1912668.1913369.rev" "PATRIC" "CDS" 1912668 1913369 702 "-" "FIG01323336" "PLF_1763_00001365" "PGF_00036980" "BAL65665.1" 233 "Probable catechol-o-methyltransferase (EC 2.1.1.6)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.189" "ERDMAN_0187" "VBIMycTub1140_0189" "PATRIC.652616.3.AP012340.CDS.191297.192448.rev" "PATRIC" "CDS" 191297 192448 1152 "-" "FIG01007502" "PLF_1763_00001490" "PGF_03572345" "BAL64004.1" 383 "adhE1" "Alcohol dehydrogenase (EC 1.1.1.1)" "GO:0004022|alcohol dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1896" "ERDMAN_1872" "VBIMycTub1140_1896" "PATRIC.652616.3.AP012340.CDS.1913323.1914993.rev" "PATRIC" "CDS" 1913323 1914993 1671 "-" "FIG00003984" "PLF_1763_00038658" "PGF_06196148" "BAL65666.1" 556 "cycA" "D-serine/D-alanine/glycine transporter" "GO:0006810|transport;GO:0016020|membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1897" "ERDMAN_1873" "VBIMycTub1140_1897" "PATRIC.652616.3.AP012340.CDS.1915034.1916191.rev" "PATRIC" "CDS" 1915034 1916191 1158 "-" "FIG00013075" "PLF_1763_00002590" "PGF_03029345" "BAL65667.1" 385 "PPE22" "PPE family protein, SVP subgroup => PPE22"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1898" "ERDMAN_1874" "VBIMycTub1140_1898" "PATRIC.652616.3.AP012340.CDS.1916231.1917415.rev" "PATRIC" "CDS" 1916231 1917415 1185 "-" "FIG00013075" "PLF_1763_00002597" "PGF_02934946" "BAL65668.1" 394 "PPE23" "PPE family protein, SVP subgroup => PPE23"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1899" "ERDMAN_1875" "VBIMycTub1140_1899" "PATRIC.652616.3.AP012340.CDS.1918019.1918186.rev" "PATRIC" "CDS" 1918019 1918186 168 "-" "FIG00821034" "PLF_1763_00003324" "PGF_02412146" "BAL65669.1" 55 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1900" "ERDMAN_1876" "VBIMycTub1140_1900" "PATRIC.652616.3.AP012340.CDS.1918455.1919879.fwd" "PATRIC" "CDS" 1918455 1919879 1425 "+" "FIG00005216" "PLF_1763_00003052" "PGF_08030327" "BAL65670.1" 474 "Sulfate permease" "GO:0005215|transporter activity;GO:0006810|transport;GO:0006813|potassium ion transport;GO:0008324|cation transmembrane transporter activity;GO:0015137|citrate transmembrane transporter activity;GO:0015746|citrate transport;GO:0016021|integral to membrane"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1901" "ERDMAN_1877" "VBIMycTub1140_1901" "PATRIC.652616.3.AP012340.CDS.1919990.1920853.fwd" "PATRIC" "CDS" 1919990 1920853 864 "+" "FIG00006461" "PLF_1763_00001070" "PGF_04757817" "BAL65671.1" 287 "ParA-like protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1902" "ERDMAN_1878" "VBIMycTub1140_1902" "PATRIC.652616.3.AP012340.CDS.1920850.1921686.fwd" "PATRIC" "CDS" 1920850 1921686 837 "+" "FIG00019652" "PLF_1763_00001168" "PGF_02517283" "BAL65672.1" 278 "Segregation and condensation protein A"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1903" "ERDMAN_1879" "VBIMycTub1140_1903" "PATRIC.652616.3.AP012340.CDS.1921683.1922378.fwd" "PATRIC" "CDS" 1921683 1922378 696 "+" "FIG00133569" "PLF_1763_00001044" "PGF_06649360" "BAL65673.1" 231 "Segregation and condensation protein B"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1904" "ERDMAN_1880" "VBIMycTub1140_1904" "PATRIC.652616.3.AP012340.CDS.1922378.1923139.fwd" "PATRIC" "CDS" 1922378 1923139 762 "+" "FIG01956038" "PLF_1763_00000923" "PGF_00048829" "BAL65674.1" 253 "LSU rRNA pseudouridine(2605) synthase (EC 5.4.99.22)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1905" "ERDMAN_1881" "VBIMycTub1140_1905" "PATRIC.652616.3.AP012340.CDS.1923136.1923828.fwd" "PATRIC" "CDS" 1923136 1923828 693 "+" "FIG00041008" "PLF_1763_00001027" "PGF_02455692" "BAL65675.1" 230 "cmk" "Cytidylate kinase (EC 2.7.4.25)"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1906" "ERDMAN_1882" "VBIMycTub1140_1906" "PATRIC.652616.3.AP012340.CDS.1923825.1925216.fwd" "PATRIC" "CDS" 1923825 1925216 1392 "+" "FIG00129616" "PLF_1763_00000552" "PGF_00007024" "BAL65676.1" 463 "engA" "GTP-binding protein EngA" "GO:0005525|GTP binding;GO:0005622|intracellular"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.190" "ERDMAN_0188" "VBIMycTub1140_0190" "PATRIC.652616.3.AP012340.CDS.192430.192885.fwd" "PATRIC" "CDS" 192430 192885 456 "+" "FIG00138976" "PLF_1763_00001725" "PGF_02617156" "BAL64005.1" 151 "Propionyl-CoA thioesterase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1907" "ERDMAN_1883" "VBIMycTub1140_1907" "PATRIC.652616.3.AP012340.CDS.1925390.1926202.fwd" "PATRIC" "CDS" 1925390 1926202 813 "+" "FIG00621114" "PLF_1763_00265693" "PGF_10362946" "BAL65677.1" 270 "hypothetical protein"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1908" "ERDMAN_1884" "VBIMycTub1140_1908" "PATRIC.652616.3.AP012340.CDS.1926196.1927110.fwd" "PATRIC" "CDS" 1926196 1927110 915 "+" "FIG00068115" "PLF_1763_00002515" "PGF_01456294" "BAL65678.1" 304 "fadB3" "3-hydroxybutyryl-CoA dehydrogenase (EC 1.1.1.157)" "GO:0008691|3-hydroxybutyryl-CoA dehydrogenase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1909" "ERDMAN_1885" "VBIMycTub1140_1909" "PATRIC.652616.3.AP012340.CDS.1927113.1927943.fwd" "PATRIC" "CDS" 1927113 1927943 831 "+" "FIG01958848" "PLF_1763_00002611" "PGF_00015945" "BAL65679.1" 276 "Kynurenine formamidase, bacterial (EC 3.5.1.9)" "GO:0004061|arylformamidase activity"
"Mycobacterium tuberculosis str. Erdman = ATCC 35801" "652616.3" "AP012340" "fig|652616.3.peg.1910" "ERDMAN_1886" "VBIMycTub1140_1910" "PATRIC.652616.3.AP012340.CDS.1927943.1928293.fwd" "PATRIC" "CDS" 1927943 1928293 351 "+" "FIG01374603" "PLF_1763_00003391" "PGF_02412465" "BAL65680.1" 116 "hypothetical protein"