-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodel_metadata.json
27086 lines (27086 loc) · 678 KB
/
model_metadata.json
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
{
"TIGR04555": {
"acc": "TIGR04555",
"name": "sulfite_DH_soxC",
"func": "Unclassified",
"desc": "sulfite dehydrogenase"
},
"TIGR01448": {
"acc": "TIGR01448",
"name": "recD_rel",
"func": "Unknown function",
"desc": "helicase, RecD/TraA family"
},
"TIGR01449": {
"acc": "TIGR01449",
"name": "PGP_bact",
"func": "Energy metabolism",
"desc": "phosphoglycolate phosphatase, bacterial"
},
"TIGR04010": {
"acc": "TIGR04010",
"name": "WcaD",
"func": "Unclassified",
"desc": "putative colanic acid polymerase WcaD"
},
"TIGR01440": {
"acc": "TIGR01440",
"name": "TIGR01440",
"func": "Hypothetical proteins",
"desc": "TIGR01440 family protein"
},
"TIGR01441": {
"acc": "TIGR01441",
"name": "GPR",
"func": "Protein fate",
"desc": "GPR endopeptidase"
},
"TIGR01442": {
"acc": "TIGR01442",
"name": "SASP_gamma",
"func": "Cellular processes",
"desc": "small, acid-soluble spore protein, gamma-type"
},
"TIGR01443": {
"acc": "TIGR01443",
"name": "intein_Cterm",
"func": "Unclassified",
"desc": "intein C-terminal splicing region"
},
"TIGR01444": {
"acc": "TIGR01444",
"name": "fkbM_fam",
"func": "Unclassified",
"desc": "methyltransferase, FkbM family"
},
"TIGR01445": {
"acc": "TIGR01445",
"name": "intein_Nterm",
"func": "Unclassified",
"desc": "intein N-terminal splicing region"
},
"TIGR01446": {
"acc": "TIGR01446",
"name": "DnaD_dom",
"func": "Mobile and extrachromosomal element functions",
"desc": "DnaD domain protein"
},
"TIGR01447": {
"acc": "TIGR01447",
"name": "recD",
"func": "DNA metabolism",
"desc": "exodeoxyribonuclease V, alpha subunit"
},
"TIGR01928": {
"acc": "TIGR01928",
"name": "menC_lowGC/arch",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "o-succinylbenzoate synthase"
},
"TIGR04426": {
"acc": "TIGR04426",
"name": "rSAM_desII",
"func": "Unclassified",
"desc": "TDP-4-amino-4,6-dideoxy-D-glucose deaminase"
},
"TIGR02830": {
"acc": "TIGR02830",
"name": "spore_III_AG",
"func": "Cellular processes",
"desc": "stage III sporulation protein AG"
},
"TIGR02831": {
"acc": "TIGR02831",
"name": "spo_II_M",
"func": "Cellular processes",
"desc": "stage II sporulation protein M"
},
"TIGR02832": {
"acc": "TIGR02832",
"name": "spo_yunB",
"func": "Cellular processes",
"desc": "sporulation protein YunB"
},
"TIGR04404": {
"acc": "TIGR04404",
"name": "RiPP_SkfA",
"func": "Unclassified",
"desc": "sporulation killing factor"
},
"TIGR02834": {
"acc": "TIGR02834",
"name": "spo_ytxC",
"func": "Cellular processes",
"desc": "putative sporulation protein YtxC"
},
"TIGR02835": {
"acc": "TIGR02835",
"name": "spore_sigmaE",
"func": "Transcription",
"desc": "RNA polymerase sigma-E factor"
},
"TIGR02836": {
"acc": "TIGR02836",
"name": "spore_IV_A",
"func": "Cellular processes",
"desc": "stage IV sporulation protein A"
},
"TIGR02837": {
"acc": "TIGR02837",
"name": "spore_II_R",
"func": "Cellular processes",
"desc": "stage II sporulation protein R"
},
"TIGR02838": {
"acc": "TIGR02838",
"name": "spore_V_AC",
"func": "Cellular processes",
"desc": "stage V sporulation protein AC"
},
"TIGR02839": {
"acc": "TIGR02839",
"name": "spore_V_AE",
"func": "Cellular processes",
"desc": "stage V sporulation protein AE"
},
"TIGR00368": {
"acc": "TIGR00368",
"name": "TIGR00368",
"func": "Unknown function",
"desc": "Mg chelatase-like protein"
},
"TIGR04409": {
"acc": "TIGR04409",
"name": "LptC_YrbK",
"func": "Transport and binding proteins",
"desc": "LPS export ABC transporter periplasmic protein LptC"
},
"TIGR04408": {
"acc": "TIGR04408",
"name": "LptG_lptG",
"func": "Transport and binding proteins",
"desc": "LPS export ABC transporter permease LptG"
},
"TIGR03803": {
"acc": "TIGR03803",
"name": "Gloeo_Verruco",
"func": "Unclassified",
"desc": "gloeo_Verruco repeat"
},
"TIGR03496": {
"acc": "TIGR03496",
"name": "FliI_clade1",
"func": "Cellular processes",
"desc": "flagellar protein export ATPase FliI"
},
"TIGR04429": {
"acc": "TIGR04429",
"name": "Phr_nterm",
"func": "Regulatory functions",
"desc": "Phr family secreted Rap phosphatase inhibitor"
},
"TIGR04539": {
"acc": "TIGR04539",
"name": "tRNA_cyclodipep",
"func": "Unclassified",
"desc": "tRNA-dependent cyclodipeptide synthase"
},
"TIGR03491": {
"acc": "TIGR03491",
"name": "TIGR03491",
"func": "Unclassified",
"desc": "putative RecB family nuclease, TM0106 family"
},
"TIGR03490": {
"acc": "TIGR03490",
"name": "Mycoplas_LppA",
"func": "Unclassified",
"desc": "mycoides cluster lipoprotein, LppA/P72 family"
},
"TIGR04533": {
"acc": "TIGR04533",
"name": "cyanosortB_assc",
"func": "Unclassified",
"desc": "cyanoexosortase B-associated protein"
},
"TIGR00362": {
"acc": "TIGR00362",
"name": "DnaA",
"func": "DNA metabolism",
"desc": "chromosomal replication initiator protein DnaA"
},
"TIGR04531": {
"acc": "TIGR04531",
"name": "nonproteo_OH",
"func": "Unclassified",
"desc": "putative nonproteinogenic amino acid hydroxylase"
},
"TIGR04530": {
"acc": "TIGR04530",
"name": "hemophoreRv0203",
"func": "Transport and binding proteins",
"desc": "hemophore"
},
"TIGR02948": {
"acc": "TIGR02948",
"name": "SigW_bacill",
"func": "Unclassified",
"desc": "RNA polymerase sigma-W factor"
},
"TIGR02949": {
"acc": "TIGR02949",
"name": "anti_SigH_actin",
"func": "Transcription",
"desc": "anti-sigma factor, TIGR02949 family"
},
"TIGR04535": {
"acc": "TIGR04535",
"name": "ferrit_encaps",
"func": "Unclassified",
"desc": "ferritin-like protein"
},
"TIGR00363": {
"acc": "TIGR00363",
"name": "TIGR00363",
"func": "Cell envelope",
"desc": "lipoprotein, YaeC family"
},
"TIGR02944": {
"acc": "TIGR02944",
"name": "suf_reg_Xantho",
"func": "Regulatory functions",
"desc": "FeS assembly SUF system regulator"
},
"TIGR02945": {
"acc": "TIGR02945",
"name": "SUF_assoc",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "FeS assembly SUF system protein"
},
"TIGR02946": {
"acc": "TIGR02946",
"name": "acyl_WS_DGAT",
"func": "Unknown function",
"desc": "acyltransferase, WS/DGAT/MGAT"
},
"TIGR02947": {
"acc": "TIGR02947",
"name": "SigH_actino",
"func": "Unclassified",
"desc": "RNA polymerase sigma-70 factor, TIGR02947 family"
},
"TIGR02940": {
"acc": "TIGR02940",
"name": "anfO_nitrog",
"func": "Unclassified",
"desc": "Fe-only nitrogenase accessory protein AnfO"
},
"TIGR02941": {
"acc": "TIGR02941",
"name": "Sigma_B",
"func": "Unclassified",
"desc": "RNA polymerase sigma-B factor"
},
"TIGR02943": {
"acc": "TIGR02943",
"name": "Sig70_famx1",
"func": "Unclassified",
"desc": "RNA polymerase sigma-70 factor, TIGR02943 family"
},
"TIGR00361": {
"acc": "TIGR00361",
"name": "ComEC_Rec2",
"func": "Cellular processes",
"desc": "DNA internalization-related competence protein ComEC/Rec2"
},
"TIGR03569": {
"acc": "TIGR03569",
"name": "NeuB_NnaB",
"func": "Unclassified",
"desc": "N-acetylneuraminate synthase"
},
"TIGR03568": {
"acc": "TIGR03568",
"name": "NeuC_NnaA",
"func": "Unclassified",
"desc": "UDP-N-acetyl-D-glucosamine 2-epimerase, UDP-hydrolysing"
},
"TIGR03565": {
"acc": "TIGR03565",
"name": "alk_sulf_monoox",
"func": "Central intermediary metabolism",
"desc": "alkanesulfonate monooxygenase, FMNH(2)-dependent"
},
"TIGR03564": {
"acc": "TIGR03564",
"name": "F420_MSMEG_4879",
"func": "Unknown function",
"desc": "F420-dependent oxidoreductase, MSMEG_4879 family"
},
"TIGR03567": {
"acc": "TIGR03567",
"name": "FMN_reduc_SsuE",
"func": "Central intermediary metabolism",
"desc": "FMN reductase"
},
"TIGR03566": {
"acc": "TIGR03566",
"name": "FMN_reduc_MsuE",
"func": "Unclassified",
"desc": "FMN reductase"
},
"TIGR03561": {
"acc": "TIGR03561",
"name": "organ_hyd_perox",
"func": "Cellular processes",
"desc": "peroxiredoxin, Ohr subfamily"
},
"TIGR03560": {
"acc": "TIGR03560",
"name": "F420_Rv1855c",
"func": "Unknown function",
"desc": "probable F420-dependent oxidoreductase, Rv1855c family"
},
"TIGR03563": {
"acc": "TIGR03563",
"name": "perox_SACOL1771",
"func": "Unclassified",
"desc": "peroxiredoxin, SACOL1771 subfamily"
},
"TIGR03562": {
"acc": "TIGR03562",
"name": "osmo_induc_OsmC",
"func": "Cellular processes",
"desc": "peroxiredoxin, OsmC subfamily"
},
"TIGR03359": {
"acc": "TIGR03359",
"name": "VI_chp_6",
"func": "Unclassified",
"desc": "type VI secretion protein, TIGR03359 family"
},
"TIGR04089": {
"acc": "TIGR04089",
"name": "exp_by_SipW_III",
"func": "Unclassified",
"desc": "alternate signal-mediated exported protein, RER_14450 family"
},
"TIGR04088": {
"acc": "TIGR04088",
"name": "cognate_SipW",
"func": "Unclassified",
"desc": "SipW-cognate class signal peptide"
},
"TIGR00364": {
"acc": "TIGR00364",
"name": "TIGR00364",
"func": "Unknown function",
"desc": "queuosine biosynthesis protein QueC"
},
"TIGR04083": {
"acc": "TIGR04083",
"name": "rSAM_pep_methan",
"func": "Unclassified",
"desc": "putative peptide-modifying radical SAM enzyme, Mhun_1560 family"
},
"TIGR04082": {
"acc": "TIGR04082",
"name": "rSAM_for_selen",
"func": "Unclassified",
"desc": "selenobiotic family peptide radical SAM maturase"
},
"TIGR04081": {
"acc": "TIGR04081",
"name": "selen_ocin",
"func": "Unclassified",
"desc": "radical SAM modification target peptide, selenobiotic family"
},
"TIGR04080": {
"acc": "TIGR04080",
"name": "rSAM_pep_cyc",
"func": "Protein fate",
"desc": "KxxxW cyclic peptide radical SAM maturase"
},
"TIGR04087": {
"acc": "TIGR04087",
"name": "YqxM_for_SipW",
"func": "Unclassified",
"desc": "YqxM protein"
},
"TIGR04086": {
"acc": "TIGR04086",
"name": "TIGR04086_membr",
"func": "Unclassified",
"desc": "putative membrane protein, TIGR04086 family"
},
"TIGR04085": {
"acc": "TIGR04085",
"name": "rSAM_more_4Fe4S",
"func": "Unclassified",
"desc": "radical SAM additional 4Fe4S-binding SPASM domain"
},
"TIGR04084": {
"acc": "TIGR04084",
"name": "rSAM_AF0577",
"func": "Unclassified",
"desc": "putative peptide-modifying radical SAM enzyme, AF0577 family"
},
"TIGR00090": {
"acc": "TIGR00090",
"name": "rsfS_iojap_ybeB",
"func": "Protein synthesis",
"desc": "ribosome silencing factor"
},
"TIGR00091": {
"acc": "TIGR00091",
"name": "TIGR00091",
"func": "Protein synthesis",
"desc": "tRNA (guanine-N(7)-)-methyltransferase"
},
"TIGR00092": {
"acc": "TIGR00092",
"name": "TIGR00092",
"func": "Unknown function",
"desc": "GTP-binding protein YchF"
},
"TIGR00093": {
"acc": "TIGR00093",
"name": "TIGR00093",
"func": "Protein synthesis",
"desc": "pseudouridine synthase"
},
"TIGR00094": {
"acc": "TIGR00094",
"name": "tRNA_TruD_broad",
"func": "Protein synthesis",
"desc": "tRNA pseudouridine synthase, TruD family"
},
"TIGR00095": {
"acc": "TIGR00095",
"name": "TIGR00095",
"func": "Protein synthesis",
"desc": "16S rRNA (guanine(966)-N(2))-methyltransferase RsmD"
},
"TIGR00096": {
"acc": "TIGR00096",
"name": "TIGR00096",
"func": "Protein synthesis",
"desc": "16S rRNA (cytidine(1402)-2'-O)-methyltransferase"
},
"TIGR00097": {
"acc": "TIGR00097",
"name": "HMP-P_kinase",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"
},
"TIGR00099": {
"acc": "TIGR00099",
"name": "Cof-subfamily",
"func": "Unknown function",
"desc": "Cof-like hydrolase"
},
"TIGR03328": {
"acc": "TIGR03328",
"name": "salvage_mtnB",
"func": "Amino acid biosynthesis",
"desc": "methylthioribulose-1-phosphate dehydratase"
},
"TIGR02768": {
"acc": "TIGR02768",
"name": "TraA_Ti",
"func": "Unclassified",
"desc": "Ti-type conjugative transfer relaxase TraA"
},
"TIGR02769": {
"acc": "TIGR02769",
"name": "nickel_nikE",
"func": "Transport and binding proteins",
"desc": "nickel import ATP-binding protein NikE"
},
"TIGR02760": {
"acc": "TIGR02760",
"name": "TraI_TIGR",
"func": "Unclassified",
"desc": "conjugative transfer relaxase protein TraI"
},
"TIGR02761": {
"acc": "TIGR02761",
"name": "TraE_TIGR",
"func": "Unclassified",
"desc": "type IV conjugative transfer system protein TraE"
},
"TIGR02762": {
"acc": "TIGR02762",
"name": "TraL_TIGR",
"func": "Cellular processes",
"desc": "type IV conjugative transfer system protein TraL"
},
"TIGR02763": {
"acc": "TIGR02763",
"name": "chlamy_scaf",
"func": "Mobile and extrachromosomal element functions",
"desc": "scaffolding protein"
},
"TIGR02764": {
"acc": "TIGR02764",
"name": "spore_ybaN_pdaB",
"func": "Cellular processes",
"desc": "polysaccharide deacetylase family sporulation protein PdaB"
},
"TIGR02765": {
"acc": "TIGR02765",
"name": "crypto_DASH",
"func": "Cellular processes",
"desc": "cryptochrome, DASH family"
},
"TIGR02766": {
"acc": "TIGR02766",
"name": "crypt_chrom_pln",
"func": "Unclassified",
"desc": "cryptochrome, plant family"
},
"TIGR02767": {
"acc": "TIGR02767",
"name": "TraG-Ti",
"func": "Unclassified",
"desc": "Ti-type conjugative transfer system protein TraG"
},
"TIGR02213": {
"acc": "TIGR02213",
"name": "lolE_release",
"func": "Protein fate",
"desc": "lipoprotein releasing system, transmembrane protein LolE"
},
"TIGR04179": {
"acc": "TIGR04179",
"name": "rhombo_lipo",
"func": "Unclassified",
"desc": "rhombotail lipoprotein"
},
"TIGR03985": {
"acc": "TIGR03985",
"name": "TIGR03985",
"func": "Unclassified",
"desc": "CRISPR-associated protein, TIGR03985 family"
},
"TIGR00546": {
"acc": "TIGR00546",
"name": "lnt",
"func": "Protein fate",
"desc": "apolipoprotein N-acyltransferase"
},
"TIGR00547": {
"acc": "TIGR00547",
"name": "lolA",
"func": "Protein fate",
"desc": "outer membrane lipoprotein carrier protein LolA"
},
"TIGR00544": {
"acc": "TIGR00544",
"name": "lgt",
"func": "Protein fate",
"desc": "prolipoprotein diacylglyceryl transferase"
},
"TIGR00545": {
"acc": "TIGR00545",
"name": "lipoyltrans",
"func": "Protein fate",
"desc": "lipoyltransferase and lipoate-protein ligase"
},
"TIGR00542": {
"acc": "TIGR00542",
"name": "hxl6Piso_put",
"func": "Energy metabolism",
"desc": "putative hexulose-6-phosphate isomerase"
},
"TIGR00543": {
"acc": "TIGR00543",
"name": "isochor_syn",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "isochorismate synthase"
},
"TIGR00540": {
"acc": "TIGR00540",
"name": "TPR_hemY_coli",
"func": "Unknown function",
"desc": "heme biosynthesis-associated TPR protein"
},
"TIGR00541": {
"acc": "TIGR00541",
"name": "hisDCase_pyru",
"func": "Energy metabolism",
"desc": "histidine decarboxylase, pyruvoyl type"
},
"TIGR04397": {
"acc": "TIGR04397",
"name": "SecA2_Bac_anthr",
"func": "Protein fate",
"desc": "accessory Sec system translocase SecA2"
},
"TIGR04396": {
"acc": "TIGR04396",
"name": "surf_polysacc",
"func": "Cell envelope",
"desc": "surface carbohydrate biosynthesis protein"
},
"TIGR04395": {
"acc": "TIGR04395",
"name": "cutC_activ_rSAM",
"func": "Energy metabolism",
"desc": "choline TMA-lyase-activating enzyme"
},
"TIGR04394": {
"acc": "TIGR04394",
"name": "choline_CutC",
"func": "Energy metabolism",
"desc": "choline trimethylamine-lyase"
},
"TIGR04393": {
"acc": "TIGR04393",
"name": "rpt_T5SS_PEPC",
"func": "Unclassified",
"desc": "T5SS/PEP-CTERM-associated repeat"
},
"TIGR04392": {
"acc": "TIGR04392",
"name": "haoB_nitrify",
"func": "Unclassified",
"desc": "hydroxylamine oxidation protein HaoB"
},
"TIGR00548": {
"acc": "TIGR00548",
"name": "lolB",
"func": "Protein fate",
"desc": "outer membrane lipoprotein LolB"
},
"TIGR00549": {
"acc": "TIGR00549",
"name": "mevalon_kin",
"func": "Central intermediary metabolism",
"desc": "mevalonate kinase"
},
"TIGR01156": {
"acc": "TIGR01156",
"name": "cytb6/f_IV",
"func": "Energy metabolism",
"desc": "cytb6/f complex subunit IV"
},
"TIGR01157": {
"acc": "TIGR01157",
"name": "pufL",
"func": "Energy metabolism",
"desc": "photosynthetic reaction center L subunit"
},
"TIGR02217": {
"acc": "TIGR02217",
"name": "chp_TIGR02217",
"func": "Mobile and extrachromosomal element functions",
"desc": "TIGR02217 family protein"
},
"TIGR01152": {
"acc": "TIGR01152",
"name": "psbD",
"func": "Energy metabolism",
"desc": "photosystem II D2 protein (photosystem q(a) protein)"
},
"TIGR01153": {
"acc": "TIGR01153",
"name": "psbC",
"func": "Energy metabolism",
"desc": "photosystem II 44 kDa subunit reaction center protein"
},
"TIGR01150": {
"acc": "TIGR01150",
"name": "puhA",
"func": "Energy metabolism",
"desc": "photosynthetic reaction center H subunit"
},
"TIGR01151": {
"acc": "TIGR01151",
"name": "psbA",
"func": "Energy metabolism",
"desc": "photosystem II q(b) protein"
},
"TIGR04178": {
"acc": "TIGR04178",
"name": "exo_archaeo",
"func": "Unclassified",
"desc": "exosortase/archaeosortase family protein"
},
"TIGR01905": {
"acc": "TIGR01905",
"name": "paired_CXXCH_1",
"func": "Unclassified",
"desc": "doubled CXXCH domain"
},
"TIGR01158": {
"acc": "TIGR01158",
"name": "SUI1_rel",
"func": "Protein synthesis",
"desc": "putative translation initiation factor SUI1"
},
"TIGR01159": {
"acc": "TIGR01159",
"name": "DRP1",
"func": "Unclassified",
"desc": "density-regulated protein DRP1"
},
"TIGR02212": {
"acc": "TIGR02212",
"name": "lolCE",
"func": "Protein fate",
"desc": "lipoprotein releasing system, transmembrane protein, LolC/E family"
},
"TIGR02498": {
"acc": "TIGR02498",
"name": "type_III_ssaH",
"func": "Cellular processes",
"desc": "type III secretion system protein, SsaH family"
},
"TIGR02499": {
"acc": "TIGR02499",
"name": "HrpE_YscL_not",
"func": "Protein fate",
"desc": "type III secretion apparatus protein, HrpE/YscL family"
},
"TIGR04439": {
"acc": "TIGR04439",
"name": "histamin_N_OH",
"func": "Unclassified",
"desc": "putative histamine N-monooxygenase"
},
"TIGR02497": {
"acc": "TIGR02497",
"name": "yscI_hrpB_dom",
"func": "Protein fate",
"desc": "type III secretion apparatus protein, YscI/HrpB, C-terminal domain"
},
"TIGR02494": {
"acc": "TIGR02494",
"name": "PFLE_PFLC",
"func": "Unclassified",
"desc": "glycyl-radical enzyme activating protein"
},
"TIGR02495": {
"acc": "TIGR02495",
"name": "NrdG2",
"func": "Purines, pyrimidines, nucleosides, and nucleotides",
"desc": "anaerobic ribonucleoside-triphosphate reductase activating protein"
},
"TIGR02492": {
"acc": "TIGR02492",
"name": "flgK_ends",
"func": "Cellular processes",
"desc": "flagellar hook-associated protein FlgK"
},
"TIGR02493": {
"acc": "TIGR02493",
"name": "PFLA",
"func": "Protein fate",
"desc": "pyruvate formate-lyase 1-activating enzyme"
},
"TIGR02490": {
"acc": "TIGR02490",
"name": "flgF",
"func": "Cellular processes",
"desc": "flagellar basal-body rod protein FlgF"
},
"TIGR02491": {
"acc": "TIGR02491",
"name": "NrdG",
"func": "Purines, pyrimidines, nucleosides, and nucleotides",
"desc": "anaerobic ribonucleoside-triphosphate reductase activating protein"
},
"TIGR00403": {
"acc": "TIGR00403",
"name": "ndhI",
"func": "Energy metabolism",
"desc": "NADH-plastoquinone oxidoreductase, I subunit"
},
"TIGR00402": {
"acc": "TIGR00402",
"name": "napF",
"func": "Energy metabolism",
"desc": "ferredoxin-type protein NapF"
},
"TIGR00401": {
"acc": "TIGR00401",
"name": "msrA",
"func": "Protein fate",
"desc": "peptide-methionine (S)-S-oxide reductase"
},
"TIGR00400": {
"acc": "TIGR00400",
"name": "mgtE",
"func": "Transport and binding proteins",
"desc": "magnesium transporter"
},
"TIGR00407": {
"acc": "TIGR00407",
"name": "proA",
"func": "Amino acid biosynthesis",
"desc": "glutamate-5-semialdehyde dehydrogenase"
},
"TIGR00406": {
"acc": "TIGR00406",
"name": "prmA",
"func": "Protein synthesis",
"desc": "ribosomal protein L11 methyltransferase"
},
"TIGR00405": {
"acc": "TIGR00405",
"name": "KOW_elon_Spt5",
"func": "Unclassified",
"desc": "transcription elongation factor Spt5"
},
"TIGR03344": {
"acc": "TIGR03344",
"name": "VI_effect_Hcp1",
"func": "Cellular processes",
"desc": "type VI secretion system effector, Hcp1 family"
},
"TIGR00409": {
"acc": "TIGR00409",
"name": "proS_fam_II",
"func": "Protein synthesis",
"desc": "proline--tRNA ligase"
},
"TIGR00408": {
"acc": "TIGR00408",
"name": "proS_fam_I",
"func": "Protein synthesis",
"desc": "proline--tRNA ligase"
},
"TIGR03603": {
"acc": "TIGR03603",
"name": "cyclo_dehy_ocin",
"func": "Cellular processes",
"desc": "thiazole/oxazole-forming peptide maturase, SagC family component"
},
"TIGR03705": {
"acc": "TIGR03705",
"name": "poly_P_kin",
"func": "Central intermediary metabolism",
"desc": "polyphosphate kinase 1"
},
"TIGR03704": {
"acc": "TIGR03704",
"name": "PrmC_rel_meth",
"func": "Protein synthesis",
"desc": "putative protein-(glutamine-N5) methyltransferase, unknown substrate-specific"
},
"TIGR03707": {
"acc": "TIGR03707",
"name": "PPK2_P_aer",
"func": "Central intermediary metabolism",
"desc": "polyphosphate kinase 2"
},
"TIGR03706": {
"acc": "TIGR03706",
"name": "exo_poly_only",
"func": "Central intermediary metabolism",
"desc": "exopolyphosphatase"
},
"TIGR03701": {
"acc": "TIGR03701",
"name": "mena_SCO4490",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "menaquinone biosynthesis decarboxylase, SCO4490 family"
},
"TIGR03700": {
"acc": "TIGR03700",
"name": "mena_SCO4494",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "putative menaquinone biosynthesis radical SAM enzyme, SCO4494 family"
},
"TIGR03703": {
"acc": "TIGR03703",
"name": "plsB",
"func": "Fatty acid and phospholipid metabolism",
"desc": "glycerol-3-phosphate O-acyltransferase"
},
"TIGR03702": {
"acc": "TIGR03702",
"name": "lip_kinase_YegS",
"func": "Unknown function",
"desc": "lipid kinase YegS"
},
"TIGR03341": {
"acc": "TIGR03341",
"name": "YhgI_GntY",
"func": "Biosynthesis of cofactors, prosthetic groups, and carriers",
"desc": "IscR-regulated protein YhgI"
},
"TIGR03709": {
"acc": "TIGR03709",
"name": "PPK2_rel_1",
"func": "Central intermediary metabolism",
"desc": "polyphosphate:nucleotide phosphotransferase, PPK2 family"
},
"TIGR03708": {
"acc": "TIGR03708",
"name": "poly_P_AMP_trns",
"func": "Central intermediary metabolism",
"desc": "polyphosphate:AMP phosphotransferase"
},
"TIGR03340": {
"acc": "TIGR03340",
"name": "phn_DUF6",
"func": "Unclassified",
"desc": "phosphonate utilization associated putative membrane protein"
},
"TIGR04554": {
"acc": "TIGR04554",
"name": "3TM_mycoplas",
"func": "Unclassified",
"desc": "three transmembrane helix protein"
},
"TIGR03342": {
"acc": "TIGR03342",
"name": "dsrC_tusE_dsvC",
"func": "Unclassified",
"desc": "sulfur relay protein, TusE/DsrC/DsvC family"
},
"TIGR01844": {
"acc": "TIGR01844",
"name": "type_I_sec_TolC",
"func": "Transport and binding proteins",
"desc": "type I secretion outer membrane protein, TolC family"
},
"TIGR01845": {
"acc": "TIGR01845",
"name": "outer_NodT",
"func": "Transport and binding proteins",
"desc": "efflux transporter, outer membrane factor (OMF) lipoprotein, NodT family"
},
"TIGR01846": {
"acc": "TIGR01846",
"name": "type_I_sec_HlyB",
"func": "Protein fate",
"desc": "type I secretion system ATPase"
},
"TIGR01847": {
"acc": "TIGR01847",
"name": "bacteriocin_sig",
"func": "Unclassified",
"desc": "bacteriocin-type signal sequence"
},
"TIGR01840": {
"acc": "TIGR01840",
"name": "esterase_phb",
"func": "Fatty acid and phospholipid metabolism",
"desc": "esterase, PHB depolymerase family"
},
"TIGR01841": {
"acc": "TIGR01841",
"name": "phasin",
"func": "Unclassified",
"desc": "phasin family protein"
},
"TIGR01842": {
"acc": "TIGR01842",
"name": "type_I_sec_PrtD",
"func": "Protein fate",
"desc": "type I secretion system ATPase"
},
"TIGR01843": {
"acc": "TIGR01843",
"name": "type_I_hlyD",
"func": "Protein fate",
"desc": "type I secretion membrane fusion protein, HlyD family"
},
"TIGR01848": {
"acc": "TIGR01848",
"name": "PHA_reg_PhaR",
"func": "Regulatory functions",
"desc": "polyhydroxyalkanoate synthesis repressor PhaR"
},
"TIGR01849": {
"acc": "TIGR01849",
"name": "PHB_depoly_PhaZ",