-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKO_function.tab
More file actions
1169 lines (1169 loc) · 200 KB
/
KO_function.tab
File metadata and controls
1169 lines (1169 loc) · 200 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Constructed from biom file
#OTU ID mgm4517704.3 mgm4517705.3 mgm4517706.3 mgm4517707.3 ontology
K00003 2575.0 0.0 0.0 0.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E1.1.1.3: homoserine dehydrogenase [EC:1.1.1.3]
K00004 45.0 39.0 0.0 0.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];BDH, butB: (R,R)-butanediol dehydrogenase / diacetyl reductase [EC:1.1.1.4 1.1.1.303]
K00007 2478.0 2220.0 1897.0 1741.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];dalD: D-arabinitol 4-dehydrogenase [EC:1.1.1.11]
K00011 0.0 0.0 705.0 761.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];E1.1.1.21, AKR1: aldehyde reductase [EC:1.1.1.21]
K00012 1987.0 1788.0 1875.0 1859.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];UGDH, ugd: UDPglucose 6-dehydrogenase [EC:1.1.1.22]
K00013 2639.0 2340.0 2084.0 1967.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];hisD: histidinol dehydrogenase [EC:1.1.1.23]
K00016 1606.0 1523.0 1553.0 1395.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];LDH, ldh: L-lactate dehydrogenase [EC:1.1.1.27]
K00020 1722.0 1502.0 1693.0 1589.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];E1.1.1.31, mmsB: 3-hydroxyisobutyrate dehydrogenase [EC:1.1.1.31]
K00021 0.0 0.0 3026.0 2947.0 Metabolism;Metabolism of terpenoids and polyketides;00900 Terpenoid backbone biosynthesis [PATH:ko00900];E1.1.1.34: hydroxymethylglutaryl-CoA reductase (NADPH) [EC:1.1.1.34]
K00022 1598.0 1448.0 1688.0 1643.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];HADH: 3-hydroxyacyl-CoA dehydrogenase [EC:1.1.1.35]
K00024 718.0 648.0 1789.0 1776.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];mdh: malate dehydrogenase [EC:1.1.1.37]
K00031 1194.0 1123.0 686.0 652.0 Cellular Processes;Transport and catabolism;04146 Peroxisome [PATH:ko04146];IDH1, IDH2, icd: isocitrate dehydrogenase [EC:1.1.1.42]
K00032 292.0 245.0 132.0 102.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E1.1.1.43: phosphogluconate 2-dehydrogenase [EC:1.1.1.43]
K00033 0.0 0.0 250.0 233.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E1.1.1.44, PGD, gnd: 6-phosphogluconate dehydrogenase [EC:1.1.1.44]
K00036 0.0 0.0 181.0 182.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];G6PD, zwf: glucose-6-phosphate 1-dehydrogenase [EC:1.1.1.49]
K00041 1430.0 1213.0 963.0 922.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];uxaB: tagaturonate reductase [EC:1.1.1.58]
K00048 433.0 386.0 390.0 359.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];fucO: lactaldehyde reductase [EC:1.1.1.77]
K00052 0.0 0.0 1010.0 980.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];leuB: 3-isopropylmalate dehydrogenase [EC:1.1.1.85]
K00053 1102.0 943.0 835.0 871.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];ilvC: ketol-acid reductoisomerase [EC:1.1.1.86]
K00077 2142.0 2007.0 2261.0 2205.0 Metabolism;Metabolism of cofactors and vitamins;00770 Pantothenate and CoA biosynthesis [PATH:ko00770];panE, apbA: 2-dehydropantoate 2-reductase [EC:1.1.1.169]
K00079 1049.0 908.0 398.0 410.0 Human Diseases;Cancers;05204 Chemical carcinogenesis [PATH:ko05204];CBR1: carbonyl reductase 1 [EC:1.1.1.184 1.1.1.189 1.1.1.197]
K00080 0.0 0.0 82.0 88.0 Metabolism;Carbohydrate Metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];E4.2.1.47, gmd: GDPmannose 4,6-dehydratase [EC:4.2.1.47]
K00081 0.0 0.0 78.0 85.0 Metabolism;Lipid metabolism;00590 Arachidonic acid metabolism [PATH:ko00590];CBR2: carbonyl reductase 2 [EC:1.1.1.184]
K00082 0.0 0.0 132.0 129.0 Metabolism;Metabolism of cofactors and vitamins;00740 Riboflavin metabolism [PATH:ko00740];ribD2: 5-amino-6-(5-phosphoribosylamino)uracil reductase [EC:1.1.1.193]
K00088 1911.0 1771.0 1869.0 1824.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E1.1.1.205, guaB: IMP dehydrogenase [EC:1.1.1.205]
K00093 1842.0 1604.0 842.0 812.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.1.1.244: methanol dehydrogenase [EC:1.1.1.244]
K00097 1371.0 1250.0 1171.0 1102.0 Metabolism;Metabolism of cofactors and vitamins;00750 Vitamin B6 metabolism [PATH:ko00750];pdxA: 4-hydroxythreonine-4-phosphate dehydrogenase [EC:1.1.1.262]
K00103 0.0 0.0 2313.0 2055.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];E1.1.3.8: L-gulonolactone oxidase [EC:1.1.3.8]
K00104 782.0 0.0 1396.0 1355.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];glcD: glycolate oxidase [EC:1.1.3.15]
K00108 0.0 0.0 82.0 0.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E1.1.99.1, betA, CHDH: choline dehydrogenase [EC:1.1.99.1]
K00109 0.0 0.0 121.0 108.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];E1.1.99.2: 2-hydroxyglutarate dehydrogenase [EC:1.1.99.2]
K00113 944.0 865.0 1972.0 1995.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];glpC: glycerol-3-phosphate dehydrogenase subunit C [EC:1.1.5.3]
K00114 285.0 223.0 608.0 625.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];E1.1.2.8: alcohol dehydrogenase (cytochrome c) [EC:1.1.2.8]
K00115 0.0 0.0 414.0 0.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E1.1.99.10: glucose dehydrogenase (acceptor) [EC:1.1.99.10]
K00126 612.0 504.0 1434.0 1425.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];E1.2.1.2D, fdsD: formate dehydrogenase, delta subunit [EC:1.2.1.2]
K00127 618.0 565.0 0.0 0.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];E1.2.1.2G: formate dehydrogenase, gamma subunit
K00132 751.0 678.0 1797.0 1781.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];E1.2.1.10: acetaldehyde dehydrogenase (acetylating) [EC:1.2.1.10]
K00133 1458.0 1228.0 1513.0 1460.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];asd: aspartate-semialdehyde dehydrogenase [EC:1.2.1.11]
K00134 1305.0 1210.0 1290.0 1105.0 Environmental Information Processing;Signal transduction;04066 HIF-1 signaling pathway [PATH:ko04066];GAPDH, gapA: glyceraldehyde 3-phosphate dehydrogenase [EC:1.2.1.12]
K00136 2003.0 1860.0 2012.0 1978.0 Metabolism;Metabolism of Other Amino Acids;00410 beta-Alanine metabolism [PATH:ko00410];E4.1.1.9, MLYCD: malonyl-CoA decarboxylase [EC:4.1.1.9]
K00150 320.0 270.0 142.0 111.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];gap2: glyceraldehyde-3-phosphate dehydrogenase (NAD(P)) [EC:1.2.1.59]
K00156 0.0 0.0 330.0 315.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];poxB: pyruvate dehydrogenase (quinone) [EC:1.2.5.1]
K00157 0.0 0.0 82.0 63.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];AOX: aldehyde oxidase [EC:1.2.3.1]
K00161 0.0 0.0 291.0 278.0 Environmental Information Processing;Signal transduction;04066 HIF-1 signaling pathway [PATH:ko04066];PDHA, pdhA: pyruvate dehydrogenase E1 component subunit alpha [EC:1.2.4.1]
K00166 0.0 0.0 99.0 0.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];E1.2.4.4A, bkdA1: 2-oxoisovalerate dehydrogenase E1 component, alpha subunit [EC:1.2.4.4]
K00169 0.0 0.0 393.0 374.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];porA: pyruvate ferredoxin oxidoreductase, alpha subunit [EC:1.2.7.1]
K00172 0.0 755.0 0.0 410.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];porG: pyruvate ferredoxin oxidoreductase, gamma subunit [EC:1.2.7.1]
K00174 0.0 0.0 2554.0 2289.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];korA: 2-oxoglutarate ferredoxin oxidoreductase subunit alpha [EC:1.2.7.3]
K00175 707.0 592.0 1328.0 1285.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];korB: 2-oxoglutarate ferredoxin oxidoreductase subunit beta [EC:1.2.7.3]
K00176 1739.0 1556.0 1370.0 1336.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];korD: 2-oxoglutarate ferredoxin oxidoreductase subunit delta [EC:1.2.7.3]
K00182 0.0 0.0 537.0 525.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];WNT2: wingless-type MMTV integration site family, member 2
K00198 1491.0 1304.0 1206.0 1134.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.2.99.2C, cooS: carbon-monoxide dehydrogenase catalytic subunit [EC:1.2.99.2]
K00202 1464.0 1286.0 1334.0 1293.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.2.99.5C, fwdC, fmdC: formylmethanofuran dehydrogenase subunit C [EC:1.2.99.5]
K00203 92.0 79.0 114.0 112.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.2.99.5D, fwdD, fmdD: formylmethanofuran dehydrogenase subunit D [EC:1.2.99.5]
K00204 2477.0 2217.0 1884.0 1737.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.2.99.5H, fwdH: formylmethanofuran dehydrogenase subunit H [EC:1.2.99.5]
K00208 0.0 0.0 1404.0 1456.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];fabI: enoyl-[acyl-carrier protein] reductase I [EC:1.3.1.9 1.3.1.10]
K00210 0.0 102.0 141.0 129.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];E1.3.1.12: prephenate dehydrogenase [EC:1.3.1.12]
K00213 12.0 16.0 0.0 0.0 Metabolism;Lipid metabolism;00100 Steroid biosynthesis [PATH:ko00100];DHCR7: 7-dehydrocholesterol reductase [EC:1.3.1.21]
K00214 669.0 594.0 593.0 574.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];BLVRA, bvdR: biliverdin reductase [EC:1.3.1.24]
K00216 1273.0 1095.0 1158.0 1086.0 Metabolism;Metabolism of terpenoids and polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];entA: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase [EC:1.3.1.28]
K00217 0.0 0.0 537.0 526.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];E1.3.1.32: maleylacetate reductase [EC:1.3.1.32]
K00222 996.0 923.0 1114.0 1056.0 Metabolism;Lipid metabolism;00100 Steroid biosynthesis [PATH:ko00100];E1.3.1.70, TM7SF2, ERG24: delta14-sterol reductase [EC:1.3.1.70]
K00225 812.0 745.0 928.0 903.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];E1.3.2.3: L-galactono-1,4-lactone dehydrogenase [EC:1.3.2.3]
K00230 1899.0 1715.0 1763.0 1749.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];hemG: menaquinone-dependent protoporphyrinogen oxidase [EC:1.3.5.3]
K00236 4.0 0.0 0.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];SDHC, SDH3: succinate dehydrogenase (ubiquinone) cytochrome b560 subunit
K00239 1295.0 1164.0 2044.0 2041.0 Human Diseases;Infectious diseases;05134 Legionellosis [PATH:ko05134];sdhA: succinate dehydrogenase flavoprotein subunit [EC:1.3.99.1]
K00240 296.0 229.0 602.0 624.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];sdhB: succinate dehydrogenase iron-sulfur subunit [EC:1.3.99.1]
K00247 928.0 794.0 798.0 741.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];frdD: fumarate reductase subunit D
K00248 927.0 808.0 0.0 0.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];ACADS, bcd: butyryl-CoA dehydrogenase [EC:1.3.8.1]
K00249 0.0 0.0 1222.0 0.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];ACADM, acd: acyl-CoA dehydrogenase [EC:1.3.8.7]
K00251 494.0 455.0 1160.0 1125.0 Metabolism;Lipid metabolism;00120 Primary bile acid biosynthesis [PATH:ko00120];AKR1D1: 3-oxo-5-beta-steroid 4-dehydrogenase [EC:1.3.1.3]
K00257 778.0 729.0 1362.0 1266.0 Metabolism;Metabolism of terpenoids and polyketides;00281 Geraniol degradation [PATH:ko00281];E1.3.99.-: [EC:1.3.99.-]
K00259 0.0 0.0 551.0 498.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];ald: alanine dehydrogenase [EC:1.4.1.1]
K00262 2235.0 1966.0 2575.0 2545.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E1.4.1.4, gdhA: glutamate dehydrogenase (NADP+) [EC:1.4.1.4]
K00265 1508.0 1344.0 1656.0 1635.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];gltB: glutamate synthase (NADPH/NADH) large chain [EC:1.4.1.13 1.4.1.14]
K00266 0.0 0.0 2636.0 0.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];gltD: glutamate synthase (NADPH/NADH) small chain [EC:1.4.1.13 1.4.1.14]
K00278 0.0 0.0 3941.0 3841.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];nadB: L-aspartate oxidase [EC:1.4.3.16]
K00282 1645.0 1507.0 1102.0 1087.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];gcvPA: glycine dehydrogenase subunit 1 [EC:1.4.4.2]
K00283 1375.0 1197.0 1267.0 1222.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];gcvPB: glycine dehydrogenase subunit 2 [EC:1.4.4.2]
K00287 731.0 0.0 954.0 904.0 Metabolism;Metabolism of cofactors and vitamins;00670 One carbon pool by folate [PATH:ko00670];folA: dihydrofolate reductase [EC:1.5.1.3]
K00290 595.0 513.0 1067.0 1009.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];LYS1: saccharopine dehydrogenase (NAD+, L-lysine forming) [EC:1.5.1.7]
K00292 631.0 552.0 433.0 421.0 Metabolism;Amino acid metabolism;00310 Lysine degradation [PATH:ko00310];E1.5.1.9: saccharopine dehydrogenase (NAD+, L-glutamate forming) [EC:1.5.1.9]
K00294 303.0 305.0 335.0 263.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E1.5.1.12: 1-pyrroline-5-carboxylate dehydrogenase [EC:1.5.1.12]
K00299 2501.0 2226.0 1891.0 1749.0 Metabolism;Metabolism of cofactors and vitamins;00740 Riboflavin metabolism [PATH:ko00740];ssuE: FMN reductase [EC:1.5.1.38]
K00301 568.0 488.0 815.0 834.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E1.5.3.1: sarcosine oxidase [EC:1.5.3.1]
K00305 0.0 0.0 685.0 743.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];soxG: sarcosine oxidase, subunit gamma [EC:1.5.3.1]
K00318 0.0 0.0 58.0 0.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E1.5.99.8: proline dehydrogenase [EC:1.5.99.8]
K00319 493.0 452.0 1158.0 1119.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];mtd: methylenetetrahydromethanopterin dehydrogenase [EC:1.5.99.9]
K00328 1462.0 1287.0 1334.0 1294.0 Metabolism;Carbohydrate metabolism;00562 Inositol phosphate metabolism [PATH:ko00562];IPMK: inositol-polyphosphate multikinase [EC:2.7.1.151]
K00330 0.0 0.0 294.0 253.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoA: NADH-quinone oxidoreductase subunit A [EC:1.6.5.3]
K00331 0.0 999.0 1162.0 0.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoB: NADH-quinone oxidoreductase subunit B [EC:1.6.5.3]
K00335 0.0 0.0 478.0 441.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoF: NADH-quinone oxidoreductase subunit F [EC:1.6.5.3]
K00337 0.0 0.0 486.0 465.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoH: NADH-quinone oxidoreductase subunit H [EC:1.6.5.3]
K00338 0.0 0.0 219.0 0.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoI: NADH-quinone oxidoreductase subunit I [EC:1.6.5.3]
K00342 0.0 0.0 726.0 646.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];nuoM: NADH-quinone oxidoreductase subunit M [EC:1.6.5.3]
K00357 0.0 0.0 0.0 28.0 Metabolism;Metabolism of cofactors and vitamins;00790 Folate biosynthesis [PATH:ko00790];QDPR: dihydropteridine reductase [EC:1.5.1.34]
K00364 0.0 0.0 14.0 19.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E1.7.1.7, guaC: GMP reductase [EC:1.7.1.7]
K00373 5040.0 4432.0 6525.0 6094.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];narJ: nitrate reductase 1, delta subunit
K00374 0.0 0.0 4.0 0.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];narI: nitrate reductase 1, gamma subunit [EC:1.7.99.4]
K00376 0.0 0.0 1238.0 1190.0 Metabolism;Energy metabolism;00910 Nitrogen metabolism [PATH:ko00910];nosZ: nitrous-oxide reductase [EC:1.7.2.4]
K00392 0.0 0.0 2238.0 2057.0 Metabolism;Energy metabolism;00920 Sulfur metabolism [PATH:ko00920];sir: sulfite reductase (ferredoxin) [EC:1.8.7.1]
K00395 0.0 0.0 0.0 5.0 Metabolism;Energy metabolism;00920 Sulfur metabolism [PATH:ko00920];aprB: adenylylsulfate reductase, subunit B [EC:1.8.99.2]
K00400 388.0 334.0 367.0 342.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];K00400: methyl coenzyme M reductase system, component A2
K00404 2534.0 2265.0 1904.0 1752.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];ccoN: cytochrome c oxidase cbb3-type subunit I [EC:1.9.3.1]
K00414 0.0 28.0 25.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];QCR1, UQCRC1: ubiquinol-cytochrome c reductase core subunit 1
K00415 0.0 0.0 28.0 29.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];QCR2, UQCRC2: ubiquinol-cytochrome c reductase core subunit 2
K00417 0.0 0.0 19.0 26.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];QCR7, UQCRB: ubiquinol-cytochrome c reductase subunit 7
K00418 0.0 0.0 20.0 29.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];QCR8, UQCRQ: ubiquinol-cytochrome c reductase subunit 8
K00425 0.0 0.0 1082.0 965.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];cydA: cytochrome d ubiquinol oxidase subunit I [EC:1.10.3.-]
K00436 13.0 12.0 0.0 0.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.12.1.2: hydrogen dehydrogenase [EC:1.12.1.2]
K00440 0.0 5.0 0.0 0.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];frhA: coenzyme F420 hydrogenase alpha subunit [EC:1.12.98.1]
K00442 0.0 0.0 17.0 0.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];frhD: coenzyme F420 hydrogenase delta subunit
K00451 0.0 0.0 0.0 4.0 Metabolism;Amino acid metabolism;00350 Tyrosine metabolism [PATH:ko00350];HGD, hmgA: homogentisate 1,2-dioxygenase [EC:1.13.11.5]
K00462 198.0 190.0 214.0 216.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];bphC: biphenyl-2,3-diol 1,2-dioxygenase [EC:1.13.11.39]
K00467 0.0 0.0 4.0 0.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];E1.13.12.4: lactate 2-monooxygenase [EC:1.13.12.4]
K00483 99.0 78.0 51.0 41.0 Metabolism;Amino acid metabolism;00350 Tyrosine metabolism [PATH:ko00350];hpaB: 4-hydroxyphenylacetate 3-monooxygenase [EC:1.14.14.9]
K00487 0.0 0.0 114.0 99.0 Metabolism;Amino acid metabolism;00360 Phenylalanine metabolism [PATH:ko00360];CYP73A: trans-cinnamate 4-monooxygenase [EC:1.14.13.11]
K00516 188.0 177.0 61.0 63.0 Metabolism;Xenobiotics Biodegradation and Metabolism;00626 Naphthalene degradation [PATH:ko00626];E1.14.13.1: salicylate hydroxylase [EC:1.14.13.1]
K00525 1128.0 1013.0 2488.0 2409.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E1.17.4.1A, nrdA, nrdE: ribonucleoside-diphosphate reductase alpha chain [EC:1.17.4.1]
K00526 0.0 0.0 173.0 178.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E1.17.4.1B, nrdB, nrdF: ribonucleoside-diphosphate reductase beta chain [EC:1.17.4.1]
K00527 3568.0 3088.0 2710.0 2679.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];nrdD: ribonucleoside-triphosphate reductase [EC:1.17.4.2]
K00529 0.0 0.0 345.0 290.0 Metabolism;Amino acid metabolism;00360 Phenylalanine metabolism [PATH:ko00360];hcaD: ferredoxin--NAD+ reductase [EC:1.18.1.3]
K00531 1897.0 1709.0 1761.0 1747.0 Metabolism;Energy metabolism;00910 Nitrogen metabolism [PATH:ko00910];anfG: nitrogenase [EC:1.18.6.1]
K00534 0.0 0.0 0.0 1.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E1.12.7.2S: ferredoxin hydrogenase small subunit [EC:1.12.7.2]
K00559 1738.0 1519.0 1650.0 1639.0 Metabolism;Lipid metabolism;00100 Steroid biosynthesis [PATH:ko00100];E2.1.1.41, SMT1, ERG6: sterol 24-C-methyltransferase [EC:2.1.1.41]
K00560 766.0 673.0 810.0 836.0 Metabolism;Metabolism of cofactors and vitamins;00670 One carbon pool by folate [PATH:ko00670];E2.1.1.45, thyA: thymidylate synthase [EC:2.1.1.45]
K00566 3367.0 2972.0 1992.0 1885.0 Genetic Information Processing;Folding, sorting and degradation;04122 Sulfur relay system [PATH:ko04122];mnmA, trmU, TRMU: tRNA-specific 2-thiouridylase [EC:2.8.1.-]
K00569 3014.0 2706.0 2407.0 2213.0 Metabolism;Xenobiotics biodegradation and metabolism;00983 Drug metabolism - other enzymes [PATH:ko00983];E2.1.1.67, tpmT: thiopurine S-methyltransferase [EC:2.1.1.67]
K00570 4115.0 3619.0 3122.0 2962.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];pmtA: phosphatidylethanolamine/phosphatidyl-N-methylethanolamine N-methyltransferase [EC:2.1.1.17 2.1.1.71]
K00578 0.0 0.0 976.0 920.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];E2.1.1.86B, mtrB: tetrahydromethanopterin S-methyltransferase subunit B [EC:2.1.1.86]
K00581 895.0 802.0 546.0 513.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];mtrE: tetrahydromethanopterin S-methyltransferase subunit E [EC:2.1.1.86]
K00584 0.0 0.0 1697.0 1564.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];mtrH: tetrahydromethanopterin S-methyltransferase subunit H [EC:2.1.1.86]
K00588 0.0 0.0 437.0 417.0 Metabolism;Amino acid metabolism;00360 Phenylalanine metabolism [PATH:ko00360];E2.1.1.104: caffeoyl-CoA O-methyltransferase [EC:2.1.1.104]
K00600 1511.0 1353.0 1479.0 1436.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];glyA, SHMT: glycine hydroxymethyltransferase [EC:2.1.2.1]
K00603 980.0 895.0 2799.0 2692.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];E2.1.2.5: glutamate formiminotransferase [EC:2.1.2.5]
K00606 0.0 0.0 741.0 747.0 Metabolism;Metabolism of cofactors and vitamins;00770 Pantothenate and CoA biosynthesis [PATH:ko00770];panB: 3-methyl-2-oxobutanoate hydroxymethyltransferase [EC:2.1.2.11]
K00609 913.0 813.0 812.0 783.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];pyrB, PYR2: aspartate carbamoyltransferase catalytic subunit [EC:2.1.3.2]
K00610 0.0 0.0 539.0 525.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];pyrI: aspartate carbamoyltransferase regulatory subunit
K00611 848.0 801.0 282.0 293.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];OTC, argF, argI: ornithine carbamoyltransferase [EC:2.1.3.3]
K00613 0.0 262.0 0.0 0.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];GATM: glycine amidinotransferase [EC:2.1.4.1]
K00616 438.0 401.0 160.0 0.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E2.2.1.2, talA, talB: transaldolase [EC:2.2.1.2]
K00622 0.0 0.0 1611.0 1650.0 Human Diseases;Cancers;05204 Chemical carcinogenesis [PATH:ko05204];nat: arylamine N-acetyltransferase [EC:2.3.1.5]
K00625 0.0 0.0 734.0 0.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];E2.3.1.8, pta: phosphate acetyltransferase [EC:2.3.1.8]
K00634 0.0 710.0 657.0 0.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];ptb: phosphate butyryltransferase [EC:2.3.1.19]
K00639 271.0 252.0 1236.0 1167.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];kbl, GCAT: glycine C-acetyltransferase [EC:2.3.1.29]
K00641 0.0 0.0 772.0 745.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];E2.3.1.31, metX: homoserine O-acetyltransferase [EC:2.3.1.31]
K00643 832.0 735.0 913.0 910.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E2.3.1.37, ALAS: 5-aminolevulinate synthase [EC:2.3.1.37]
K00649 415.0 356.0 0.0 0.0 Cellular Processes;Transport and catabolism;04146 Peroxisome [PATH:ko04146];GNPAT: glyceronephosphate O-acyltransferase [EC:2.3.1.42]
K00650 413.0 352.0 113.0 0.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];LCAT: lecithin-cholesterol acyltransferase [EC:2.3.1.43]
K00651 732.0 663.0 660.0 607.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];metA: homoserine O-succinyltransferase [EC:2.3.1.46]
K00652 0.0 0.0 1413.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00780 Biotin metabolism [PATH:ko00780];bioF: 8-amino-7-oxononanoate synthase [EC:2.3.1.47]
K00656 2463.0 2236.0 1466.0 1441.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];E2.3.1.54, pflD: formate C-acetyltransferase [EC:2.3.1.54]
K00658 0.0 0.0 1660.0 1555.0 Metabolism;Amino acid metabolism;00310 Lysine degradation [PATH:ko00310];DLST, sucB: 2-oxoglutarate dehydrogenase E2 component (dihydrolipoamide succinyltransferase) [EC:2.3.1.61]
K00668 1849.0 1686.0 1261.0 1240.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];FAS1: fatty acid synthase subunit beta, fungi type [EC:2.3.1.86]
K00687 0.0 0.0 82.0 89.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];pbp2B, penA: penicillin-binding protein 2B [EC:2.3.2.-]
K00688 4298.0 3798.0 3200.0 3046.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E2.4.1.1, glgP, PYG: starch phosphorylase [EC:2.4.1.1]
K00691 52.0 42.0 337.0 280.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E2.4.1.8, mapA: maltose phosphorylase [EC:2.4.1.8]
K00692 1730.0 1505.0 1682.0 1659.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];sacB: levansucrase [EC:2.4.1.10]
K00697 947.0 807.0 360.0 314.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];otsA: trehalose 6-phosphate synthase [EC:2.4.1.15]
K00700 4907.0 4415.0 4165.0 3959.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];glgB: 1,4-alpha-glucan branching enzyme [EC:2.4.1.18]
K00702 166.0 0.0 45.0 53.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E2.4.1.20: cellobiose phosphorylase [EC:2.4.1.20]
K00703 0.0 0.0 2441.0 2370.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E2.4.1.21, glgA: starch synthase [EC:2.4.1.21]
K00705 0.0 0.0 4584.0 4350.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];malQ: 4-alpha-glucanotransferase [EC:2.4.1.25]
K00714 0.0 0.0 0.0 63.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];WNT8: wingless-type MMTV integration site family, member 8
K00715 0.0 0.0 109.0 92.0 Metabolism;Glycan biosynthesis and metabolism;00514 Other types of O-glycan biosynthesis [PATH:ko00514];B3GALT4: ganglioside galactosyltransferase [EC:2.4.1.62]
K00716 0.0 0.0 129.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00601 Glycosphingolipid biosynthesis - lacto and neolacto series [PATH:ko00601];FUT3: galactoside 3(4)-fucosyltransferase 3 [EC:2.4.1.65]
K00717 0.0 0.0 122.0 106.0 Human Diseases;Cancers;05202 Transcriptional misregulation in cancers [PATH:ko05202];FUT8: glycoprotein 6-alpha-L-fucosyltransferase [EC:2.4.1.68]
K00718 0.0 0.0 2751.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00601 Glycosphingolipid biosynthesis - lacto and neolacto series [PATH:ko00601];FUT1_2: galactoside 2-L-fucosyltransferase 1/2 [EC:2.4.1.69]
K00721 0.0 0.0 1720.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];DPM1: dolichol-phosphate mannosyltransferase [EC:2.4.1.83]
K00731 21.0 18.0 0.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00512 Mucin type O-glycan biosynthesis [PATH:ko00512];C1GALT1: glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase [EC:2.4.1.122]
K00735 904.0 782.0 734.0 699.0 Metabolism;Glycan biosynthesis and metabolism;00514 Other types of O-glycan biosynthesis [PATH:ko00514];B3GAT1: galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 1 [EC:2.4.1.135]
K00736 0.0 0.0 346.0 340.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];MGAT2: alpha-1,6-mannosyl-glycoprotein beta-1,2-N-acetylglucosaminyltransferase [EC:2.4.1.143]
K00738 0.0 0.0 313.0 325.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];MGAT4A_B: alpha-1,3-mannosylglycoprotein beta-1,4-N-acetylglucosaminyltransferase A/B [EC:2.4.1.145]
K00739 624.0 566.0 287.0 312.0 Metabolism;Glycan biosynthesis and metabolism;00512 Mucin type O-glycan biosynthesis [PATH:ko00512];B3GNT6: acetylgalactosaminyl-0-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase [EC:2.4.1.147]
K00744 2215.0 1965.0 829.0 804.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];MGAT5: alpha-1,3(6)-mannosylglycoprotein beta-1,6-N-acetyl-glucosaminyltransferase [EC:2.4.1.155]
K00747 292.0 246.0 133.0 103.0 Metabolism;Glycan biosynthesis and metabolism;00532 Glycosaminoglycan biosynthesis - chondroitin sulfate / dermatan sulfate [PATH:ko00532];CHPF: chondroitin polymerizing factor [EC:2.4.1.175 2.4.1.226]
K00761 3188.0 2874.0 2204.0 2117.0 Metabolism;Nucleotide metabolism;00240 Pyrimidine metabolism [PATH:ko00240];upp, UPRT: uracil phosphoribosyltransferase [EC:2.4.2.9]
K00763 2004.0 1752.0 1296.0 1234.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];pncB, NAPRT1: nicotinate phosphoribosyltransferase [EC:2.4.2.11]
K00764 2275.0 2090.0 1974.0 1821.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E2.4.2.14, purF: amidophosphoribosyltransferase [EC:2.4.2.14]
K00767 0.0 0.0 2011.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];nadC, QPRT: nicotinate-nucleotide pyrophosphorylase (carboxylating) [EC:2.4.2.19]
K00768 0.0 0.0 1182.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];E2.4.2.21, cobU, cobT: nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase [EC:2.4.2.21]
K00770 0.0 0.0 0.0 3.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E2.4.2.24: 1,4-beta-D-xylan synthase [EC:2.4.2.24]
K00781 563.0 534.0 363.0 350.0 Metabolism;Glycan biosynthesis and metabolism;00513 Various types of N-glycan biosynthesis [PATH:ko00513];SIAT6: N-acetyllactosaminide alpha-2,3-sialyltransferase (sialyltransferase 6) [EC:2.4.99.6]
K00789 0.0 0.0 1743.0 1699.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];E2.5.1.6, metK: S-adenosylmethionine synthetase [EC:2.5.1.6]
K00799 0.0 0.0 0.0 188.0 Human Diseases;Cancers;05204 Chemical carcinogenesis [PATH:ko05204];GST, gst: glutathione S-transferase [EC:2.5.1.18]
K00811 512.0 446.0 791.0 759.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];ASP5: aspartate aminotransferase, chloroplastic [EC:2.6.1.1]
K00813 434.0 394.0 400.0 364.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E2.6.1.1B, aspC: aspartate aminotransferase [EC:2.6.1.1]
K00814 436.0 405.0 456.0 462.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];GPT, ALT: alanine transaminase [EC:2.6.1.2]
K00815 944.0 840.0 409.0 381.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];TAT: tyrosine aminotransferase [EC:2.6.1.5]
K00818 1586.0 1337.0 1492.0 1396.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E2.6.1.11, argD: acetylornithine aminotransferase [EC:2.6.1.11]
K00819 1261.0 1067.0 1377.0 1328.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E2.6.1.13, rocD: ornithine--oxo-acid transaminase [EC:2.6.1.13]
K00826 1853.0 1619.0 3008.0 2941.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];E2.6.1.42, ilvE: branched-chain amino acid aminotransferase [EC:2.6.1.42]
K00831 1384.0 1232.0 1352.0 1287.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];serC, PSAT1: phosphoserine aminotransferase [EC:2.6.1.52]
K00833 2632.0 2436.0 2728.0 2689.0 Metabolism;Metabolism of cofactors and vitamins;00780 Biotin metabolism [PATH:ko00780];bioA: adenosylmethionine-8-amino-7-oxononanoate aminotransferase [EC:2.6.1.62]
K00835 3204.0 2868.0 3072.0 2985.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];avtA: valine--pyruvate aminotransferase [EC:2.6.1.66]
K00841 1772.0 1616.0 1158.0 1102.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];patA: aminotransferase [EC:2.6.1.-]
K00849 2115.0 1875.0 3112.0 3073.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];galK: galactokinase [EC:2.7.1.6]
K00850 3572.0 3221.0 2405.0 2241.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];pfkA, PFK: 6-phosphofructokinase 1 [EC:2.7.1.11]
K00851 1887.0 1648.0 881.0 865.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E2.7.1.12, gntK, idnK: gluconokinase [EC:2.7.1.12]
K00854 0.0 0.0 1165.0 1104.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];E2.7.1.17: xylulokinase [EC:2.7.1.17]
K00860 0.0 0.0 116.0 127.0 Metabolism;Energy metabolism;00920 Sulfur metabolism [PATH:ko00920];cysC: adenylylsulfate kinase [EC:2.7.1.25]
K00864 1442.0 1319.0 1028.0 993.0 Metabolism;Lipid metabolism;00561 Glycerolipid metabolism [PATH:ko00561];E2.7.1.30, glpK: glycerol kinase [EC:2.7.1.30]
K00867 0.0 1290.0 1263.0 1232.0 Metabolism;Metabolism of cofactors and vitamins;00770 Pantothenate and CoA biosynthesis [PATH:ko00770];coaA: type I pantothenate kinase [EC:2.7.1.33]
K00869 1232.0 1109.0 3090.0 2920.0 Cellular Processes;Transport and catabolism;04146 Peroxisome [PATH:ko04146];E2.7.1.36, MVK, mvaK1: mevalonate kinase [EC:2.7.1.36]
K00874 1264.0 1101.0 1158.0 1084.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];kdgK: 2-dehydro-3-deoxygluconokinase [EC:2.7.1.45]
K00879 0.0 0.0 5.0 0.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];fucK: L-fuculokinase [EC:2.7.1.51]
K00889 0.0 0.0 53.0 53.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];E2.7.1.68, PIP5K: 1-phosphatidylinositol-4-phosphate 5-kinase [EC:2.7.1.68]
K00892 0.0 0.0 1.0 3.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];gsk: inosine kinase [EC:2.7.1.73]
K00893 5.0 5.0 0.0 0.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];DCK: deoxycitidine kinase [EC:2.7.1.74]
K00894 0.0 0.0 7.0 0.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];ETNK, EKI: ethanolamine kinase [EC:2.7.1.82]
K00895 1172.0 1075.0 1352.0 1358.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];E2.7.1.90, pfk: pyrophosphate--fructose-6-phosphate 1-phosphotransferase [EC:2.7.1.90]
K00925 0.0 0.0 1401.0 0.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];ackA: acetate kinase [EC:2.7.2.1]
K00927 2323.0 2053.0 2471.0 2344.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];PGK, pgk: phosphoglycerate kinase [EC:2.7.2.3]
K00928 0.0 0.0 1443.0 1334.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E2.7.2.4, lysC: aspartate kinase [EC:2.7.2.4]
K00930 0.0 0.0 539.0 0.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];argB: acetylglutamate kinase [EC:2.7.2.8]
K00937 0.0 0.0 879.0 832.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];ppk: polyphosphate kinase [EC:2.7.4.1]
K00940 2661.0 2389.0 1819.0 1764.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E2.7.4.6, ndk: nucleoside-diphosphate kinase [EC:2.7.4.6]
K00948 0.0 0.0 1278.0 1236.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];PRPS, prsA: ribose-phosphate pyrophosphokinase [EC:2.7.6.1]
K00951 2668.0 2434.0 2929.0 2746.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];relA: GTP pyrophosphokinase [EC:2.7.6.5]
K00957 893.0 815.0 632.0 610.0 Metabolism;Energy metabolism;00920 Sulfur metabolism [PATH:ko00920];cysD: sulfate adenylyltransferase subunit 2 [EC:2.7.7.4]
K00962 2609.0 2329.0 2720.0 2531.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];pnp, PNPT1: polyribonucleotide nucleotidyltransferase [EC:2.7.7.8]
K00965 888.0 735.0 344.0 297.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];galT, GALT: UDPglucose--hexose-1-phosphate uridylyltransferase [EC:2.7.7.12]
K00969 0.0 0.0 1593.0 1499.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];nadD: nicotinate-nucleotide adenylyltransferase [EC:2.7.7.18]
K00971 0.0 0.0 1122.0 0.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];manC, cpsB: mannose-1-phosphate guanylyltransferase [EC:2.7.7.13]
K00973 1442.0 1327.0 1461.0 1339.0 Metabolism;Biosynthesis of other secondary metabolites;00521 Streptomycin biosynthesis [PATH:ko00521];E2.7.7.24, rfbA, rffH: glucose-1-phosphate thymidylyltransferase [EC:2.7.7.24]
K00975 3421.0 3045.0 3885.0 3694.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];glgC: glucose-1-phosphate adenylyltransferase [EC:2.7.7.27]
K00978 0.0 0.0 351.0 345.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];rfbF: glucose-1-phosphate cytidylyltransferase [EC:2.7.7.33]
K00981 0.0 0.0 0.0 528.0 Environmental Information Processing;Signal transduction;04070 Phosphatidylinositol signaling system [PATH:ko04070];E2.7.7.41, CDS1, CDS2, cdsA: phosphatidate cytidylyltransferase [EC:2.7.7.41]
K01006 3204.0 2867.0 3072.0 2990.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];ppdK: pyruvate,orthophosphate dikinase [EC:2.7.9.1]
K01015 796.0 709.0 267.0 276.0 Metabolism;Energy metabolism;00920 Sulfur metabolism [PATH:ko00920];SULT2B1: alcohol sulfotransferase [EC:2.8.2.2]
K01027 857.0 743.0 484.0 447.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];OXCT: 3-oxoacid CoA-transferase [EC:2.8.3.5]
K01041 0.0 0.0 219.0 228.0 Metabolism;Metabolism of terpenoids and polyketides;00281 Geraniol degradation [PATH:ko00281];E2.8.3.-: [EC:2.8.3.-]
K01047 881.0 799.0 1846.0 1860.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];PLA2G, SPLA2: secretory phospholipase A2 [EC:3.1.1.4]
K01048 345.0 0.0 622.0 634.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];pldB: lysophospholipase [EC:3.1.1.5]
K01062 295.0 251.0 834.0 777.0 Metabolism;Lipid metabolism;00565 Ether lipid metabolism [PATH:ko00565];PAFAH: platelet-activating factor acetylhydrolase [EC:3.1.1.47]
K01066 2545.0 2316.0 1545.0 1536.0 Metabolism;Biosynthesis of other secondary metabolites;00960 Tropane, piperidine and pyridine alkaloid biosynthesis [PATH:ko00960];E3.1.1.-: esterase / lipase [EC:3.1.1.-]
K01068 307.0 262.0 131.0 105.0 Metabolism;Lipid metabolism;00062 Fatty acid elongation [PATH:ko00062];E3.1.2.2: palmitoyl-CoA hydrolase [EC:3.1.2.2]
K01071 0.0 0.0 41.0 47.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];E3.1.2.14: oleoyl-[acyl-carrier-protein] hydrolase [EC:3.1.2.14]
K01089 166.0 131.0 339.0 358.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];hisB: imidazoleglycerol-phosphate dehydratase / histidinol-phosphatase [EC:4.2.1.19 3.1.3.15]
K01096 0.0 0.0 14.0 0.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];pgpB: phosphatidylglycerophosphatase B [EC:3.1.3.27]
K01097 0.0 0.0 116.0 102.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];NANP: N-acylneuraminate-9-phosphatase [EC:3.1.3.29]
K01099 0.0 0.0 73.0 0.0 Environmental Information Processing;Signal transduction;04070 Phosphatidylinositol signaling system [PATH:ko04070];E3.1.3.36: phosphatidylinositol-bisphosphatase [EC:3.1.3.36]
K01100 0.0 20.0 9.0 8.0 Metabolism;Energy metabolism;00710 Carbon fixation in photosynthetic organisms [PATH:ko00710];E3.1.3.37: sedoheptulose-bisphosphatase [EC:3.1.3.37]
K01107 1382.0 1165.0 887.0 853.0 Environmental Information Processing;Signal transduction;04070 Phosphatidylinositol signaling system [PATH:ko04070];INPP1: inositol polyphosphate 1-phosphatase [EC:3.1.3.57]
K01108 427.0 387.0 375.0 306.0 Environmental Information Processing;Signal transduction;04070 Phosphatidylinositol signaling system [PATH:ko04070];MTM1: phosphatidylinositol-3-phosphatase [EC:3.1.3.64]
K01119 0.0 0.0 477.0 486.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];cpdB: 2',3'-cyclic-nucleotide 2'-phosphodiesterase [EC:3.1.4.16]
K01129 0.0 0.0 788.0 0.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];dgt: dGTPase [EC:3.1.5.1]
K01130 0.0 0.0 385.0 355.0 Metabolism;Lipid metabolism;00140 Steroid hormone biosynthesis [PATH:ko00140];E3.1.6.1, aslA: arylsulfatase [EC:3.1.6.1]
K01137 0.0 0.0 79.0 63.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];GNS: N-acetylglucosamine-6-sulfatase [EC:3.1.6.14]
K01142 635.0 571.0 426.0 430.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];E3.1.11.2, xthA: exodeoxyribonuclease III [EC:3.1.11.2]
K01148 477.0 438.0 614.0 568.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];PARN: poly(A)-specific ribonuclease [EC:3.1.13.4]
K01151 0.0 0.0 816.0 0.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];nfo: deoxyribonuclease IV [EC:3.1.21.2]
K01182 900.0 811.0 549.0 514.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];E3.2.1.10: oligo-1,6-glucosidase [EC:3.2.1.10]
K01186 0.0 0.0 387.0 337.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];NEU1: sialidase-1 [EC:3.2.1.18]
K01190 5103.0 4494.0 6574.0 6122.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];lacZ: beta-galactosidase [EC:3.2.1.23]
K01191 0.0 0.0 864.0 848.0 Metabolism;Glycan biosynthesis and metabolism;00511 Other glycan degradation [PATH:ko00511];E3.2.1.24: alpha-mannosidase [EC:3.2.1.24]
K01192 0.0 0.0 470.0 423.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];E3.2.1.25, MANBA, manB: beta-mannosidase [EC:3.2.1.25]
K01196 0.0 0.0 203.0 205.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];AGL: glycogen debranching enzyme [EC:2.4.1.25 3.2.1.33]
K01197 178.0 0.0 359.0 320.0 Metabolism;Glycan biosynthesis and metabolism;00531 Glycosaminoglycan degradation [PATH:ko00531];hya: hyaluronoglucosaminidase [EC:3.2.1.35]
K01199 0.0 0.0 402.0 382.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E3.2.1.39: glucan endo-1,3-beta-D-glucosidase [EC:3.2.1.39]
K01201 0.0 0.0 0.0 459.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];E3.2.1.45, GBA, srfJ: glucosylceramidase [EC:3.2.1.45]
K01203 495.0 455.0 319.0 275.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];SI: sucrase-isomaltase / oligo-1,6-glucosidase [EC:3.2.1.48 3.2.1.10]
K01205 0.0 0.0 576.0 535.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];NAGLU: alpha-N-acetylglucosaminidase [EC:3.2.1.50]
K01206 1175.0 1016.0 2548.0 2413.0 Metabolism;Glycan biosynthesis and metabolism;00511 Other glycan degradation [PATH:ko00511];FUCA: alpha-L-fucosidase [EC:3.2.1.51]
K01209 0.0 0.0 1978.0 1892.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];E3.2.1.55, abfA: alpha-N-arabinofuranosidase [EC:3.2.1.55]
K01210 0.0 0.0 688.0 588.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E3.2.1.58: glucan 1,3-beta-glucosidase [EC:3.2.1.58]
K01220 0.0 0.0 29.0 31.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];E3.2.1.85, lacG: 6-phospho-beta-galactosidase [EC:3.2.1.85]
K01223 1045.0 903.0 396.0 404.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];E3.2.1.86B, bglA: 6-phospho-beta-glucosidase [EC:3.2.1.86]
K01232 189.0 178.0 61.0 63.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E3.2.1.122, glvA: maltose-6'-phosphate glucosidase [EC:3.2.1.122]
K01237 0.0 0.0 0.0 2.0 Metabolism;Amino acid metabolism;00380 Tryptophan metabolism [PATH:ko00380];E3.2.1.147: myrosinase [EC:3.2.1.147]
K01241 0.0 34.0 75.0 72.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];amn: AMP nucleosidase [EC:3.2.2.4]
K01246 0.0 0.0 198.0 0.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];tag: DNA-3-methyladenine glycosylase I [EC:3.2.2.20]
K01251 0.0 0.0 543.0 559.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];E3.3.1.1, ahcY: adenosylhomocysteinase [EC:3.3.1.1]
K01256 0.0 0.0 365.0 323.0 Metabolism;Metabolism of other amino acids;00480 Glutathione metabolism [PATH:ko00480];pepN: aminopeptidase N [EC:3.4.11.2]
K01278 691.0 631.0 1535.0 1430.0 Organismal Systems;Digestive system;04974 Protein digestion and absorption [PATH:ko04974];DPP4: dipeptidyl-peptidase 4 [EC:3.4.14.5]
K01352 856.0 777.0 1839.0 1856.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GZMA: granzyme A [EC:3.4.21.78]
K01353 282.0 217.0 598.0 617.0 Human Diseases;Cancers;05202 Transcriptional misregulation in cancers [PATH:ko05202];GZMB: granzyme B [EC:3.4.21.79]
K01424 0.0 0.0 1007.0 0.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E3.5.1.1, ansA, ansB: L-asparaginase [EC:3.5.1.1]
K01425 0.0 0.0 590.0 559.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];glsA, GLS: glutaminase [EC:3.5.1.2]
K01428 362.0 316.0 1239.0 1223.0 Human Diseases;Infectious diseases;05120 Epithelial cell signaling in Helicobacter pylori infection [PATH:ko05120];ureC: urease subunit alpha [EC:3.5.1.5]
K01433 0.0 0.0 136.0 0.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];purU: formyltetrahydrofolate deformylase [EC:3.5.1.10]
K01443 0.0 0.0 531.0 516.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];E3.5.1.25, nagA, AMDHD2: N-acetylglucosamine-6-phosphate deacetylase [EC:3.5.1.25]
K01468 2013.0 1786.0 1982.0 1931.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];E3.5.2.7, hutI: imidazolonepropionase [EC:3.5.2.7]
K01470 1992.0 1766.0 1371.0 1319.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E3.5.2.10: creatinine amidohydrolase [EC:3.5.2.10]
K01477 0.0 0.0 507.0 0.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E3.5.3.4, ALLC, alc: allantoicase [EC:3.5.3.4]
K01484 0.0 0.0 3.0 0.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];astB: succinylarginine dihydrolase [EC:3.5.3.23]
K01491 0.0 0.0 832.0 0.0 Metabolism;Energy metabolism;00720 Carbon fixation pathways in prokaryotes [PATH:ko00720];folD: methylenetetrahydrofolate dehydrogenase (NADP+) / methenyltetrahydrofolate cyclohydrolase [EC:1.5.1.5 3.5.4.9]
K01492 122.0 110.0 152.0 149.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E2.1.2.3: phosphoribosylaminoimidazolecarboxamide formyltransferase [EC:2.1.2.3]
K01493 540.0 529.0 431.0 440.0 Metabolism;Nucleotide metabolism;00240 Pyrimidine metabolism [PATH:ko00240];comEB: dCMP deaminase [EC:3.5.4.12]
K01505 504.0 462.0 754.0 729.0 Metabolism;Carbohydrate metabolism;00640 Propanoate metabolism [PATH:ko00640];E3.5.99.7: 1-aminocyclopropane-1-carboxylate deaminase [EC:3.5.99.7]
K01507 0.0 0.0 2106.0 2004.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ppa: inorganic pyrophosphatase [EC:3.6.1.1]
K01543 0.0 0.0 1374.0 1305.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATP4B: H+/K+-exchanging ATPase beta polypeptide [EC:3.6.3.10]
K01546 150.0 0.0 218.0 185.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];kdpA: K+-transporting ATPase ATPase A chain [EC:3.6.3.12]
K01547 0.0 0.0 1009.0 950.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];kdpB: K+-transporting ATPase ATPase B chain [EC:3.6.3.12]
K01548 0.0 0.0 70.0 68.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];kdpC: K+-transporting ATPase ATPase C chain [EC:3.6.3.12]
K01558 0.0 0.0 1.0 0.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];WNT16: wingless-type MMTV integration site family, member 16
K01571 1303.0 1121.0 0.0 0.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E4.1.1.3A, oadA: oxaloacetate decarboxylase, alpha subunit [EC:4.1.1.3]
K01572 1205.0 996.0 1289.0 1244.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E4.1.1.3B, oadB: oxaloacetate decarboxylase, beta subunit [EC:4.1.1.3]
K01573 5.0 0.0 0.0 0.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E4.1.1.3G, oadG: oxaloacetate decarboxylase, gamma subunit [EC:4.1.1.3]
K01575 0.0 0.0 11.0 13.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];E4.1.1.5, alsD: acetolactate decarboxylase [EC:4.1.1.5]
K01579 198.0 185.0 317.0 310.0 Metabolism;Metabolism of cofactors and vitamins;00770 Pantothenate and CoA biosynthesis [PATH:ko00770];panD: aspartate 1-decarboxylase [EC:4.1.1.11]
K01580 274.0 237.0 824.0 761.0 Human Diseases;Endocrine and metabolic diseases;04940 Type I diabetes mellitus [PATH:ko04940];E4.1.1.15, gadB, gadA, GAD: glutamate decarboxylase [EC:4.1.1.15]
K01581 0.0 0.0 65.0 62.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E4.1.1.17, ODC1, speC, speF: ornithine decarboxylase [EC:4.1.1.17]
K01585 603.0 552.0 960.0 875.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];E4.1.1.19S, speA: arginine decarboxylase [EC:4.1.1.19]
K01586 1343.0 1233.0 807.0 777.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];lysA: diaminopimelate decarboxylase [EC:4.1.1.20]
K01588 0.0 0.0 0.0 393.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];purE: 5-(carboxyamino)imidazole ribonucleotide mutase [EC:5.4.99.18]
K01591 909.0 0.0 777.0 792.0 Metabolism;Nucleotide metabolism;00240 Pyrimidine metabolism [PATH:ko00240];pyrF: orotidine-5'-phosphate decarboxylase [EC:4.1.1.23]
K01597 0.0 0.0 25.0 23.0 Metabolism;Metabolism of terpenoids and polyketides;00900 Terpenoid backbone biosynthesis [PATH:ko00900];MVD, mvaD: diphosphomevalonate decarboxylase [EC:4.1.1.33]
K01604 0.0 0.0 10.0 0.0 Metabolism;Carbohydrate Metabolism;00640 Propanoate metabolism [PATH:ko00640];PCCB, pccB: propionyl-CoA carboxylase beta chain [EC:6.4.1.3]
K01605 84.0 66.0 184.0 171.0 Metabolism;Carbohydrate Metabolism;00640 Propanoate metabolism [PATH:ko00640];mmdA: methylmalonyl-CoA decarboxylase alpha chain [EC:4.1.1.41]
K01607 0.0 0.0 241.0 199.0 Metabolism;Xenobiotics biodegradation and metabolism;00362 Benzoate degradation [PATH:ko00362];pcaC: 4-carboxymuconolactone decarboxylase [EC:4.1.1.44]
K01609 2049.0 1825.0 1573.0 1516.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];trpC: indole-3-glycerol phosphate synthase [EC:4.1.1.48]
K01610 2759.0 2542.0 2453.0 2371.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];E4.1.1.49, pckA: phosphoenolpyruvate carboxykinase (ATP) [EC:4.1.1.49]
K01611 1953.0 1710.0 1396.0 1358.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];E4.1.1.50, speD: S-adenosylmethionine decarboxylase [EC:4.1.1.50]
K01615 0.0 0.0 523.0 0.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];E4.1.1.70: glutaconyl-CoA decarboxylase [EC:4.1.1.70]
K01617 0.0 1.0 0.0 0.0 Metabolism;Xenobiotics biodegradation and metabolism;00362 Benzoate degradation [PATH:ko00362];E4.1.1.77: 4-oxalocrotonate decarboxylase [EC:4.1.1.77]
K01621 0.0 0.0 108.0 110.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];E4.1.2.9: phosphoketolase [EC:4.1.2.9]
K01623 91.0 79.0 114.0 112.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];ALDO: fructose-bisphosphate aldolase, class I [EC:4.1.2.13]
K01624 1460.0 1284.0 1334.0 1294.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];FBA, fbaA: fructose-bisphosphate aldolase, class II [EC:4.1.2.13]
K01625 0.0 0.0 541.0 526.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];eda: 2-dehydro-3-deoxyphosphogluconate aldolase / 4-hydroxy-2-oxoglutarate aldolase [EC:4.1.2.14 4.1.3.16]
K01627 0.0 0.0 546.0 503.0 Metabolism;Glycan biosynthesis and metabolism;00540 Lipopolysaccharide biosynthesis [PATH:ko00540];kdsA: 2-dehydro-3-deoxyphosphooctonate aldolase (KDO 8-P synthase) [EC:2.5.1.55]
K01629 233.0 225.0 236.0 172.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];rhaD: rhamnulose-1-phosphate aldolase [EC:4.1.2.19]
K01632 98.0 86.0 38.0 39.0 Metabolism;Energy metabolism;00710 Carbon fixation in photosynthetic organisms [PATH:ko00710];E4.1.2.22: fructose-6-phosphate phosphoketolase [EC:4.1.2.22]
K01635 0.0 0.0 25.0 34.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];lacD: tagatose 1,6-diphosphate aldolase [EC:4.1.2.40]
K01639 321.0 254.0 293.0 270.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];E4.1.3.3, nanA, NPL: N-acetylneuraminate lyase [EC:4.1.3.3]
K01641 0.0 0.0 29.0 27.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];E2.3.3.10: hydroxymethylglutaryl-CoA synthase [EC:2.3.3.10]
K01647 0.0 1004.0 523.0 504.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];CS, gltA: citrate synthase [EC:2.3.3.1]
K01649 1709.0 1564.0 1029.0 978.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];leuA: 2-isopropylmalate synthase [EC:2.3.3.13]
K01657 0.0 0.0 516.0 0.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];trpE: anthranilate synthase component I [EC:4.1.3.27]
K01661 260.0 213.0 417.0 388.0 Metabolism;Metabolism of cofactors and vitamins;00130 Ubiquinone and other terpenoid-quinone biosynthesis [PATH:ko00130];menB: naphthoate synthase [EC:4.1.3.36]
K01665 0.0 0.0 116.0 120.0 Metabolism;Metabolism of cofactors and vitamins;00790 Folate biosynthesis [PATH:ko00790];pabB: para-aminobenzoate synthetase component I [EC:2.6.1.85]
K01666 2119.0 1868.0 1921.0 1787.0 Metabolism;Amino acid metabolism;00360 Phenylalanine metabolism [PATH:ko00360];E4.1.3.39, mhpE: 4-hydroxy 2-oxovalerate aldolase [EC:4.1.3.39]
K01667 277.0 233.0 641.0 574.0 Metabolism;Amino acid metabolism;00380 Tryptophan metabolism [PATH:ko00380];tnaA: tryptophanase [EC:4.1.99.1]
K01670 1460.0 1284.0 1334.0 1292.0 Metabolism;Xenobiotics biodegradation and metabolism;00626 Naphthalene degradation [PATH:ko00626];nmsA: naphthyl-2-methylsuccinate synthase alpha subunit [EC:4.1.99.-]
K01672 0.0 0.0 117.0 116.0 Metabolism;Energy metabolism;00910 Nitrogen metabolism [PATH:ko00910];E4.2.1.1: carbonic anhydrase [EC:4.2.1.1]
K01676 613.0 508.0 1438.0 1427.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];E4.2.1.2A, fumA, fumB: fumarate hydratase, class I [EC:4.2.1.2]
K01677 1920.0 1697.0 868.0 907.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];E4.2.1.2AA, fumA: fumarate hydratase subunit alpha [EC:4.2.1.2]
K01681 1901.0 1654.0 927.0 898.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];ACO, acnA: aconitate hydratase 1 / homoaconitase [EC:4.2.1.3 4.2.1.-]
K01686 1031.0 927.0 1035.0 1012.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];uxuA: mannonate dehydratase [EC:4.2.1.8]
K01687 2055.0 1805.0 1258.0 1241.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];ilvD: dihydroxy-acid dehydratase [EC:4.2.1.9]
K01689 1584.0 1435.0 1686.0 1638.0 Environmental Information Processing;Signal transduction;04066 HIF-1 signaling pathway [PATH:ko04066];ENO, eno: enolase [EC:4.2.1.11]
K01693 917.0 0.0 961.0 911.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];E4.2.1.19, hisB: imidazoleglycerol-phosphate dehydratase [EC:4.2.1.19]
K01696 1623.0 1393.0 803.0 757.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];trpB: tryptophan synthase beta chain [EC:4.2.1.20]
K01697 2053.0 1903.0 2037.0 1998.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E4.2.1.22, CBS: cystathionine beta-synthase [EC:4.2.1.22]
K01702 3202.0 2866.0 3074.0 2986.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];LEU1: 3-isopropylmalate dehydratase [EC:4.2.1.33]
K01703 2067.0 1771.0 2217.0 2129.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];leuC: 3-isopropylmalate/(R)-2-methylmalate dehydratase large subunit [EC:4.2.1.33 4.2.1.35]
K01704 427.0 387.0 375.0 306.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];leuD: 3-isopropylmalate/(R)-2-methylmalate dehydratase small subunit [EC:4.2.1.33 4.2.1.35]
K01707 718.0 652.0 1795.0 1779.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];E4.2.1.41: 5-dehydro-4-deoxyglucarate dehydratase [EC:4.2.1.41]
K01708 0.0 0.0 19.0 0.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];garD: galactarate dehydratase [EC:4.2.1.42]
K01709 784.0 697.0 444.0 427.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];rfbG: CDP-glucose 4,6-dehydratase [EC:4.2.1.45]
K01710 2371.0 2152.0 2135.0 2096.0 Metabolism;Biosynthesis of other secondary metabolites;00521 Streptomycin biosynthesis [PATH:ko00521];E4.2.1.46, rfbB, rffG: dTDP-glucose 4,6-dehydratase [EC:4.2.1.46]
K01711 1363.0 1251.0 867.0 847.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];E4.2.1.47, gmd: GDPmannose 4,6-dehydratase [EC:4.2.1.47]
K01712 734.0 634.0 1628.0 1496.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];hutU, UROC1: urocanate hydratase [EC:4.2.1.49]
K01715 994.0 827.0 1572.0 1549.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];crt: 3-hydroxybutyryl-CoA dehydratase [EC:4.2.1.55]
K01716 605.0 552.0 190.0 166.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];fabA: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase [EC:4.2.1.59]
K01720 879.0 790.0 1850.0 1869.0 Metabolism;Carbohydrate metabolism;00640 Propanoate metabolism [PATH:ko00640];E4.2.1.79, prpD: 2-methylcitrate dehydratase [EC:4.2.1.79]
K01721 283.0 223.0 599.0 617.0 Metabolism;Amino acid metabolism;00380 Tryptophan metabolism [PATH:ko00380];E4.2.1.84: nitrile hydratase [EC:4.2.1.84]
K01723 0.0 0.0 414.0 0.0 Metabolism;Lipid metabolism;00592 alpha-Linolenic acid metabolism [PATH:ko00592];AOS: hydroperoxide dehydratase [EC:4.2.1.92]
K01730 15.0 18.0 0.0 1.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];E4.2.2.6: oligogalacturonide lyase [EC:4.2.2.6]
K01734 0.0 0.0 549.0 551.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];E4.2.3.3, mgsA: methylglyoxal synthase [EC:4.2.3.3]
K01738 0.0 0.0 970.0 910.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];cysK: cysteine synthase A [EC:2.5.1.47]
K01740 2096.0 1793.0 1353.0 1340.0 Metabolism;Amino acid metabolism;00270 Cysteine and methionine metabolism [PATH:ko00270];E2.5.1.49, metY: O-acetylhomoserine (thiol)-lyase [EC:2.5.1.49]
K01744 0.0 0.0 463.0 470.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];aspA: aspartate ammonia-lyase [EC:4.3.1.1]
K01745 0.0 0.0 1352.0 1305.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];hutH, HAL: histidine ammonia-lyase [EC:4.3.1.3]
K01746 0.0 0.0 2330.0 2077.0 Metabolism;Metabolism of cofactors and vitamins;00670 One carbon pool by folate [PATH:ko00670];E4.3.1.4: formiminotetrahydrofolate cyclodeaminase [EC:4.3.1.4]
K01749 0.0 0.0 1428.0 1360.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];hemC, HMBS: hydroxymethylbilane synthase [EC:2.5.1.61]
K01752 0.0 0.0 1080.0 0.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E4.3.1.17, sdaA: L-serine dehydratase [EC:4.3.1.17]
K01753 848.0 771.0 425.0 409.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];dsdA: D-serine dehydratase [EC:4.3.1.18]
K01754 2972.0 2566.0 1637.0 1525.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];E4.3.1.19, ilvA, tdcB: threonine dehydratase [EC:4.3.1.19]
K01755 1272.0 1151.0 982.0 972.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];argH, ASL: argininosuccinate lyase [EC:4.3.2.1]
K01756 1459.0 1315.0 1489.0 1421.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E4.3.2.2, purB: adenylosuccinate lyase [EC:4.3.2.2]
K01757 563.0 533.0 363.0 350.0 Metabolism;Biosynthesis of other secondary metabolites;00901 Indole alkaloid biosynthesis [PATH:ko00901];E4.3.3.2: strictosidine synthase [EC:4.3.3.2]
K01759 0.0 0.0 556.0 0.0 Environmental Information Processing;Signal transduction;04011 MAPK signaling pathway - yeast [PATH:ko04011];E4.4.1.5, GLO1, gloA: lactoylglutathione lyase [EC:4.4.1.5]
K01770 0.0 1771.0 1689.0 1630.0 Metabolism;Metabolism of terpenoids and polyketides;00900 Terpenoid backbone biosynthesis [PATH:ko00900];ispF: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase [EC:4.6.1.12]
K01771 0.0 0.0 72.0 56.0 Metabolism;Carbohydrate metabolism;00562 Inositol phosphate metabolism [PATH:ko00562];E4.6.1.13, plc: 1-phosphatidylinositol phosphodiesterase [EC:4.6.1.13]
K01772 1253.0 1151.0 3093.0 2921.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];hemH, FECH: ferrochelatase [EC:4.99.1.1]
K01784 3868.0 0.0 3462.0 3356.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];galE, GALE: UDP-glucose 4-epimerase [EC:5.1.3.2]
K01787 107.0 89.0 211.0 196.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];RENBP: N-acylglucosamine 2-epimerase [EC:5.1.3.8]
K01790 0.0 0.0 1390.0 1335.0 Metabolism;Biosynthesis of other secondary metabolites;00521 Streptomycin biosynthesis [PATH:ko00521];rfbC: dTDP-4-dehydrorhamnose 3,5-epimerase [EC:5.1.3.13]
K01791 0.0 0.0 1654.0 1690.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];wecB: UDP-N-acetylglucosamine 2-epimerase [EC:5.1.3.14]
K01792 0.0 0.0 1397.0 0.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];E5.1.3.15: glucose-6-phosphate 1-epimerase [EC:5.1.3.15]
K01793 0.0 0.0 839.0 795.0 Metabolism;Glycan biosynthesis and metabolism;00534 Glycosaminoglycan biosynthesis - heparan sulfate / heparin [PATH:ko00534];GLCE: heparosan-N-sulfate-glucuronate 5-epimerase [EC:5.1.3.17]
K01804 1305.0 1112.0 1617.0 1563.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];araA: L-arabinose isomerase [EC:5.3.1.4]
K01805 489.0 450.0 1157.0 1119.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];xylA: xylose isomerase [EC:5.3.1.5]
K01807 0.0 0.0 90.0 93.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];rpiA: ribose 5-phosphate isomerase A [EC:5.3.1.6]
K01810 1733.0 1517.0 1672.0 1675.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];GPI, pgi: glucose-6-phosphate isomerase [EC:5.3.1.9]
K01812 1001.0 924.0 1114.0 1051.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];uxaC: glucuronate isomerase [EC:5.3.1.12]
K01815 674.0 605.0 597.0 577.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];E5.3.1.17, kduI: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase [EC:5.3.1.17]
K01818 415.0 366.0 550.0 538.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];fucI: L-fucose isomerase [EC:5.3.1.25]
K01819 0.0 28.0 25.0 0.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];E5.3.1.26, lacA, lacB: galactose-6-phosphate isomerase [EC:5.3.1.26]
K01834 0.0 0.0 3062.0 2995.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];gpmA, PGAM: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase [EC:5.4.2.1]
K01839 681.0 612.0 301.0 301.0 Metabolism;Carbohydrate metabolism;00030 Pentose phosphate pathway [PATH:ko00030];deoB: phosphopentomutase [EC:5.4.2.7]
K01840 0.0 0.0 2750.0 0.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];E5.4.2.8, manB: phosphomannomutase [EC:5.4.2.8]
K01843 1498.0 1350.0 1670.0 1584.0 Metabolism;Amino acid metabolism;00310 Lysine degradation [PATH:ko00310];E5.4.3.2, kamA: lysine 2,3-aminomutase [EC:5.4.3.2]
K01847 2790.0 2516.0 4744.0 4529.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];MUT: methylmalonyl-CoA mutase [EC:5.4.99.2]
K01849 732.0 670.0 1798.0 1790.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];E5.4.99.2B, mcmA2: methylmalonyl-CoA mutase, C-terminal domain [EC:5.4.99.2]
K01850 0.0 61.0 100.0 91.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];E5.4.99.5: chorismate mutase [EC:5.4.99.5]
K01856 0.0 0.0 109.0 110.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];catB: muconate cycloisomerase [EC:5.5.1.1]
K01858 1934.0 1720.0 1928.0 1845.0 Metabolism;Biosynthesis of other secondary metabolites;00521 Streptomycin biosynthesis [PATH:ko00521];E5.5.1.4, INO1: myo-inositol-1-phosphate synthase [EC:5.5.1.4]
K01860 2477.0 2219.0 1883.0 1737.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];E5.5.1.7: chloromuconate cycloisomerase [EC:5.5.1.7]
K01866 1474.0 1386.0 1579.0 1472.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];YARS, tyrS: tyrosyl-tRNA synthetase [EC:6.1.1.1]
K01867 1314.0 0.0 1367.0 1257.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];WARS, trpS: tryptophanyl-tRNA synthetase [EC:6.1.1.2]
K01868 3136.0 2773.0 2672.0 2673.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];TARS, thrS: threonyl-tRNA synthetase [EC:6.1.1.3]
K01869 3360.0 2986.0 3619.0 3437.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];LARS, leuS: leucyl-tRNA synthetase [EC:6.1.1.4]
K01870 3560.0 3187.0 3746.0 3687.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];IARS, ileS: isoleucyl-tRNA synthetase [EC:6.1.1.5]
K01872 0.0 0.0 2619.0 2523.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];AARS, alaS: alanyl-tRNA synthetase [EC:6.1.1.7]
K01873 3319.0 3019.0 2981.0 2902.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];VARS, valS: valyl-tRNA synthetase [EC:6.1.1.9]
K01874 2632.0 2330.0 2554.0 2475.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];MARS, metG: methionyl-tRNA synthetase [EC:6.1.1.10]
K01875 1867.0 1635.0 1594.0 1567.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];SARS, serS: seryl-tRNA synthetase [EC:6.1.1.11]
K01876 3143.0 2759.0 2412.0 2253.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];DARS, aspS: aspartyl-tRNA synthetase [EC:6.1.1.12]
K01878 40.0 44.0 19.0 20.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];glyQ: glycyl-tRNA synthetase alpha chain [EC:6.1.1.14]
K01880 1738.0 1499.0 1872.0 1835.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];GARS, glyS1: glycyl-tRNA synthetase [EC:6.1.1.14]
K01881 1932.0 1756.0 2008.0 1963.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];PARS, proS: prolyl-tRNA synthetase [EC:6.1.1.15]
K01883 1744.0 1522.0 1708.0 1575.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];CARS, cysS: cysteinyl-tRNA synthetase [EC:6.1.1.16]
K01885 1685.0 1432.0 1435.0 1341.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];EARS, gltX: glutamyl-tRNA synthetase [EC:6.1.1.17]
K01886 1849.0 1618.0 1722.0 1716.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];QARS, glnS: glutaminyl-tRNA synthetase [EC:6.1.1.18]
K01887 0.0 0.0 2075.0 1942.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];RARS, argS: arginyl-tRNA synthetase [EC:6.1.1.19]
K01889 1025.0 923.0 1085.0 1004.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];FARSA, pheS: phenylalanyl-tRNA synthetase alpha chain [EC:6.1.1.20]
K01893 1477.0 1321.0 1709.0 1636.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];NARS, asnS: asparaginyl-tRNA synthetase [EC:6.1.1.22]
K01895 0.0 0.0 816.0 786.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];ACSS, acs: acetyl-CoA synthetase [EC:6.2.1.1]
K01902 0.0 0.0 69.0 66.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];sucD: succinyl-CoA synthetase alpha subunit [EC:6.2.1.5]
K01903 0.0 0.0 116.0 102.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];sucC: succinyl-CoA synthetase beta subunit [EC:6.2.1.5]
K01912 1029.0 919.0 673.0 615.0 Metabolism;Amino acid metabolism;00360 Phenylalanine metabolism [PATH:ko00360];paaK: phenylacetate-CoA ligase [EC:6.2.1.30]
K01914 802.0 708.0 730.0 689.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];asnA: aspartate--ammonia ligase [EC:6.3.1.1]
K01915 3962.0 3600.0 3391.0 3219.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];glnA: glutamine synthetase [EC:6.3.1.2]
K01923 1031.0 940.0 1001.0 972.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];purC: phosphoribosylaminoimidazole-succinocarboxamide synthase [EC:6.3.2.6]
K01933 1171.0 1043.0 997.0 894.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];purM: phosphoribosylformylglycinamidine cyclo-ligase [EC:6.3.3.1]
K01934 0.0 0.0 1035.0 965.0 Metabolism;Metabolism of cofactors and vitamins;00670 One carbon pool by folate [PATH:ko00670];E6.3.3.2: 5-formyltetrahydrofolate cyclo-ligase [EC:6.3.3.2]
K01936 290.0 245.0 131.0 102.0 Metabolism;Nucleotide Metabolism;00230 Purine metabolism [PATH:ko00230];E6.3.5.2, guaA: GMP synthase (glutamine-hydrolysing) [EC:6.3.5.2]
K01937 2207.0 1974.0 2013.0 1917.0 Metabolism;Nucleotide metabolism;00240 Pyrimidine metabolism [PATH:ko00240];E6.3.4.2, pyrG: CTP synthase [EC:6.3.4.2]
K01938 1367.0 1222.0 687.0 679.0 Metabolism;Energy metabolism;00720 Carbon fixation pathways in prokaryotes [PATH:ko00720];fhs: formate--tetrahydrofolate ligase [EC:6.3.4.3]
K01939 0.0 0.0 1504.0 1420.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E6.3.4.4, purA: adenylosuccinate synthase [EC:6.3.4.4]
K01940 4295.0 3844.0 4031.0 3905.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];E6.3.4.5, argG: argininosuccinate synthase [EC:6.3.4.5]
K01942 1312.0 1157.0 1268.0 1220.0 Metabolism;Metabolism of cofactors and vitamins;00780 Biotin metabolism [PATH:ko00780];HLCS: biotin--protein ligase [EC:6.3.4.9 6.3.4.10 6.3.4.11 6.3.4.15]
K01945 1770.0 1574.0 2066.0 2030.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];purD: phosphoribosylamine--glycine ligase [EC:6.3.4.13]
K01947 243.0 179.0 98.0 106.0 Metabolism;Metabolism of cofactors and vitamins;00770 Pantothenate and CoA biosynthesis [PATH:ko00770];birA-coaX: biotin-[acetyl-CoA-carboxylase] ligase / type III pantothenate kinase [EC:6.3.4.15 2.7.1.33]
K01951 2217.0 1963.0 1740.0 1701.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E6.3.5.2, guaA: GMP synthase (glutamine-hydrolysing) [EC:6.3.5.2]
K01952 3331.0 2945.0 2995.0 2746.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];E6.3.5.3, purL: phosphoribosylformylglycinamidine synthase [EC:6.3.5.3]
K01955 5769.0 5125.0 5980.0 5733.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];carB, CPA2: carbamoyl-phosphate synthase large subunit [EC:6.3.5.5]
K01956 0.0 1269.0 1412.0 1361.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];carA, CPA1: carbamoyl-phosphate synthase small subunit [EC:6.3.5.5]
K01958 0.0 0.0 966.0 925.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];PC, pyc: pyruvate carboxylase [EC:6.4.1.1]
K01959 470.0 423.0 750.0 705.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];E6.4.1.1A, pycA: pyruvate carboxylase subunit A [EC:6.4.1.1]
K01960 0.0 0.0 0.0 403.0 Metabolism;Carbohydrate metabolism;00020 Citrate cycle (TCA cycle) [PATH:ko00020];E6.4.1.1B, pycB: pyruvate carboxylase subunit B [EC:6.4.1.1]
K01961 738.0 0.0 582.0 591.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];accC: acetyl-CoA carboxylase, biotin carboxylase subunit [EC:6.4.1.2 6.3.4.14]
K01966 0.0 1360.0 1418.0 1379.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];PCCB, pccB: propionyl-CoA carboxylase beta chain [EC:6.4.1.3]
K01977 4.0 8.0 0.0 4.0 Genetic Information Processing;RNA family;03100 Non-coding RNAs;16SrRNA, rrs: 16S ribosomal RNA
K02000 0.0 0.0 146.0 0.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];proV: glycine betaine/proline transport system ATP-binding protein [EC:3.6.3.32]
K02001 0.0 0.0 108.0 105.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];proW: glycine betaine/proline transport system permease protein
K02002 0.0 0.0 91.0 80.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];proX: glycine betaine/proline transport system substrate-binding protein
K02036 0.0 0.0 340.0 386.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];pstB: phosphate transport system ATP-binding protein [EC:3.6.3.27]
K02090 277.0 231.0 640.0 574.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];CDK5: cyclin-dependent kinase 5 [EC:2.7.11.22]
K02091 0.0 14.0 0.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];CDK6: cyclin-dependent kinase 6 [EC:2.7.11.22]
K02094 0.0 19.0 9.0 8.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];apcC: phycobilisome core linker protein
K02095 0.0 0.0 1040.0 978.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];apcD: allophycocyanin-B
K02097 0.0 0.0 0.0 1.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];apcF: phycobilisome core component
K02108 0.0 0.0 943.0 899.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF0A, atpB: F-type H+-transporting ATPase subunit a [EC:3.6.3.14]
K02110 1028.0 912.0 914.0 866.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF0C, atpE: F-type H+-transporting ATPase subunit c [EC:3.6.3.14]
K02111 2484.0 2169.0 2323.0 2183.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF1A, atpA: F-type H+-transporting ATPase subunit alpha [EC:3.6.3.14]
K02112 1766.0 1578.0 1266.0 1231.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF1B, atpD: F-type H+-transporting ATPase subunit beta [EC:3.6.3.14]
K02114 2478.0 2225.0 2745.0 2701.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF1E, atpC: F-type H+-transporting ATPase subunit epsilon [EC:3.6.3.14]
K02115 4588.0 4164.0 3693.0 3488.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPF1G, atpG: F-type H+-transporting ATPase subunit gamma [EC:3.6.3.14]
K02117 829.0 744.0 1293.0 1247.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPVA, ntpA: V-type H+-transporting ATPase subunit A [EC:3.6.3.14]
K02118 556.0 524.0 815.0 769.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPVB, ntpB: V-type H+-transporting ATPase subunit B [EC:3.6.3.14]
K02119 1541.0 1374.0 1684.0 1652.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPVC, ntpC: V-type H+-transporting ATPase subunit C [EC:3.6.3.14]
K02120 2940.0 2515.0 2609.0 2526.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ATPVD, ntpD: V-type H+-transporting ATPase subunit D [EC:3.6.3.14]
K02177 63.0 0.0 171.0 166.0 Organismal Systems;Development;04320 Dorso-ventral axis formation [PATH:ko04320];BRU: bruno
K02187 0.0 0.0 118.0 128.0 Cellular Processes;Cell growth and death;04115 p53 signaling pathway [PATH:ko04115];CASP3: caspase 3 [EC:3.4.22.56]
K02189 447.0 384.0 408.0 392.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];cbiG: cobalt-precorrin 5A hydrolase [EC:3.7.1.12]
K02203 243.0 178.0 94.0 104.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];thrH: phosphoserine / homoserine phosphotransferase [EC:3.1.3.3 2.7.1.39]
K02209 0.0 0.0 0.0 1.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];MCM5, CDC46: DNA replication licensing factor MCM5 [EC:3.6.4.12]
K02218 719.0 654.0 606.0 567.0 Environmental Information Processing;Signal transduction;04340 Hedgehog signaling pathway [PATH:ko04340];CSNK1, CK1: casein kinase 1 [EC:2.7.11.1]
K02222 0.0 0.0 832.0 786.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];SFRP5: secreted frizzled-related protein 5
K02228 567.0 536.0 363.0 351.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];cobF: precorrin-6A synthase [EC:2.1.1.152]
K02230 0.0 0.0 1117.0 1030.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];cobN: cobaltochelatase CobN [EC:6.6.1.2]
K02256 1528.0 0.0 1648.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];COX1: cytochrome c oxidase subunit 1 [EC:1.9.3.1]
K02261 214.0 0.0 726.0 718.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];COX2: cytochrome c oxidase subunit 2
K02262 503.0 0.0 328.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];COX3: cytochrome c oxidase subunit 3
K02297 808.0 722.0 269.0 280.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];cyoA: cytochrome o ubiquinol oxidase subunit II [EC:1.10.3.-]
K02320 869.0 742.0 486.0 450.0 Genetic Information Processing;Replication and repair;03030 DNA replication [PATH:ko03030];POLA1: DNA polymerase alpha subunit A [EC:2.7.7.7]
K02337 0.0 0.0 3661.0 3472.0 Genetic Information Processing;Replication and repair;03030 DNA replication [PATH:ko03030];DPO3A1, dnaE: DNA polymerase III subunit alpha [EC:2.7.7.7]
K02358 1838.0 1664.0 1878.0 1888.0 Organismal Systems;Environmental adaptation;04626 Plant-pathogen interaction [PATH:ko04626];tuf, TUFM: elongation factor Tu
K02361 0.0 0.0 145.0 137.0 Metabolism;Metabolism of cofactors and vitamins;00130 Ubiquinone and other terpenoid-quinone biosynthesis [PATH:ko00130];entC: isochorismate synthase [EC:5.4.4.2]
K02371 504.0 0.0 327.0 0.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];fabK: enoyl-[acyl-carrier protein] reductase II [EC:1.3.1.-]
K02372 789.0 738.0 1103.0 0.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];fabZ: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase [EC:4.2.1.59]
K02377 906.0 782.0 735.0 699.0 Metabolism;Carbohydrate metabolism;00051 Fructose and mannose metabolism [PATH:ko00051];E1.1.1.271, fcl: GDP-L-fucose synthase [EC:1.1.1.271]
K02400 0.0 1439.0 0.0 445.0 Cellular Processes;Cell motility;02040 Flagellar assembly [PATH:ko02040];flhA: flagellar biosynthesis protein FlhA
K02408 0.0 0.0 656.0 581.0 Cellular Processes;Cell motility;02040 Flagellar assembly [PATH:ko02040];fliE: flagellar hook-basal body complex protein FliE
K02410 840.0 0.0 0.0 0.0 Cellular Processes;Cell motility;02030 Bacterial chemotaxis [PATH:ko02030];fliG: flagellar motor switch protein FliG
K02412 988.0 840.0 0.0 0.0 Cellular Processes;Cell motility;02040 Flagellar assembly [PATH:ko02040];fliI: flagellum-specific ATP synthase [EC:3.6.3.14]
K02432 0.0 0.0 385.0 355.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];FZD1_7, fz: frizzled 1/7
K02433 0.0 0.0 0.0 338.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];gatA: aspartyl-tRNA(Asn)/glutamyl-tRNA (Gln) amidotransferase subunit A [EC:6.3.5.6 6.3.5.7]
K02458 0.0 0.0 78.0 90.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];gspI: general secretion pathway protein I
K02472 393.0 363.0 711.0 693.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];wecC: UDP-N-acetyl-D-mannosaminuronic acid dehydrogenase [EC:1.1.1.336]
K02474 843.0 740.0 925.0 928.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];wbpO: UDP-N-acetyl-D-galactosamine dehydrogenase [EC:1.1.1.-]
K02491 1448.0 1328.0 1038.0 1001.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];kinA: two-component system, sporulation sensor kinase A [EC:2.7.13.3]
K02500 703.0 616.0 388.0 396.0 Metabolism;Amino acid metabolism;00340 Histidine metabolism [PATH:ko00340];hisF: cyclase [EC:4.1.3.-]
K02527 0.0 0.0 518.0 528.0 Metabolism;Glycan biosynthesis and metabolism;00540 Lipopolysaccharide biosynthesis [PATH:ko00540];kdtA, waaA: 3-deoxy-D-manno-octulosonic-acid transferase [EC:2.4.99.12 2.4.99.13 2.4.99.14 2.4.99.15]
K02551 0.0 0.0 391.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00130 Ubiquinone and other terpenoid-quinone biosynthesis [PATH:ko00130];menD: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase [EC:2.2.1.9]
K02564 696.0 654.0 1458.0 1370.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];nagB, GNPDA: glucosamine-6-phosphate deaminase [EC:3.5.99.6]
K02569 327.0 258.0 0.0 0.0 Metabolism;Energy metabolism;00910 Nitrogen metabolism [PATH:ko00910];napC: cytochrome c-type protein NapC
K02570 0.0 0.0 2235.0 2053.0 Metabolism;Energy Metabolism;00910 Nitrogen metabolism [PATH:ko00910];napG: ferredoxin-type protein NapG
K02571 0.0 0.0 2.0 0.0 Metabolism;Energy Metabolism;00910 Nitrogen metabolism [PATH:ko00910];napF: ferredoxin-type protein NapF
K02576 0.0 0.0 0.0 4.0 Metabolism;Glycan biosynthesis and metabolism;00534 Glycosaminoglycan biosynthesis - heparan sulfate / heparin [PATH:ko00534];NDST1: heparan sulfate N-deacetylase/N-sulfotransferase NDST1 [EC:3.1.1.- 2.8.2.-]
K02578 0.0 1.0 0.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00534 Glycosaminoglycan biosynthesis - heparan sulfate / heparin [PATH:ko00534];NDST3: heparan sulfate N-deacetylase/N-sulfotransferase NDST3 [EC:3.1.1.- 2.8.2.-]
K02580 130.0 131.0 40.0 0.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];NFKB1: nuclear factor NF-kappa-B p105 subunit
K02619 0.0 0.0 57.0 55.0 Metabolism;Metabolism of cofactors and vitamins;00790 Folate biosynthesis [PATH:ko00790];pabC: 4-amino-4-deoxychorismate lyase [EC:4.1.3.38]
K02626 0.0 0.0 33.0 33.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];pdaD: arginine decarboxylase [EC:4.1.1.19]
K02651 0.0 0.0 52.0 42.0 Cellular Processes;Cell growth and death;04112 Cell cycle - Caulobacter [PATH:ko04112];flp, pilA: pilus assembly protein Flp/PilA
K02659 39.0 0.0 0.0 0.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];pilI: twitching motility protein PilI
K02711 0.0 0.0 1.0 0.0 Metabolism;Energy metabolism;00195 Photosynthesis [PATH:ko00195];psbJ: photosystem II PsbJ protein
K02750 5065.0 4463.0 6548.0 6112.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Arb-EIIC, glvC: PTS system, arbutin-like IIC component
K02756 0.0 0.0 690.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Bgl-EIIB, bglF: PTS system, beta-glucosides-specific IIB component [EC:2.7.1.69]
K02759 0.0 0.0 354.0 330.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Cel-EIIA, celC: PTS system, cellobiose-specific IIA component [EC:2.7.1.69]
K02761 0.0 0.0 233.0 214.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Cel-EIIC, celB: PTS system, cellobiose-specific IIC component
K02763 738.0 610.0 0.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Dgl-EIIA, gamP: PTS system, D-glucosamine-specific IIA component [EC:2.7.1.69]
K02764 0.0 0.0 2348.0 2149.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Dgl-EIIB, gamP: PTS system, D-glucosamine-specific IIB component [EC:2.7.1.69]
K02765 411.0 348.0 113.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Dgl-EIIC, gamP: PTS system, D-glucosamine-specific IIC component
K02770 0.0 0.0 0.0 242.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Fru-EIIC, fruA: PTS system, fructose-specific IIC component
K02773 0.0 0.0 0.0 5.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Gat-EIIA, gatA: PTS system, galactitol-specific IIA component [EC:2.7.1.69]
K02775 348.0 304.0 356.0 322.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Gat-EIIC, gatC: PTS system, galactitol-specific IIC component
K02778 0.0 0.0 81.0 87.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Glc-EIIB, ptsG: PTS system, glucose-specific IIB component [EC:2.7.1.69]
K02779 0.0 0.0 79.0 85.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Glc-EIIC, ptsG: PTS system, glucose-specific IIC component
K02781 0.0 0.0 6.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Gut-EIIA, srlB: PTS system, glucitol/sorbitol-specific IIA component [EC:2.7.1.69]
K02783 0.0 0.0 0.0 28.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Gut-EIIC, srlA: PTS system, glucitol/sorbitol-specific IIC component
K02786 0.0 0.0 0.0 7.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Lac-EIIA, lacF: PTS system, lactose-specific IIA component [EC:2.7.1.69]
K02787 0.0 0.0 19.0 27.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Lac-EIIB, lacE: PTS system, lactose-specific IIB component [EC:2.7.1.69]
K02788 0.0 0.0 21.0 29.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Lac-EIIC, lacE: PTS system, lactose-specific IIC component
K02793 0.0 0.0 0.0 63.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Man-EIIA, manX: PTS system, mannose-specific IIA component [EC:2.7.1.69]
K02794 0.0 0.0 109.0 92.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Man-EIIB, manX: PTS system, mannose-specific IIB component [EC:2.7.1.69]
K02795 0.0 0.0 129.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Man-EIIC, manY: PTS system, mannose-specific IIC component
K02796 0.0 0.0 131.0 121.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Man-EIID, manZ: PTS system, mannose-specific IID component
K02804 0.0 262.0 0.0 0.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Nag-EIIC, nagE: PTS system, N-acetylglucosamine-specific IIC component
K02808 0.0 0.0 113.0 98.0 Environmental Information Processing;Membrane transport;02060 Phosphotransferase system (PTS) [PATH:ko02060];PTS-Scr-EIIA, scrA: PTS system, sucrose-specific IIA component [EC:2.7.1.69]
K02858 738.0 621.0 876.0 879.0 Metabolism;Metabolism of cofactors and vitamins;00740 Riboflavin metabolism [PATH:ko00740];ribB, RIB3: 3,4-dihydroxy 2-butanone 4-phosphate synthase [EC:4.1.99.12]
K02863 1015.0 929.0 1118.0 1071.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L1, rplA: large subunit ribosomal protein L1
K02867 634.0 529.0 587.0 659.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L11, rplK: large subunit ribosomal protein L11
K02871 638.0 626.0 590.0 616.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L13, rplM: large subunit ribosomal protein L13
K02874 573.0 506.0 529.0 572.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L14, rplN: large subunit ribosomal protein L14
K02878 0.0 0.0 893.0 823.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L16, rplP: large subunit ribosomal protein L16
K02880 69.0 55.0 285.0 315.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L17e, RPL17: large subunit ribosomal protein L17e
K02883 692.0 620.0 305.0 307.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L18e, RPL18: large subunit ribosomal protein L18e
K02885 1686.0 1508.0 1269.0 1227.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L19e, RPL19: large subunit ribosomal protein L19e
K02886 3164.0 2866.0 2995.0 2793.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L2, rplB: large subunit ribosomal protein L2
K02887 485.0 463.0 0.0 435.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L20, rplT: large subunit ribosomal protein L20
K02889 1296.0 1160.0 1134.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L21e, RPL21: large subunit ribosomal protein L21e
K02893 289.0 0.0 477.0 458.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L23Ae, RPL23A: large subunit ribosomal protein L23Ae
K02894 3331.0 2945.0 2986.0 2745.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L23e, RPL23: large subunit ribosomal protein L23e
K02895 0.0 0.0 1526.0 1418.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L24, rplX: large subunit ribosomal protein L24
K02899 865.0 709.0 731.0 644.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L27, rpmA: large subunit ribosomal protein L27
K02900 891.0 827.0 959.0 918.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L27Ae, RPL27A: large subunit ribosomal protein L27Ae
K02901 1448.0 1301.0 1473.0 1413.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L27e, RPL27: large subunit ribosomal protein L27e
K02902 0.0 0.0 1619.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L28, rpmB: large subunit ribosomal protein L28
K02903 122.0 110.0 153.0 151.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L28e, RPL28: large subunit ribosomal protein L28e
K02906 1351.0 1188.0 1228.0 1204.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L3, rplC: large subunit ribosomal protein L3
K02913 0.0 830.0 831.0 815.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L33, rpmG: large subunit ribosomal protein L33
K02919 1931.0 1797.0 1919.0 1860.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L36, rpmJ: large subunit ribosomal protein L36
K02927 0.0 1.0 0.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L40e, RPL40: large subunit ribosomal protein L40e
K02929 0.0 0.0 123.0 119.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L44e, RPL44: large subunit ribosomal protein L44e
K02931 994.0 867.0 918.0 878.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L5, rplE: large subunit ribosomal protein L5
K02932 0.0 0.0 11.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L5e, RPL5: large subunit ribosomal protein L5e
K02933 921.0 801.0 731.0 711.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L6, rplF: large subunit ribosomal protein L6
K02940 2216.0 1963.0 1734.0 1697.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-L9e, RPL9: large subunit ribosomal protein L9e
K02942 0.0 0.0 18.0 24.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-LP1, RPLP1: large subunit ribosomal protein LP1
K02948 488.0 482.0 533.0 532.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S11, rpsK: small subunit ribosomal protein S11
K02949 1100.0 998.0 2481.0 2391.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S11e, RPS11: small subunit ribosomal protein S11e
K02950 470.0 422.0 539.0 526.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S12, rpsL: small subunit ribosomal protein S12
K02952 556.0 521.0 523.0 525.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S13, rpsM: small subunit ribosomal protein S13
K02953 3407.0 2972.0 2667.0 2623.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S13e, RPS13: small subunit ribosomal protein S13e
K02954 245.0 218.0 323.0 351.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S14, rpsN: small subunit ribosomal protein S14
K02955 0.0 0.0 785.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S14e, RPS14: small subunit ribosomal protein S14e
K02956 1796.0 1597.0 1729.0 1704.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S15, rpsO: small subunit ribosomal protein S15
K02957 4429.0 4006.0 4885.0 4784.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S15Ae, RPS15A: small subunit ribosomal protein S15Ae
K02958 5273.0 4681.0 5806.0 5481.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S15e, RPS15: small subunit ribosomal protein S15e
K02959 0.0 0.0 507.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S16, rpsP: small subunit ribosomal protein S16
K02963 0.0 0.0 0.0 290.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S18, rpsR: small subunit ribosomal protein S18
K02965 353.0 310.0 329.0 348.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S19, rpsS: small subunit ribosomal protein S19
K02967 968.0 845.0 971.0 926.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S2, rpsB: small subunit ribosomal protein S2
K02982 972.0 842.0 993.0 1025.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S3, rpsC: small subunit ribosomal protein S3
K02986 828.0 717.0 755.0 723.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S4, rpsD: small subunit ribosomal protein S4
K02988 713.0 647.0 758.0 747.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S5, rpsE: small subunit ribosomal protein S5
K02990 0.0 0.0 414.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S6, rpsF: small subunit ribosomal protein S6
K02992 714.0 633.0 781.0 702.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S7, rpsG: small subunit ribosomal protein S7
K02994 634.0 604.0 610.0 617.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S8, rpsH: small subunit ribosomal protein S8
K02996 530.0 443.0 481.0 0.0 Genetic Information Processing;Translation;03010 Ribosome [PATH:ko03010];RP-S9, rpsI: small subunit ribosomal protein S9
K03011 0.0 0.0 3658.0 3468.0 Genetic Information Processing;Transcription;03020 RNA polymerase [PATH:ko03020];RPB3, POLR2C: DNA-directed RNA polymerase II subunit RPB3
K03012 0.0 0.0 998.0 983.0 Genetic Information Processing;Transcription;03020 RNA polymerase [PATH:ko03020];RPB4, POLR2D: DNA-directed RNA polymerase II subunit RPB4
K03039 2674.0 2443.0 2933.0 2752.0 Genetic Information Processing;Folding, sorting and degradation;03050 Proteasome [PATH:ko03050];PSMD13, RPN9: 26S proteasome regulatory subunit N9
K03040 1619.0 1416.0 1435.0 1384.0 Genetic Information Processing;Transcription;03020 RNA polymerase [PATH:ko03020];rpoA: DNA-directed RNA polymerase subunit alpha [EC:2.7.7.6]
K03043 4445.0 4024.0 4893.0 4793.0 Genetic Information Processing;Transcription;03020 RNA polymerase [PATH:ko03020];rpoB: DNA-directed RNA polymerase subunit beta [EC:2.7.7.6]
K03046 5275.0 4681.0 5811.0 5482.0 Genetic Information Processing;Transcription;03020 RNA polymerase [PATH:ko03020];rpoC: DNA-directed RNA polymerase subunit beta' [EC:2.7.7.6]
K03070 3652.0 3188.0 3267.0 3144.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];secA: preprotein translocase subunit SecA
K03077 1478.0 1362.0 1523.0 1473.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];ulaF, sgaE: L-ribulose-5-phosphate 4-epimerase [EC:5.1.3.4]
K03080 14.0 12.0 0.0 0.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];sgbE: L-ribulose-5-phosphate 4-epimerase [EC:5.1.3.4]
K03082 0.0 0.0 86.0 81.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];sgbU: hexulose-6-phosphate isomerase [EC:5.-.-.-]
K03084 0.0 0.0 471.0 484.0 Environmental Information Processing;Signal transduction;04070 Phosphatidylinositol signaling system [PATH:ko04070];SHIP1, INPP5D: phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase 1 [EC:3.1.3.86]
K03092 2904.0 2604.0 3524.0 3229.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];SIG54, rpoN: RNA polymerase sigma-54 factor
K03097 0.0 0.0 0.0 1.0 Cellular Processes;Cell communication;04520 Adherens junction [PATH:ko04520];CSNK2A: casein kinase II subunit alpha [EC:2.7.11.1]
K03102 0.0 0.0 117.0 127.0 Organismal Systems;Development;04320 Dorso-ventral axis formation [PATH:ko04320];SQD: squid
K03104 0.0 0.0 297.0 281.0 Genetic Information Processing;Folding, sorting and degradation;03060 Protein export [PATH:ko03060];SRP14: signal recognition particle subunit SRP14
K03105 335.0 291.0 273.0 261.0 Genetic Information Processing;Folding, sorting and degradation;03060 Protein export [PATH:ko03060];SRP19: signal recognition particle subunit SRP19
K03106 0.0 0.0 1582.0 1530.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];SRP54, ffh: signal recognition particle subunit SRP54
K03117 0.0 0.0 1253.0 1230.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];tatB: sec-independent protein translocase protein TatB
K03126 5474.0 4857.0 5268.0 5056.0 Genetic Information Processing;Transcription;03022 Basal transcription factors [PATH:ko03022];TAF12: transcription initiation factor TFIID subunit 12
K03127 1162.0 1007.0 916.0 894.0 Genetic Information Processing;Transcription;03022 Basal transcription factors [PATH:ko03022];TAF13: transcription initiation factor TFIID subunit 13
K03128 922.0 830.0 831.0 797.0 Genetic Information Processing;Transcription;03022 Basal transcription factors [PATH:ko03022];TAF2: transcription initiation factor TFIID subunit 2
K03136 911.0 0.0 787.0 796.0 Genetic Information Processing;Transcription;03022 Basal transcription factors [PATH:ko03022];TFIIE1, GTF2E1, TFA1, tfe: transcription initiation factor TFIIE subunit alpha
K03141 848.0 800.0 892.0 830.0 Genetic Information Processing;Replication and repair;03420 Nucleotide excision repair [PATH:ko03420];TFIIH1, GTF2H1, TFB1: transcription initiation factor TFIIH subunit 1
K03144 2615.0 2327.0 2721.0 2529.0 Genetic Information Processing;Replication and repair;03420 Nucleotide excision repair [PATH:ko03420];TFIIH4, GTF2H4, TFB2: transcription initiation factor TFIIH subunit 4
K03149 0.0 322.0 0.0 429.0 Metabolism;Metabolism of cofactors and vitamins;00730 Thiamine metabolism [PATH:ko00730];thiG: thiamine biosynthesis ThiG
K03150 830.0 766.0 816.0 732.0 Metabolism;Metabolism of cofactors and vitamins;00730 Thiamine metabolism [PATH:ko00730];thiH: thiamine biosynthesis ThiH
K03156 2162.0 1939.0 1994.0 1901.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];TNFA: tumor necrosis factor superfamily, member 2
K03157 1495.0 1304.0 1395.0 1341.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];LTB, TNFC: lymphotoxin beta (TNF superfamily, member 3)
K03158 4429.0 4005.0 4884.0 4784.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];TNFRSF1A, TNFR1: tumor necrosis factor receptor superfamily member 1A
K03159 5273.0 4680.0 5804.0 5481.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];TNFRSF3, LTBR: lymphotoxin beta receptor TNFR superfamily member 3
K03205 0.0 0.0 592.0 0.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];virD4, lvhD4: type IV secretion system protein VirD4
K03238 0.0 0.0 3679.0 3482.0 Genetic Information Processing;Translation;03013 RNA transport [PATH:ko03013];EIF2S2: translation initiation factor 2 subunit 2
K03239 0.0 0.0 1006.0 985.0 Genetic Information Processing;Translation;03013 RNA transport [PATH:ko03013];EIF2B1: translation initiation factor eIF-2B subunit alpha
K03269 0.0 0.0 237.0 184.0 Metabolism;Glycan biosynthesis and metabolism;00540 Lipopolysaccharide biosynthesis [PATH:ko00540];lpxH: UDP-2,3-diacylglucosamine hydrolase [EC:3.6.1.54]
K03277 559.0 514.0 597.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00540 Lipopolysaccharide biosynthesis [PATH:ko00540];waaU, rfaK: heptosyltransferase IV [EC:2.4.-.-]
K03279 735.0 644.0 743.0 680.0 Metabolism;Glycan biosynthesis and metabolism;00540 Lipopolysaccharide biosynthesis [PATH:ko00540];waaJ, rfaJ: UDP-glucose:(galactosyl)LPS alpha-1,2-glucosyltransferase [EC:2.4.1.58]
K03334 3408.0 2974.0 2668.0 2623.0 Metabolism;Amino acid metabolism;00250 Alanine, aspartate and glutamate metabolism [PATH:ko00250];IL4I1: L-amino-acid oxidase [EC:1.4.3.2]
K03336 1303.0 1172.0 2577.0 2469.0 Metabolism;Carbohydrate metabolism;00562 Inositol phosphate metabolism [PATH:ko00562];iolD: 3D-(3,5/4)-trihydroxycyclohexane-1,2-dione hydrolase [EC:3.7.1.-]
K03337 0.0 0.0 140.0 137.0 Metabolism;Carbohydrate metabolism;00562 Inositol phosphate metabolism [PATH:ko00562];iolB: 5-deoxy-glucuronate isomerase [EC:5.3.1.-]
K03340 413.0 386.0 531.0 536.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];E1.4.1.16: diaminopimelate dehydrogenase [EC:1.4.1.16]
K03342 741.0 651.0 779.0 815.0 Metabolism;Metabolism of cofactors and vitamins;00790 Folate biosynthesis [PATH:ko00790];pabBC: para-aminobenzoate synthetase / 4-amino-4-deoxychorismate lyase [EC:2.6.1.85 4.1.3.38]
K03348 0.0 0.0 679.0 669.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];APC1: anaphase-promoting complex subunit 1
K03351 539.0 527.0 434.0 442.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];APC4: anaphase-promoting complex subunit 4
K03355 0.0 0.0 484.0 499.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];APC8, CDC23: anaphase-promoting complex subunit 8
K03360 506.0 440.0 798.0 756.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];GRR1: F-box and leucine-rich repeat protein GRR1
K03363 0.0 0.0 243.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];CDC20: cell division cycle 20, cofactor of APC complex
K03366 825.0 722.0 1218.0 1206.0 Metabolism;Carbohydrate metabolism;00650 Butanoate metabolism [PATH:ko00650];butA: (R,R)-butanediol dehydrogenase / diacetyl reductase [EC:1.1.1.4 1.1.1.303]
K03369 0.0 0.0 999.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00604 Glycosphingolipid biosynthesis - ganglio series [PATH:ko00604];SIAT8E: alpha-N-acetyl-neuraminate alpha-2,8-sialyltransferase (sialyltransferase 8E) [EC:2.4.99.-]
K03371 802.0 706.0 729.0 688.0 Metabolism;Glycan biosynthesis and metabolism;00601 Glycosphingolipid biosynthesis - lacto and neolacto series [PATH:ko00601];SIAT8A: alpha-N-acetyl-neuraminate alpha-2,8-sialyltransferase (sialyltransferase 8A) [EC:2.4.99.8]
K03374 0.0 0.0 192.0 191.0 Metabolism;Glycan biosynthesis and metabolism;00604 Glycosphingolipid biosynthesis - ganglio series [PATH:ko00604];SIAT7D, ST6GalNAc IV: N-acetylgalactosaminide alpha-2,6-sialyltransferase (sialyltransferase 7D) [EC:2.4.99.7]
K03376 158.0 141.0 48.0 42.0 Metabolism;Glycan biosynthesis and metabolism;00604 Glycosphingolipid biosynthesis - ganglio series [PATH:ko00604];SIAT7F, ST6GalNAc VI: N-acetylgalactosaminide alpha-2,6-sialyltransferase (sialyltransferase 7F) [EC:2.4.99.-]
K03380 308.0 0.0 548.0 494.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];E1.14.13.7: phenol 2-monooxygenase [EC:1.14.13.7]
K03381 255.0 236.0 452.0 464.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];catA: catechol 1,2-dioxygenase [EC:1.13.11.1]
K03382 1400.0 1268.0 1059.0 1004.0 Metabolism;Xenobiotics biodegradation and metabolism;00791 Atrazine degradation [PATH:ko00791];atzB: hydroxyatrazine ethylaminohydrolase [EC:3.5.99.3]
K03383 1245.0 1120.0 946.0 940.0 Metabolism;Xenobiotics biodegradation and metabolism;00791 Atrazine degradation [PATH:ko00791];atzD: cyanuric acid amidohydrolase [EC:3.5.2.15]
K03384 1281.0 1172.0 1311.0 1257.0 Metabolism;Xenobiotics biodegradation and metabolism;00361 Chlorocyclohexane and chlorobenzene degradation [PATH:ko00361];E1.14.12.-: [EC:1.14.12.-]
K03385 1505.0 1363.0 1643.0 1579.0 Human Diseases;Infectious diseases;05132 Salmonella infection [PATH:ko05132];nrfA: cytochrome c-552 [EC:1.7.2.2]
K03389 928.0 833.0 887.0 836.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];hdrB: heterodisulfide reductase subunit B [EC:1.8.98.1]
K03392 287.0 242.0 824.0 766.0 Metabolism;Amino acid metabolism;00380 Tryptophan metabolism [PATH:ko00380];E4.1.1.45, ACMSD: aminocarboxymuconate-semialdehyde decarboxylase [EC:4.1.1.45]
K03405 1521.0 1374.0 1681.0 1652.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];chlI, bchI: magnesium chelatase subunit I [EC:6.6.1.1]
K03409 2307.0 2031.0 2586.0 2552.0 Cellular Processes;Cell motility;02030 Bacterial chemotaxis [PATH:ko02030];cheX: chemotaxis protein CheX
K03410 0.0 0.0 0.0 199.0 Cellular Processes;Cell motility;02030 Bacterial chemotaxis [PATH:ko02030];cheC: chemotaxis protein CheC
K03412 0.0 0.0 3630.0 3479.0 Cellular Processes;Cell motility;02030 Bacterial chemotaxis [PATH:ko02030];cheB: two-component system, chemotaxis family, response regulator CheB [EC:3.1.1.61]
K03417 5481.0 4858.0 5268.0 5060.0 Metabolism;Carbohydrate metabolism;00640 Propanoate metabolism [PATH:ko00640];E4.1.3.30, prpB: methylisocitrate lyase [EC:4.1.3.30]
K03418 1159.0 1001.0 915.0 892.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];E3.5.1.56: N,N-dimethylformamidase [EC:3.5.1.56]
K03419 0.0 0.0 542.0 520.0 Metabolism;Glycan biosynthesis and metabolism;00532 Glycosaminoglycan biosynthesis - chondroitin sulfate / dermatan sulfate [PATH:ko00532];CHPF2: chondroitin polymerizing factor 2 [EC:2.4.1.226]
K03422 2259.0 2073.0 1969.0 1818.0 Metabolism;Energy metabolism;00680 Methane metabolism [PATH:ko00680];mcrD: methyl-coenzyme M reductase subunit D
K03425 503.0 419.0 745.0 707.0 Environmental Information Processing;Membrane transport;03070 Bacterial secretion system [PATH:ko03070];tatE: sec-independent protein translocase protein TatE
K03429 1392.0 1158.0 1361.0 1317.0 Metabolism;Lipid metabolism;00561 Glycerolipid metabolism [PATH:ko00561];ugtP: 1,2-diacylglycerol 3-glucosyltransferase [EC:2.4.1.157]
K03433 252.0 188.0 95.0 104.0 Genetic Information Processing;Folding, sorting and degradation;03050 Proteasome [PATH:ko03050];psmB, prcB: proteasome beta subunit [EC:3.4.25.1]
K03460 1350.0 1210.0 1435.0 1385.0 Organismal Systems;Digestive system;04976 Bile secretion [PATH:ko04976];SLCO1A: solute carrier organic anion transporter family, member 1A
K03462 0.0 0.0 946.0 883.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];NAMPT: nicotinamide phosphoribosyltransferase [EC:2.4.2.12]
K03463 1300.0 1149.0 1248.0 1189.0 Metabolism;Xenobiotics Biodegradation and Metabolism;00627 Aminobenzoate degradation [PATH:ko00627];E1.13.11.-: [EC:1.13.11.-]
K03473 0.0 0.0 1555.0 1492.0 Metabolism;Metabolism of cofactors and vitamins;00750 Vitamin B6 metabolism [PATH:ko00750];pdxB: erythronate-4-phosphate dehydrogenase [EC:1.1.1.290]
K03494 0.0 0.0 1174.0 1109.0 Metabolism;Glycan biosynthesis and metabolism;00601 Glycosphingolipid biosynthesis - lacto and neolacto series [PATH:ko00601];SIAT4C: beta-galactoside alpha-2,3-sialyltransferase (sialyltransferase 4C) [EC:2.4.99.4]
K03517 0.0 0.0 879.0 834.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];nadA: quinolinate synthase [EC:2.5.1.72]
K03526 0.0 0.0 1200.0 1108.0 Metabolism;Metabolism of terpenoids and polyketides;00900 Terpenoid backbone biosynthesis [PATH:ko00900];E1.17.7.1, gcpE, ispG: (E)-4-hydroxy-3-methylbut-2-enyl-diphosphate synthase [EC:1.17.7.1]
K03544 2254.0 1993.0 1523.0 1426.0 Cellular Processes;Cell growth and death;04112 Cell cycle - Caulobacter [PATH:ko04112];clpX, CLPX: ATP-dependent Clp protease ATP-binding subunit ClpX
K03551 1145.0 1068.0 1062.0 1083.0 Genetic Information Processing;Replication and repair;03440 Homologous recombination [PATH:ko03440];ruvB: holliday junction DNA helicase RuvB [EC:3.6.4.12]
K03553 1443.0 1304.0 1193.0 1165.0 Genetic Information Processing;Replication and repair;03440 Homologous recombination [PATH:ko03440];recA: recombination protein RecA
K03573 0.0 0.0 983.0 930.0 Genetic Information Processing;Replication and repair;03430 Mismatch repair [PATH:ko03430];mutH: DNA mismatch repair protein MutH
K03575 0.0 0.0 1132.0 1016.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];mutY: A/G-specific adenine glycosylase [EC:3.2.2.-]
K03589 1654.0 1488.0 1097.0 1065.0 Cellular Processes;Cell growth and death;04112 Cell cycle - Caulobacter [PATH:ko04112];ftsQ: cell division protein FtsQ
K03628 1193.0 1103.0 1222.0 1188.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];rho: transcription termination factor Rho
K03648 781.0 692.0 873.0 819.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];UNG, UDG: uracil-DNA glycosylase [EC:3.2.2.27]
K03654 0.0 0.0 3713.0 3544.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];recQ: ATP-dependent DNA helicase RecQ [EC:3.6.4.12]
K03660 1892.0 0.0 1574.0 1553.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];OGG1: N-glycosylase/DNA lyase [EC:3.2.2.- 4.2.99.18]
K03663 1.0 0.0 0.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00514 Other types of O-glycan biosynthesis [PATH:ko00514];FUT9: 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase [EC:2.4.1.152]
K03693 0.0 0.0 43.0 43.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];pbp: penicillin-binding protein
K03701 4757.0 4158.0 4609.0 4566.0 Genetic Information Processing;Replication and repair;03420 Nucleotide excision repair [PATH:ko03420];uvrA: excinuclease ABC subunit A
K03702 2740.0 2518.0 2340.0 2304.0 Genetic Information Processing;Replication and repair;03420 Nucleotide excision repair [PATH:ko03420];uvrB: excinuclease ABC subunit B
K03729 0.0 414.0 532.0 544.0 Organismal Systems;Environmental adaptation;04710 Circadian rhythm [PATH:ko04710];BHLHB2, DEC1: class B basic helix-loop-helix protein 2
K03732 339.0 301.0 0.0 0.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];rhlB: ATP-dependent RNA helicase RhlB [EC:3.6.4.13]
K03735 37.0 34.0 0.0 0.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];eutB: ethanolamine ammonia-lyase large subunit [EC:4.3.1.7]
K03738 0.0 0.0 1475.0 1348.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];E1.2.7.5, aor: aldehyde:ferredoxin oxidoreductase [EC:1.2.7.5]
K03739 560.0 0.0 793.0 757.0 Human Diseases;Infectious diseases;05150 Staphylococcus aureus infection [PATH:ko05150];dltB: membrane protein involved in D-alanine export
K03740 0.0 0.0 43.0 37.0 Human Diseases;Infectious diseases;05150 Staphylococcus aureus infection [PATH:ko05150];dltD: D-alanine transfer protein
K03763 4107.0 3576.0 2296.0 2244.0 Genetic Information Processing;Replication and repair;03030 DNA replication [PATH:ko03030];DPO3A2, polC: DNA polymerase III subunit alpha, Gram-positive type [EC:2.7.7.7]
K03777 718.0 648.0 608.0 564.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];dld: D-lactate dehydrogenase [EC:1.1.1.28]
K03780 2095.0 1792.0 1353.0 1336.0 Metabolism;Carbohydrate metabolism;00630 Glyoxylate and dicarboxylate metabolism [PATH:ko00630];ttdB: L(+)-tartrate dehydratase beta subunit [EC:4.2.1.32]
K03781 398.0 336.0 843.0 843.0 Cellular Processes;Transport and catabolism;04146 Peroxisome [PATH:ko04146];katE, CAT, catB, srpA: catalase [EC:1.11.1.6]
K03783 0.0 0.0 646.0 638.0 Metabolism;Metabolism of cofactors and vitamins;00760 Nicotinate and nicotinamide metabolism [PATH:ko00760];punA: purine-nucleoside phosphorylase [EC:2.4.2.1]
K03785 0.0 0.0 838.0 799.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];aroD: 3-dehydroquinate dehydratase I [EC:4.2.1.10]
K03788 0.0 0.0 242.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00740 Riboflavin metabolism [PATH:ko00740];aphA: acid phosphatase (class B) [EC:3.1.3.2]
K03795 0.0 0.0 197.0 193.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];cbiX: sirohydrochlorin cobaltochelatase [EC:4.99.1.3]
K03814 0.0 0.0 62.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];mtgA: monofunctional biosynthetic peptidoglycan transglycosylase [EC:2.4.1.-]
K03815 0.0 0.0 981.0 930.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];xapA: xanthosine phosphorylase [EC:2.4.2.-]
K03816 0.0 0.0 123.0 119.0 Metabolism;Nucleotide metabolism;00230 Purine metabolism [PATH:ko00230];xpt: xanthine phosphoribosyltransferase [EC:2.4.2.22]
K03844 106.0 0.0 202.0 183.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];ALG11: alpha-1,2-mannosyltransferase [EC:2.4.1.-]
K03851 795.0 709.0 267.0 276.0 Metabolism;Metabolism of other amino acids;00430 Taurine and hypotaurine metabolism [PATH:ko00430];tpa: taurine-pyruvate aminotransferase [EC:2.6.1.77]
K03856 415.0 0.0 119.0 0.0 Metabolism;Amino acid metabolism;00400 Phenylalanine, tyrosine and tryptophan biosynthesis [PATH:ko00400];AROA2, aroA: 3-deoxy-7-phosphoheptulonate synthase [EC:2.5.1.54]
K03878 0.0 1276.0 1233.0 1207.0 Human Diseases;Neurodegenerative diseases;05012 Parkinson's disease [PATH:ko05012];ND1: NADH-ubiquinone oxidoreductase chain 1 [EC:1.6.5.3]
K03880 1209.0 1085.0 3061.0 2895.0 Human Diseases;Neurodegenerative diseases;05012 Parkinson's disease [PATH:ko05012];ND3: NADH-ubiquinone oxidoreductase chain 3 [EC:1.6.5.3]
K03903 0.0 0.0 0.0 5.0 Organismal Systems;Immune system;04610 Complement and coagulation cascades [PATH:ko04610];FGA: fibrinogen alpha chain
K03905 0.0 0.0 29.0 27.0 Human Diseases;Infectious diseases;05150 Staphylococcus aureus infection [PATH:ko05150];FGG: fibrinogen gamma chain
K03907 232.0 203.0 158.0 143.0 Organismal Systems;Immune system;04610 Complement and coagulation cascades [PATH:ko04610];THBD, CD141: thrombomodulin
K03909 1381.0 1165.0 887.0 853.0 Organismal Systems;Immune system;04610 Complement and coagulation cascades [PATH:ko04610];TFPI: tissue factor pathway inhibitor
K03910 432.0 393.0 375.0 308.0 Organismal Systems;Immune system;04610 Complement and coagulation cascades [PATH:ko04610];A2M: alpha-2-macroglobulin
K03913 0.0 0.0 0.0 1.0 Organismal Systems;Immune system;04610 Complement and coagulation cascades [PATH:ko04610];SERPINA5, PCI: protein C inhibitor
K03914 1102.0 943.0 844.0 878.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];F2R, PAR1: coagulation factor II (thrombin) receptor
K03915 1958.0 1725.0 1222.0 1202.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];BDKRB1: bradykinin receptor B1
K03916 1139.0 971.0 1220.0 1168.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];BDKRB2: bradykinin receptor B2
K03921 159.0 145.0 48.0 43.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];DESA1: acyl-[acyl-carrier-protein] desaturase [EC:1.14.19.2]
K03922 1709.0 1564.0 1029.0 977.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];DESA2: acyl-[acyl-carrier-protein] desaturase [EC:1.14.19.2]
K03927 1567.0 0.0 0.0 0.0 Metabolism;Xenobiotics biodegradation and metabolism;00983 Drug metabolism - other enzymes [PATH:ko00983];CES2: carboxylesterase 2 [EC:3.1.1.1 3.1.1.84 3.1.1.56]
K03934 3356.0 2981.0 3619.0 3439.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFS1: NADH dehydrogenase (ubiquinone) Fe-S protein 1 [EC:1.6.5.3 1.6.99.3]
K03935 3561.0 3188.0 3757.0 3690.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFS2: NADH dehydrogenase (ubiquinone) Fe-S protein 2 [EC:1.6.5.3 1.6.99.3]
K03936 3318.0 3016.0 2970.0 2897.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFS3: NADH dehydrogenase (ubiquinone) Fe-S protein 3 [EC:1.6.5.3 1.6.99.3]
K03939 0.0 0.0 1434.0 1330.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFS6: NADH dehydrogenase (ubiquinone) Fe-S protein 6 [EC:1.6.5.3 1.6.99.3]
K03940 504.0 422.0 738.0 705.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFS7: NADH dehydrogenase (ubiquinone) Fe-S protein 7 [EC:1.6.5.3 1.6.99.3]
K03943 1289.0 1074.0 1305.0 1268.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFV2: NADH dehydrogenase (ubiquinone) flavoprotein 2 [EC:1.6.5.3 1.6.99.3]
K03947 0.0 708.0 316.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFA3: NADH dehydrogenase (ubiquinone) 1 alpha subcomplex 3 [EC:1.6.5.3 1.6.99.3]
K03951 1253.0 1148.0 788.0 738.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFA7: NADH dehydrogenase (ubiquinone) 1 alpha subcomplex 7 [EC:1.6.5.3 1.6.99.3]
K03952 1343.0 1234.0 814.0 779.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFA8: NADH dehydrogenase (ubiquinone) 1 alpha subcomplex 8 [EC:1.6.5.3 1.6.99.3]
K03953 0.0 0.0 26.0 24.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFA9: NADH dehydrogenase (ubiquinone) 1 alpha subcomplex 9 [EC:1.6.5.3 1.6.99.3]
K03956 413.0 386.0 531.0 538.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFA11: NADH dehydrogenase (ubiquinone) 1 alpha subcomplex 11 [EC:1.6.5.3]
K03958 0.0 0.0 0.0 1.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFB2: NADH dehydrogenase (ubiquinone) 1 beta subcomplex 2 [EC:1.6.5.3 1.6.99.3]
K03966 595.0 514.0 1047.0 973.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];NDUFB10: NADH dehydrogenase (ubiquinone) 1 beta subcomplex 10 [EC:1.6.5.3 1.6.99.3]
K04015 0.0 0.0 239.0 203.0 Metabolism;Energy metabolism;00910 Nitrogen metabolism [PATH:ko00910];nrfD: protein NrfD
K04016 0.0 0.0 0.0 9.0 Metabolism;Energy Metabolism;00910 Nitrogen metabolism [PATH:ko00910];nrfD: formate-dependent nitrate reductase complex, transmembrane protein
K04041 0.0 0.0 682.0 742.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];fbp3: fructose-1,6-bisphosphatase III [EC:3.1.3.11]
K04043 2895.0 2587.0 2586.0 2507.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];dnaK: molecular chaperone DnaK
K04067 0.0 0.0 1.0 0.0 Genetic Information Processing;Replication and repair;03440 Homologous recombination [PATH:ko03440];priC: primosomal replication protein N''
K04072 849.0 732.0 474.0 445.0 Metabolism;Amino acid metabolism;00350 Tyrosine metabolism [PATH:ko00350];adhE: acetaldehyde dehydrogenase / alcohol dehydrogenase [EC:1.2.1.10 1.1.1.1]
K04077 1854.0 1677.0 1939.0 1876.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];groEL, HSPD1: chaperonin GroEL
K04079 0.0 0.0 2100.0 2077.0 Environmental Information Processing;Signal transduction;04151 PI3K-Akt signaling pathway [PATH:ko04151];htpG, HSP90A: molecular chaperone HtpG
K04102 602.0 550.0 959.0 875.0 Metabolism;Xenobiotics biodegradation and metabolism;00624 Polycyclic aromatic hydrocarbon degradation [PATH:ko00624];E4.1.1.55: 4,5-dihydroxyphthalate decarboxylase [EC:4.1.1.55]
K04104 13.0 17.0 20.0 23.0 Metabolism;Xenobiotics Biodegradation and Metabolism;00627 Aminobenzoate degradation [PATH:ko00627];E4.1.1.61: 4-hydroxybenzoate decarboxylase [EC:4.1.1.61]
K04108 321.0 274.0 374.0 335.0 Metabolism;Xenobiotics biodegradation and metabolism;00362 Benzoate degradation [PATH:ko00362];hbaC, hcrA: 4-hydroxybenzoyl-CoA reductase subunit alpha [EC:1.3.7.9]
K04110 0.0 0.0 65.0 63.0 Metabolism;Xenobiotics biodegradation and metabolism;00362 Benzoate degradation [PATH:ko00362];badA: benzoate-CoA ligase [EC:6.2.1.25]
K04113 1.0 0.0 0.0 0.0 Metabolism;Xenobiotics biodegradation and metabolism;00362 Benzoate degradation [PATH:ko00362];badE: benzoyl-CoA reductase subunit [EC:1.3.7.8]
K04145 56.0 71.0 0.0 0.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];DRD2: dopamine receptor D2
K04147 29.0 0.0 35.0 29.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];DRD4: dopamine receptor D4
K04150 0.0 0.0 99.0 91.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];HRH2: histamine receptor H2
K04160 1.0 0.0 0.0 0.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];HTR4: 5-hydroxytryptamine receptor 4
K04167 503.0 437.0 790.0 753.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];AGTR2: angiotensin II receptor type 2
K04170 0.0 0.0 242.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];BRS3: bombesin-like receptor 3
K04172 0.0 0.0 537.0 525.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];FPR1: formyl peptide receptor 1
K04174 1303.0 1119.0 0.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];APLNR: apelin receptor
K04176 1205.0 998.0 1288.0 1244.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR1: C-C chemokine receptor type 1
K04177 5.0 0.0 0.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR2: C-C chemokine receptor type 2
K04180 0.0 0.0 8.0 0.0 Cellular Processes;Transport and catabolism;04144 Endocytosis [PATH:ko04144];CCR5: C-C chemokine receptor type 5
K04181 0.0 1.0 0.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR6: C-C chemokine receptor type 6
K04182 0.0 0.0 2.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR7: C-C chemokine receptor type 7
K04183 4.0 4.0 0.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR8: C-C chemokine receptor type 8
K04185 831.0 776.0 275.0 282.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCR10: C-C chemokine receptor type 10
K04189 197.0 177.0 336.0 375.0 Cellular Processes;Transport and catabolism;04144 Endocytosis [PATH:ko04144];CXCR4: C-X-C chemokine receptor type 4
K04190 1293.0 1183.0 1019.0 963.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CXCR5, BLR1: C-X-C chemokine receptor type 5
K04191 1244.0 1120.0 946.0 940.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CXCR6: C-X-C chemokine receptor type 6
K04196 0.0 317.0 1239.0 1223.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];CCKLR: cholecystokinin-like receptor
K04210 0.0 0.0 542.0 520.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GPR83, GPR72: G protein-coupled receptor 83
K04212 3832.0 3482.0 3252.0 3095.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];NTSR2: neurotensin receptor 2
K04215 2233.0 1964.0 2575.0 2545.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];OPRM1: mu-type opioid receptor
K04222 0.0 0.0 533.0 0.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];TACR1: tachykinin receptor 1
K04225 0.0 0.0 461.0 485.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];TAKR: tachykinin-like receptor
K04226 0.0 708.0 316.0 0.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];AVPR1A: arginine vasopressin receptor 1A
K04227 0.0 0.0 3.0 0.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];AVPR1B: arginine vasopressin receptor 1B
K04235 0.0 0.0 0.0 378.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];F2RL2, PAR3: coagulation factor II (thrombin) receptor-like 2
K04239 701.0 613.0 387.0 396.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];HCRTR2: hypocretin (orexin) receptor 2
K04248 184.0 150.0 329.0 345.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];LHCGR: luteinizing hormone/choriogonadotropin receptor
K04258 0.0 0.0 0.0 675.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];PTGER1: prostaglandin E receptor 1
K04259 0.0 0.0 1040.0 978.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];PTGER2: prostaglandin E receptor 2
K04260 582.0 478.0 1435.0 1333.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];PTGER3: prostaglandin E receptor 3
K04261 0.0 0.0 734.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];PTGER4: prostaglandin E receptor 4
K04282 504.0 437.0 793.0 758.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];TRHR: thyrotropin-releasing hormone receptor
K04285 0.0 0.0 242.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];MTNR1A: melatonin receptor type 1A
K04308 0.0 0.0 0.0 1.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];LGR5, GPR49: leucine-rich repeat-containing G protein-coupled receptor 5
K04344 0.0 1.0 0.0 0.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];CACNA1A: voltage-dependent calcium channel P/Q type alpha-1A
K04345 867.0 746.0 481.0 450.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];PKA: protein kinase A [EC:2.7.11.11]
K04350 99.0 78.0 53.0 50.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];RASGRP1: RAS guanyl-releasing protein 1
K04354 0.0 0.0 0.0 1.0 Cellular Processes;Cell communication;04530 Tight junction [PATH:ko04530];PPP2R2: protein phosphatase 2 (formerly 2A), regulatory subunit B
K04360 0.0 15.0 0.0 0.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];NTRK2, TRKB: neurotrophic tyrosine kinase receptor type 2 [EC:2.7.10.1]
K04378 1031.0 919.0 673.0 615.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];SRF: serum response factor
K04381 503.0 437.0 790.0 753.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];STMN1: stathmin
K04385 0.0 0.0 242.0 0.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];AXIN2: axin 2
K04406 0.0 0.0 0.0 1.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];MAP4K3, GLK: mitogen-activated protein kinase kinase kinase kinase 3 [EC:2.7.11.1]
K04421 0.0 0.0 1.0 0.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];MAP3K3, MEKK3: mitogen-activated protein kinase kinase kinase 3 [EC:2.7.11.25]
K04446 283.0 238.0 649.0 587.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];NFATC, NFAT: nuclear factor of activated T-cells, cytoplasmic
K04463 1301.0 0.0 1364.0 1251.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];MAP2K5, MEK5: mitogen-activated protein kinase kinase 5 [EC:2.7.12.2]
K04496 0.0 0.0 0.0 1.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];CTBP: C-terminal binding protein
K04499 397.0 329.0 824.0 831.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];RUVBL1, RVB1, INO80H: RuvB-like protein 1 (pontin 52)
K04501 419.0 0.0 120.0 0.0 Cellular Processes;Cell communication;04520 Adherens junction [PATH:ko04520];SMAD4: mothers against decapentaplegic homolog 4
K04502 0.0 0.0 0.0 1.0 Environmental Information Processing;Signal transduction;04310 Wnt signaling pathway [PATH:ko04310];FOSL1: fos-like antigen 1
K04515 0.0 1.0 0.0 0.0 Cellular Processes;Cell growth and death;04114 Oocyte meiosis [PATH:ko04114];CAMK2: calcium/calmodulin-dependent protein kinase (CaM kinase) II [EC:2.7.11.17]
K04521 0.0 0.0 516.0 0.0 Human Diseases;Neurodegenerative diseases;05010 Alzheimer's disease [PATH:ko05010];BACE1: beta-site APP-cleaving enzyme 1 (memapsin 2) [EC:3.4.23.46]
K04533 863.0 704.0 563.0 534.0 Human Diseases;Neurodegenerative diseases;05016 Huntington's disease [PATH:ko05016];HD: huntingtin
K04535 75.0 57.0 106.0 99.0 Organismal Systems;Nervous system;04730 Long-term depression [PATH:ko04730];GNAZ: guanine nucleotide-binding protein G(z) subunit alpha
K04540 0.0 0.0 535.0 483.0 Environmental Information Processing;Signal transduction;04151 PI3K-Akt signaling pathway [PATH:ko04151];GNG3: guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-3
K04543 0.0 0.0 109.0 103.0 Environmental Information Processing;Signal transduction;04151 PI3K-Akt signaling pathway [PATH:ko04151];GNG7: guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-7
K04552 503.0 437.0 791.0 753.0 Genetic Information Processing;Folding, sorting and degradation;04120 Ubiquitin mediated proteolysis [PATH:ko04120];UBE2L3, UBCH7: ubiquitin-conjugating enzyme E2 L3 [EC:6.3.2.19]
K04555 0.0 0.0 242.0 0.0 Genetic Information Processing;Folding, sorting and degradation;04120 Ubiquitin mediated proteolysis [PATH:ko04120];UBE2G2, UBC7: ubiquitin-conjugating enzyme E2 G2 [EC:6.3.2.19]
K04566 304.0 256.0 849.0 780.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];lysK: lysyl-tRNA synthetase, class I [EC:6.1.1.6]
K04567 1997.0 1763.0 2045.0 2025.0 Genetic Information Processing;Translation;00970 Aminoacyl-tRNA biosynthesis [PATH:ko00970];KARS, lysS: lysyl-tRNA synthetase, class II [EC:6.1.1.6]
K04578 1456.0 1288.0 938.0 903.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];CRHR1: corticotropin releasing hormone receptor 1
K04617 276.0 237.0 825.0 761.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GPR156, GABABL: gamma-aminobutyric acid type B receptor-like
K04628 299.0 273.0 545.0 490.0 Metabolism;Lipid metabolism;00600 Sphingolipid metabolism [PATH:ko00600];CGT, UGT8: 2-hydroxyacylsphingosine 1-beta-galactosyltransferase [EC:2.4.1.45]
K04633 0.0 0.0 735.0 0.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];GNAL: guanine nucleotide-binding protein G(olf) subunit alpha
K04635 0.0 0.0 1393.0 0.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];GNA11: guanine nucleotide-binding protein subunit alpha-11
K04637 0.0 0.0 82.0 80.0 Environmental Information Processing;Signal transduction;04020 Calcium signaling pathway [PATH:ko04020];GNA15: guanine nucleotide-binding protein subunit alpha-15
K04638 38.0 0.0 89.0 86.0 Human Diseases;Neurodegenerative diseases;05016 Huntington's disease [PATH:ko05016];ESRRBL1, HIPPI: estrogen-related receptor beta like 1
K04644 0.0 0.0 179.0 197.0 Cellular Processes;Transport and catabolism;04142 Lysosome [PATH:ko04142];CLTA, LCA: clathrin light chain A
K04682 0.0 414.0 533.0 544.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];E2F4_5: E2F transcription factor 4/5
K04684 1723.0 1565.0 1497.0 1463.0 Environmental Information Processing;Signal transduction;04350 TGF-beta signaling pathway [PATH:ko04350];SP1: transcription factor Sp1
K04685 2625.0 2321.0 2550.0 2471.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];CDKN2B, P15, INK4B: cyclin-dependent kinase inhibitor 2B
K04688 0.0 0.0 832.0 786.0 Environmental Information Processing;Signal transduction;04012 ErbB signaling pathway [PATH:ko04012];RPS6KB: p70 ribosomal S6 kinase [EC:2.7.11.1]
K04695 0.0 0.0 294.0 280.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];SOCS2, CIS2: suppressor of cytokine signaling 2
K04696 331.0 283.0 269.0 260.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];SOCS3, CIS3: suppressor of cytokine signaling 3
K04698 0.0 0.0 116.0 126.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];SOCS5: suppressor of cytokine signaling 5
K04702 0.0 0.0 1127.0 0.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];PIM1: proto-oncogene serine/threonine-protein kinase Pim-1 [EC:2.7.11.1]
K04723 0.0 0.0 999.0 0.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];IL1RAP: interleukin 1 receptor accessory protein
K04724 803.0 707.0 729.0 688.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];CFLAR, FLIP: CASP8 and FADD-like apoptosis regulator
K04726 1351.0 1209.0 1435.0 1384.0 Cellular Processes;Cell growth and death;04115 p53 signaling pathway [PATH:ko04115];BID: BH3 interacting domain death agonist
K04732 0.0 0.0 542.0 520.0 Cellular Processes;Cell growth and death;04210 Apoptosis [PATH:ko04210];IRAK3: interleukin-1 receptor-associated kinase 3 [EC:2.7.11.1]
K04777 0.0 0.0 365.0 323.0 Metabolism;Metabolism of Terpenoids and Polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];vibE: vibriobactin-specific 2,3-dihydroxybenzoate-AMP ligase [EC:2.7.7.58]
K04783 788.0 725.0 400.0 388.0 Metabolism;Metabolism of terpenoids and polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];irp5, ybtE: yersiniabactin salicyl-AMP ligase [EC:6.3.2.-]
K04785 0.0 115.0 233.0 219.0 Metabolism;Metabolism of terpenoids and polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];irp3, ybtU: yersiniabactin synthetase, thiazolinyl reductase component
K04786 0.0 0.0 176.0 182.0 Metabolism;Metabolism of terpenoids and polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];irp1, HMWP1: yersiniabactin nonribosomal peptide/polyketide synthase
K04791 0.0 0.0 66.0 64.0 Metabolism;Metabolism of terpenoids and polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];mbtD: mycobactin polyketide synthetase MbtD
K04835 0.0 20.0 9.0 0.0 Metabolism;Carbohydrate metabolism;00660 C5-Branched dibasic acid metabolism [PATH:ko00660];E4.3.1.2: methylaspartate ammonia-lyase [EC:4.3.1.2]
K05111 0.0 0.0 1.0 1.0 Organismal Systems;Development;04360 Axon guidance [PATH:ko04360];EPHB2, ERK, DRT: Eph receptor B2 [EC:2.7.10.1]
K05180 156.0 164.0 329.0 292.0 Environmental Information Processing;Signaling Molecules and Interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GABRA5: gamma-aminobutyric acid (GABA) A receptor alpha-5
K05186 77.0 70.0 199.0 162.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GABRG: gmma-aminobutyric acid receptor subunit gamma
K05190 915.0 843.0 2518.0 2378.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GABRR: gamma-aminobutyric acid receptor subunit rho
K05243 325.0 257.0 0.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];OXT: oxytocin
K05244 0.0 0.0 2235.0 2053.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];GAL: galanin
K05247 916.0 843.0 2518.0 2378.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];NPFF: neuropeptide FF-amide peptide
K05250 0.0 0.0 0.0 2.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];FSH: follicle stimulating hormone
K05269 915.0 843.0 2518.0 2378.0 Environmental Information Processing;Signaling molecules and interaction;04080 Neuroactive ligand-receptor interaction [PATH:ko04080];PRH: Prolactin-releasing peptide
K05274 443.0 423.0 1000.0 875.0 Organismal Systems;Circulatory system;04270 Vascular smooth muscle contraction [PATH:ko04270];KCNMA3: potassium large conductance calcium-activated channel subfamily M alpha member 3
K05276 0.0 0.0 236.0 182.0 Metabolism;Carbohydrate metabolism;00053 Ascorbate and aldarate metabolism [PATH:ko00053];E1.3.3.12: L-galactonolactone oxidase [EC:1.3.3.12]
K05279 0.0 0.0 546.0 503.0 Metabolism;Biosynthesis of other secondary metabolites;00944 Flavone and flavonol biosynthesis [PATH:ko00944];E2.1.1.76: flavonol 3-O-methyltransferase [EC:2.1.1.76]
K05281 0.0 0.0 517.0 526.0 Metabolism;Biosynthesis of other secondary metabolites;00943 Isoflavonoid biosynthesis [PATH:ko00943];E1.3.1.45: 2'-hydroxyisoflavone reductase [EC:1.3.1.45]
K05297 0.0 27.0 25.0 16.0 Metabolism;Lipid metabolism;00071 Fatty acid metabolism [PATH:ko00071];E1.18.1.1: rubredoxin-NAD+ reductase [EC:1.18.1.1]
K05298 0.0 2.0 0.0 0.0 Metabolism;Energy metabolism;00710 Carbon fixation in photosynthetic organisms [PATH:ko00710];GAPA: glyceraldehyde-3-phosphate dehydrogenase (NADP+) (phosphorylating) [EC:1.2.1.13]
K05334 0.0 0.0 60.0 59.0 Organismal Systems;Digestive system;04974 Protein digestion and absorption [PATH:ko04974];SLC6A19: solute carrier family 6 (neurotransmitter transporter) member 19
K05338 0.0 0.0 217.0 140.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];lrgA: holin-like protein
K05351 0.0 0.0 0.0 215.0 Metabolism;Carbohydrate metabolism;00040 Pentose and glucuronate interconversions [PATH:ko00040];E1.1.1.9: D-xylulose reductase [EC:1.1.1.9]
K05365 0.0 0.0 0.0 73.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];mrcB: penicillin-binding protein 1B [EC:2.4.1.129 3.4.-.-]
K05367 0.0 0.0 204.0 138.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];pbpC: penicillin-binding protein 1C [EC:2.4.1.-]
K05370 5032.0 4428.0 6519.0 6088.0 Metabolism;Metabolism of cofactors and vitamins;00860 Porphyrin and chlorophyll metabolism [PATH:ko00860];pebB: phycoerythrobilin:ferredoxin oxidoreductase [EC:1.3.7.3]
K05378 915.0 843.0 2518.0 2378.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];cpeC, mpeC: phycoerythrin-associated linker protein
K05380 0.0 0.0 862.0 848.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];cpeE: phycoerythrin-associated linker protein
K05383 0.0 0.0 426.0 382.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];cpeT: CpeT protein
K05385 1090.0 935.0 2459.0 2313.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];cpeY: bilin biosynthesis protein
K05386 0.0 0.0 0.0 2.0 Metabolism;Energy metabolism;00196 Photosynthesis - antenna proteins [PATH:ko00196];cpeZ: bilin biosynthesis protein
K05402 0.0 0.0 1127.0 0.0 Organismal Systems;Immune system;04620 Toll-like receptor signaling pathway [PATH:ko04620];TOLLIP: toll-interacting protein
K05404 0.0 323.0 409.0 425.0 Human Diseases;Infectious diseases;05162 Measles [PATH:ko05162];TLR7: toll-like receptor 7
K05405 827.0 760.0 812.0 732.0 Environmental Information Processing;Signal transduction;04066 HIF-1 signaling pathway [PATH:ko04066];IL6: interleukin 6
K05417 0.0 0.0 54.0 44.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];IL11: interleukin 11
K05419 736.0 619.0 875.0 880.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];LIF: leukemia inhibitory factor
K05420 236.0 234.0 274.0 0.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];CNTF: ciliary neurotrophic factor
K05427 54.0 51.0 5.0 0.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];CSF2, GMCSF: granulocyte-macrophage colony-stimulating factor
K05446 1300.0 1149.0 1248.0 1189.0 Environmental Information Processing;Signal transduction;04630 Jak-STAT signaling pathway [PATH:ko04630];IL26: interleukin 26
K05449 235.0 235.0 120.0 112.0 Cellular Processes;Cell communication;04510 Focal adhesion [PATH:ko04510];VEGFC_D: vascular endothelial growth factor C/D
K05454 0.0 0.0 870.0 830.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];FLT3LG: fms-related tyrosine kinase 3 ligand
K05460 1157.0 0.0 822.0 0.0 Cellular Processes;Cell communication;04510 Focal adhesion [PATH:ko04510];HGF: hepatocyte growth factor
K05473 0.0 712.0 644.0 638.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];TNFSF11, RANKL: tumor necrosis factor ligand superfamily member 11
K05514 0.0 0.0 0.0 1.0 Environmental Information Processing;Signaling molecules and interaction;04060 Cytokine-cytokine receptor interaction [PATH:ko04060];CCLX: C-C motif chemokine, other
K05522 1962.0 1719.0 1221.0 1205.0 Genetic Information Processing;Replication and repair;03410 Base excision repair [PATH:ko03410];nei: endonuclease VIII [EC:3.2.2.- 4.2.99.18]
K05526 0.0 455.0 665.0 663.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];astE: succinylglutamate desuccinylase [EC:3.5.1.96]
K05531 0.0 0.0 33.0 32.0 Metabolism;Glycan biosynthesis and metabolism;00513 Various types of N-glycan biosynthesis [PATH:ko00513];MNN10: mannan polymerase II complex MNN10 subunit [EC:2.4.1.-]
K05572 1140.0 974.0 1220.0 1169.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ndhA: NAD(P)H-quinone oxidoreductase subunit 1 [EC:1.6.5.3]
K05573 0.0 0.0 4.0 3.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ndhB: NAD(P)H-quinone oxidoreductase subunit 2 [EC:1.6.5.3]
K05577 0.0 0.0 353.0 347.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ndhF: NAD(P)H-quinone oxidoreductase subunit 5 [EC:1.6.5.3]
K05578 0.0 0.0 967.0 0.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ndhG: NAD(P)H-quinone oxidoreductase subunit 6 [EC:1.6.5.3]
K05579 630.0 0.0 720.0 714.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];ndhH: NAD(P)H-quinone oxidoreductase subunit H [EC:1.6.5.3]
K05586 0.0 0.0 0.0 2.0 Metabolism;Energy metabolism;00190 Oxidative phosphorylation [PATH:ko00190];hoxE: bidirectional [NiFe] hydrogenase diaphorase subunit [EC:1.6.5.3]
K05592 1417.0 1245.0 1045.0 1013.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];deaD: ATP-dependent RNA helicase DeaD [EC:3.6.4.13]
K05631 0.0 0.0 119.0 122.0 Cellular Processes;Cell communication;04530 Tight junction [PATH:ko04530];AIP3, WWP3, BAIAP1: atrophin-1 interacting protein 3 (BAI1-associated protein 1)
K05635 0.0 0.0 59.0 61.0 Cellular Processes;Cell communication;04510 Focal adhesion [PATH:ko04510];LAMC1: laminin, gamma 1
K05641 1176.0 1084.0 578.0 573.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCA1: ATP-binding cassette, subfamily A (ABC1), member 1
K05644 0.0 0.0 836.0 0.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCA4: ATP-binding cassette, subfamily A (ABC1), member 4
K05647 1359.0 1222.0 1442.0 1388.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCA13: ATP binding cassette, subfamily A (ABC1), member 13
K05651 279.0 238.0 470.0 456.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCA9: ATP-binding cassette, subfamily A (ABC1), member 9
K05652 1226.0 0.0 1380.0 1395.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCA10: ATP-binding cassette, subfamily A (ABC1), member 10
K05653 77.0 57.0 282.0 318.0 Cellular Processes;Transport and catabolism;04145 Phagosome [PATH:ko04145];ABCB2, TAP1: ATP-binding cassette, subfamily B (MDR/TAP), member 2
K05658 985.0 0.0 926.0 936.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];ABCB1: ATP-binding cassette, subfamily B (MDR/TAP), member 1
K05699 1690.0 1438.0 1439.0 1345.0 Cellular Processes;Cell communication;04510 Focal adhesion [PATH:ko04510];ACTN: actinin alpha
K05705 0.0 0.0 416.0 0.0 Cellular Processes;Cell communication;04520 Adherens junction [PATH:ko04520];YES1: tyrosine-protein kinase Yes [EC:2.7.10.2]
K05748 0.0 0.0 1114.0 1020.0 Cellular Processes;Cell communication;04520 Adherens junction [PATH:ko04520];WASF2: WAS protein family, member 2
K05754 0.0 0.0 805.0 0.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];ARPC5: actin related protein 2/3 complex, subunit 5
K05755 0.0 0.0 407.0 0.0 Cellular Processes;Cell motility;04810 Regulation of actin cytoskeleton [PATH:ko04810];ARPC4: actin related protein 2/3 complex, subunit 4
K05776 0.0 0.0 281.0 292.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];modF: molybdate transport system ATP-binding protein
K05822 0.0 0.0 25.0 24.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];E2.3.1.89: tetrahydrodipicolinate N-acetyltransferase [EC:2.3.1.89]
K05823 0.0 0.0 21.0 26.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];E3.5.1.47: N-acetyldiaminopimelate deacetylase [EC:3.5.1.47]
K05826 0.0 2.0 0.0 0.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];lysW: alpha-aminoadipate carrier protein LysW
K05830 0.0 0.0 3.0 0.0 Metabolism;Amino acid metabolism;00300 Lysine biosynthesis [PATH:ko00300];lysJ: acetylornithine/LysW-gamma-L-lysine aminotransferase [EC:2.6.1.11 2.6.1.-]
K05878 0.0 0.0 50.0 0.0 Metabolism;Lipid metabolism;00561 Glycerolipid metabolism [PATH:ko00561];dhaK: dihydroxyacetone kinase, N-terminal domain [EC:2.7.1.-]
K05894 0.0 0.0 145.0 137.0 Metabolism;Lipid metabolism;00592 alpha-Linolenic acid metabolism [PATH:ko00592];E1.3.1.42: 12-oxophytodienoic acid reductase [EC:1.3.1.42]
K05915 260.0 213.0 417.0 387.0 Metabolism;Xenobiotics biodegradation and metabolism;00363 Bisphenol degradation [PATH:ko00363];E1.13.-.-: [EC:1.13.-.-]
K05929 0.0 0.0 0.0 1.0 Metabolism;Lipid metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];E2.1.1.103, NMT: phosphoethanolamine N-methyltransferase [EC:2.1.1.103]
K05980 0.0 0.0 459.0 0.0 Metabolism;Lipid Metabolism;00564 Glycerophospholipid metabolism [PATH:ko00564];E2.1.1.103, NMT: phosphoethanolamine N-methyltransferase [EC:2.1.1.103]
K05993 0.0 0.0 1301.0 0.0 Metabolism;Metabolism of Terpenoids and Polyketides;01053 Biosynthesis of siderophore group nonribosomal peptides [PATH:ko01053];entC: isochorismate synthase [EC:5.4.4.2]
K06001 2936.0 2600.0 1901.0 1813.0 Metabolism;Amino acid metabolism;00260 Glycine, serine and threonine metabolism [PATH:ko00260];K06001, trpB: tryptophan synthase beta chain [EC:4.2.1.20]
K06053 0.0 0.0 23.0 0.0 Environmental Information Processing;Signal transduction;04330 Notch signaling pathway [PATH:ko04330];RBPSUH, RBPJK: recombining binding protein suppressor of hairless
K06120 0.0 0.0 2.0 0.0 Metabolism;Lipid metabolism;00561 Glycerolipid metabolism [PATH:ko00561];dhaB: glycerol dehydratase large subunit [EC:4.2.1.30]
K06121 0.0 0.0 0.0 1.0 Metabolism;Lipid metabolism;00561 Glycerolipid metabolism [PATH:ko00561];dhbC: glycerol dehydratase medium subunit [EC:4.2.1.30]
K06215 237.0 236.0 123.0 114.0 Metabolism;Metabolism of cofactors and vitamins;00750 Vitamin B6 metabolism [PATH:ko00750];pdxS, pdx1: pyridoxine biosynthesis protein [EC:4.-.-.-]
K06281 0.0 0.0 76.0 67.0 Metabolism;Xenobiotics biodegradation and metabolism;00633 Nitrotoluene degradation [PATH:ko00633];E1.12.99.6L: hydrogenase large subunit [EC:1.12.99.6]
K06446 0.0 0.0 9.0 0.0 Metabolism;Xenobiotics biodegradation and metabolism;00930 Caprolactam degradation [PATH:ko00930];DCAA: acyl-CoA dehydrogenase [EC:1.3.99.-]
K06447 0.0 0.0 213.0 224.0 Metabolism;Amino acid metabolism;00330 Arginine and proline metabolism [PATH:ko00330];astD: succinylglutamic semialdehyde dehydrogenase [EC:1.2.1.71]
K06453 0.0 0.0 1131.0 1094.0 Human Diseases;Infectious diseases;05142 Chagas disease (American trypanosomiasis) [PATH:ko05142];CD3Z: CD3Z antigen, zeta polypeptide
K06474 563.0 533.0 364.0 350.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];CD34: CD34 antigen
K06494 2173.0 2009.0 2022.0 1987.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];SELE: selectin, endothelial cell
K06495 737.0 614.0 657.0 651.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];SELL: selectin, lymphocyte
K06544 0.0 0.0 144.0 137.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];SELPLG: selectin P ligand
K06620 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];E2F1_3: E2F transcription factor 1/3
K06629 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];ASK, DBF4: activator of S phase kinase
K06637 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];BUB1B, BUBR1, MAD3L: mitotic checkpoint serine/threonine-protein kinase BUB1 beta [EC:2.7.11.1]
K06643 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04110 Cell cycle [PATH:ko04110];MDM2: E3 ubiquitin-protein ligase Mdm2 [EC:6.3.2.19]
K06651 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];CLB5_6: S-phase entry cyclin 5/6
K06656 0.0 0.0 0.0 1.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];PCL1: G1/S-specific cyclin PLC1
K06661 0.0 0.0 1.0 0.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];RAD9: DNA repair protein RAD9
K06687 2.0 0.0 0.0 0.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];NET1, ESC5: nucleolar protein involved in exit from mitosis
K06726 0.0 0.0 10.0 0.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];rbsD: D-ribose pyranase [EC:5.-.-.-]
K06743 504.0 437.0 790.0 753.0 Organismal Systems;Immune system;04650 Natural killer cell mediated cytotoxicity [PATH:ko04650];NCR3: natural cytotoxicity triggering receptor 3
K06746 0.0 0.0 242.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];B7H3, CD276: immune costimulatory protein B7-H3
K06845 503.0 437.0 791.0 753.0 Organismal Systems;Development;04360 Axon guidance [PATH:ko04360];NTN4: netrin 4
K06855 0.0 0.0 244.0 0.0 Environmental Information Processing;Signal Transduction;04010 MAPK signaling pathway [PATH:ko04010];RELB: transcription factor RelB
K06859 35.0 34.0 0.0 0.0 Metabolism;Carbohydrate metabolism;00010 Glycolysis / Gluconeogenesis [PATH:ko00010];pgi1: glucose-6-phosphate isomerase, archaeal [EC:5.3.1.9]
K06861 0.0 0.0 617.0 604.0 Environmental Information Processing;Membrane transport;02010 ABC transporters [PATH:ko02010];lptB: lipopolysaccharide export system ATP-binding protein [EC:3.6.3.-]
K07106 0.0 0.0 362.0 392.0 Metabolism;Carbohydrate metabolism;00520 Amino sugar and nucleotide sugar metabolism [PATH:ko00520];murQ: N-acetylmuramic acid 6-phosphate etherase [EC:4.2.1.126]
K07173 292.0 263.0 0.0 0.0 Human Diseases;Infectious diseases;05111 Vibrio cholerae pathogenic cycle [PATH:ko05111];luxS: S-ribosylhomocysteine lyase [EC:4.4.1.21]
K07192 0.0 0.0 443.0 0.0 Organismal Systems;Endocrine system;04910 Insulin signaling pathway [PATH:ko04910];FLOT: flotillin
K07248 42.0 39.0 45.0 38.0 Metabolism;Carbohydrate metabolism;00620 Pyruvate metabolism [PATH:ko00620];aldA: lactaldehyde dehydrogenase / glycolaldehyde dehydrogenase [EC:1.2.1.22 1.2.1.21]
K07259 0.0 0.0 0.0 208.0 Metabolism;Glycan biosynthesis and metabolism;00550 Peptidoglycan biosynthesis [PATH:ko00550];dacB: D-alanyl-D-alanine carboxypeptidase / D-alanyl-D-alanine-endopeptidase (penicillin-binding protein 4) [EC:3.4.16.4 3.4.21.-]
K07360 474.0 436.0 594.0 553.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];ZAP70: tyrosine-protein kinase ZAP-70 [EC:2.7.10.2]
K07366 1441.0 1327.0 1454.0 1336.0 Organismal Systems;Immune system;04660 T cell receptor signaling pathway [PATH:ko04660];GRAP2, GADS: GRB2-related adaptor protein 2
K07367 2176.0 2010.0 2022.0 1987.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];CARD11: caspase recruitment domain-containing protein 11
K07368 734.0 614.0 656.0 651.0 Environmental Information Processing;Signal transduction;04064 NF-kappa B signaling pathway [PATH:ko04064];BCL10: B-cell CLL/lymphoma 10
K07378 0.0 0.0 1.0 0.0 Environmental Information Processing;Signaling molecules and interaction;04514 Cell adhesion molecules (CAMs) [PATH:ko04514];NLGN: neuroligin
K07405 0.0 0.0 976.0 919.0 Metabolism;Carbohydrate metabolism;00500 Starch and sucrose metabolism [PATH:ko00500];E3.2.1.1A: alpha-amylase [EC:3.2.1.1]
K07406 325.0 257.0 0.0 0.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];melA: alpha-galactosidase [EC:3.2.1.22]
K07407 0.0 0.0 2235.0 2053.0 Metabolism;Carbohydrate metabolism;00052 Galactose metabolism [PATH:ko00052];E3.2.1.22B, galA, rafA: alpha-galactosidase [EC:3.2.1.22]
K07441 0.0 0.0 116.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00510 N-Glycan biosynthesis [PATH:ko00510];ALG14: beta-1,4-N-acetylglucosaminyltransferase [EC:2.4.1.141]
K07508 506.0 440.0 794.0 756.0 Metabolism;Amino acid metabolism;00280 Valine, leucine and isoleucine degradation [PATH:ko00280];ACAA2: acetyl-CoA acyltransferase 2 [EC:2.3.1.16]
K07512 0.0 0.0 244.0 0.0 Metabolism;Lipid metabolism;00062 Fatty acid elongation [PATH:ko00062];MECR, NRBF1: mitochondrial trans-2-enoyl-CoA reductase [EC:1.3.1.38]
K07601 36.0 32.0 8.0 8.0 Human Diseases;Cardiovascular diseases;05412 Arrhythmogenic right ventricular cardiomyopathy (ARVC) [PATH:ko05412];DSC2: desmocollin 2
K07603 848.0 730.0 475.0 445.0 Organismal Systems;Digestive system;04974 Protein digestion and absorption [PATH:ko04974];COL17A, BP180: collagen, type XVII, alpha
K07634 0.0 1.0 0.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00601 Glycosphingolipid biosynthesis - lacto and neolacto series [PATH:ko00601];FUT6: galactoside alpha-1,3-fucosyltransferase 6 [EC:2.4.1.65]
K07694 0.0 0.0 1.0 0.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];vraR: two-component system, NarL family, vancomycin resistance associated response regulator VraR
K07787 0.0 0.0 997.0 938.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];cusA, silA: Cu(I)/Ag(I) efflux system membrane protein CusA/SilA
K07792 168.0 155.0 63.0 70.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];dcuB: anaerobic C4-dicarboxylate transporter DcuB
K07799 920.0 799.0 533.0 485.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];mdtA: putative multidrug efflux transporter MdtA
K07808 0.0 1.0 0.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00534 Glycosaminoglycan biosynthesis - heparan sulfate / heparin [PATH:ko00534];HS3ST2: [heparan sulfate]-glucosamine 3-sulfotransferase 2 [EC:2.8.2.29]
K07879 0.0 1.0 0.0 0.0 Cellular Processes;Transport and catabolism;04144 Endocytosis [PATH:ko04144];RAB4A, RAB4: Ras-related protein Rab-4A
K07941 854.0 777.0 1839.0 1856.0 Cellular Processes;Transport and catabolism;04144 Endocytosis [PATH:ko04144];ARF6: ADP-ribosylation factor 6
K07953 285.0 219.0 604.0 619.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];SAR1: GTP-binding protein SAR1 [EC:3.6.5.-]
K07992 0.0 1.0 0.0 0.0 Organismal Systems;Development;04380 Osteoclast differentiation [PATH:ko04380];TYROBP, DAP12: TYRO protein tyrosine kinase binding protein
K08018 0.0 33.0 0.0 0.0 Environmental Information Processing;Signal transduction;04010 MAPK signaling pathway [PATH:ko04010];RAPGEF2, PDZGEF1: Rap guanine nucleotide exchange factor (GEF) 2
K08021 851.0 730.0 474.0 445.0 Metabolism;Lipid metabolism;00590 Arachidonic acid metabolism [PATH:ko00590];ALOX12B: arachidonate 12-lipoxygenase (R-type) [EC:1.13.11.-]
K08026 0.0 0.0 0.0 3.0 Human Diseases;Endocrine and metabolic diseases;04950 Maturity onset diabetes of the young [PATH:ko04950];ONECUT1, HNF6: one cut domain, family member 1, hepatocyte nuclear factor 6
K08029 78.0 66.0 65.0 59.0 Human Diseases;Endocrine and metabolic diseases;04950 Maturity onset diabetes of the young [PATH:ko04950];NKX2-2: homeobox protein Nkx-2.2
K08030 0.0 0.0 47.0 35.0 Human Diseases;Endocrine and metabolic diseases;04950 Maturity onset diabetes of the young [PATH:ko04950];NKX6-1: homeobox protein Nkx-6.1
K08042 294.0 250.0 131.0 102.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];ADCY2: adenylate cyclase 2 [EC:4.6.1.1]
K08046 0.0 0.0 0.0 2.0 Cellular Processes;Cell communication;04540 Gap junction [PATH:ko04540];ADCY6: adenylate cyclase 6 [EC:4.6.1.1]
K08090 362.0 314.0 1239.0 1222.0 Human Diseases;Immune diseases;05310 Asthma [PATH:ko05310];MS4A2, FCER1B: membrane-spanning 4-domains, subfamily A, member 2
K08105 0.0 0.0 9.0 0.0 Metabolism;Glycan biosynthesis and metabolism;00532 Glycosaminoglycan biosynthesis - chondroitin sulfate / dermatan sulfate [PATH:ko00532];D4ST1: dermatan 4-sulfotransferase 1 [EC:2.8.2.35]
K08198 0.0 1.0 0.0 0.0 Organismal Systems;Digestive system;04976 Bile secretion [PATH:ko04976];SLC22A1, OCT1: MFS transporter, OCT family, solute carrier family 22 (organic cation transporter), member 1
K08266 37.0 31.0 8.0 0.0 Environmental Information Processing;Signal transduction;04150 mTOR signaling pathway [PATH:ko04150];GBL: G protein beta subunit-like
K08267 856.0 732.0 475.0 446.0 Environmental Information Processing;Signal transduction;04150 mTOR signaling pathway [PATH:ko04150];RICTOR: rapamycin-insensitive companion of mTOR
K08289 276.0 237.0 464.0 452.0 Metabolism;Metabolism of cofactors and vitamins;00670 One carbon pool by folate [PATH:ko00670];purT: phosphoribosylglycinamide formyltransferase 2 [EC:2.1.2.2]
K08311 872.0 746.0 487.0 468.0 Genetic Information Processing;Folding, sorting and degradation;03018 RNA degradation [PATH:ko03018];nudH: putative (di)nucleoside polyphosphate hydrolase [EC:3.6.1.-]
K08329 0.0 0.0 212.0 223.0 Cellular Processes;Transport and catabolism;04140 Regulation of autophagy [PATH:ko04140];ATG17: autophagy-related protein 17
K08330 0.0 0.0 1127.0 1094.0 Cellular Processes;Transport and catabolism;04140 Regulation of autophagy [PATH:ko04140];ATG11: autophagy-related protein 11
K08507 1879.0 1737.0 1842.0 1804.0 Genetic Information Processing;Folding, sorting and degradation;04130 SNARE interactions in vesicular transport [PATH:ko04130];USE1: unconventional SNARE in the endoplasmic reticulum protein 1
K08508 2218.0 1961.0 1733.0 1696.0 Genetic Information Processing;Folding, sorting and degradation;04130 SNARE interactions in vesicular transport [PATH:ko04130];SNAP23: synaptosomal-associated protein, 23kDa
K08527 558.0 514.0 596.0 0.0 Human Diseases;Cancers;05200 Pathways in cancer [PATH:ko05200];NR1B1, RARA: retinoic acid receptor alpha
K08534 4429.0 4006.0 4884.0 4784.0 Organismal Systems;Environmental adaptation;04710 Circadian rhythm [PATH:ko04710];NR1F3, RORC: RAR-related orphan receptor gamma
K08536 5273.0 4680.0 5804.0 5481.0 Human Diseases;Infectious diseases;05160 Hepatitis C [PATH:ko05160];NR1H3, LXRA: liver X receptor alpha
K08555 0.0 0.0 0.0 1250.0 Organismal Systems;Excretory system;04960 Aldosterone-regulated sodium reabsorption [PATH:ko04960];NR3C2, MR: mineralocorticoid receptor
K08728 0.0 0.0 18.0 23.0 Metabolism;Nucleotide metabolism;00240 Pyrimidine metabolism [PATH:ko00240];E2.4.2.6: nucleoside deoxyribosyltransferase [EC:2.4.2.6]
K09011 244.0 0.0 163.0 144.0 Metabolism;Amino acid metabolism;00290 Valine, leucine and isoleucine biosynthesis [PATH:ko00290];cimA: D-citramalate synthase [EC:2.3.1.182]
K09202 0.0 0.0 1.0 1.0 Cellular Processes;Cell growth and death;04111 Cell cycle - yeast [PATH:ko04111];SWI5: regulatory protein SWI5
K09458 1528.0 0.0 1651.0 0.0 Metabolism;Lipid metabolism;00061 Fatty acid biosynthesis [PATH:ko00061];fabF: 3-oxoacyl-[acyl-carrier-protein] synthase II [EC:2.3.1.179]
K09459 0.0 0.0 83.0 84.0 Metabolism;Metabolism of other amino acids;00440 Phosphonate and phosphinate metabolism [PATH:ko00440];E4.1.1.82: phosphonopyruvate decarboxylase [EC:4.1.1.82]
K09474 55.0 51.0 5.0 0.0 Environmental Information Processing;Signal transduction;02020 Two-component system [PATH:ko02020];phoN: acid phosphatase (class A) [EC:3.1.3.2]
K09487 1008.0 883.0 1004.0 964.0 Environmental Information Processing;Signal transduction;04151 PI3K-Akt signaling pathway [PATH:ko04151];HSP90B, TRA1: heat shock protein 90kDa beta
K09489 984.0 841.0 986.0 1016.0 Organismal Systems;Immune system;04612 Antigen processing and presentation [PATH:ko04612];HSPA4: heat shock 70kDa protein 4
K09490 843.0 731.0 766.0 740.0 Genetic Information Processing;Folding, sorting and degradation;03060 Protein export [PATH:ko03060];HSPA5, BIP: heat shock 70kDa protein 5
K09502 712.0 646.0 762.0 748.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJA1: DnaJ homolog subfamily A member 1
K09507 719.0 638.0 782.0 707.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJB1: DnaJ homolog subfamily B member 1
K09508 634.0 605.0 612.0 617.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJB2: DnaJ homolog subfamily B member 2
K09516 539.0 0.0 489.0 0.0 Metabolism;Metabolism of cofactors and vitamins;00830 Retinol metabolism [PATH:ko00830];RETSAT: all-trans-retinol 13,14-reductase [EC:1.3.99.23]
K09517 476.0 409.0 411.0 472.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJB11: DnaJ homolog subfamily B member 11
K09518 499.0 491.0 558.0 558.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJB12: DnaJ homolog subfamily B member 12
K09521 404.0 375.0 410.0 408.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJC1: DnaJ homolog subfamily C member 1
K09523 0.0 0.0 530.0 542.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJC3: DnaJ homolog subfamily C member 3
K09525 224.0 188.0 293.0 319.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJC5: DnaJ homolog subfamily C member 5
K09530 0.0 0.0 488.0 488.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];DNAJC10: DnaJ homolog subfamily C member 10
K09540 334.0 299.0 384.0 429.0 Genetic Information Processing;Folding, sorting and degradation;03060 Protein export [PATH:ko03060];SEC63: translocation protein SEC63
K09541 0.0 0.0 291.0 283.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];CRYAA: crystallin, alpha A
K09542 353.0 308.0 326.0 344.0 Genetic Information Processing;Folding, sorting and degradation;04141 Protein processing in endoplasmic reticulum [PATH:ko04141];CRYAB: crystallin, alpha B
K09561 0.0 0.0 1.0 0.0 Genetic Information Processing;Folding, sorting and degradation;04120 Ubiquitin mediated proteolysis [PATH:ko04120];STUB1, CHIP: STIP1 homology and U-box containing protein 1 [EC:6.3.2.19]