-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.yaml
5631 lines (5631 loc) · 215 KB
/
database.yaml
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
- id: AACPSFA1718
name: acyl-[acyl-carrier-protein] synthetase (n-C14:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa171n8[c]| => |cpd_amp[c]| + |cpd_fa171n8ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPSFA1817
name: acyl-[acyl-carrier-protein] synthetase (n-C14:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa181n7[c]| => |cpd_amp[c]| + |cpd_fa181n7ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPSFA130OH
name: acyl-[acyl-carrier-protein] synthetase (n-C14:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa130OH3[c]| => |cpd_amp[c]| + |cpd_fa130OH3ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: C171n8SN
name: b-ketoacyl synthetase (C17:1)
equation: '(20) |cpd_h[c]| + (7) |cpd_malACP[c]| + (13) |cpd_nadph[c]| + |cpd_ppcoa[c]|
=> (6) |cpd_ACP[c]| + (7) |cpd_co2[c]| + |cpd_coa[c]| + (7) |cpd_h2o[c]| + |cpd_fa171n8ACP[c]|
+ (13) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C181n7SN
name: Fatty acid biosynthesis (n-C18:1)
equation: '|cpd_actACP[c]| + (22) |cpd_h[c]| + (7) |cpd_malACP[c]| + (15) |cpd_nadph[c]|
=> (7) |cpd_ACP[c]| + (7) |cpd_co2[c]| + (8) |cpd_h2o[c]| + (15) |cpd_nadp[c]|
+ |cpd_fa181n7ACP[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C130OHISN
name: b-ketoacyl synthetase (Iso-C13:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa7ACP[c]| + (8) |cpd_h[c]| + (3) |cpd_malACP[c]| + (5) |cpd_nadph[c]|
=> (3) |cpd_ACP[c]| + (3) |cpd_co2[c]| + |cpd_fa130OH3ACP[c]| + (2) |cpd_h2o[c]| +
(5) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: 4HBASink
name: 4HBA compound Sink
equation: '|cpd_4hba[c]| => '
subsystem: Unassigned
- id: 4HBTE
name: 4-hydroxybenzoyl-CoA thioesterase
equation: '|cpd_4hbcoa[c]| + |cpd_h2o[c]| <=> |cpd_4hbz[c]| + |cpd_coa[c]| + |cpd_h[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 3.1.2.23
- id: 5DOAN
name: 5'-deoxyadenosine nuclosidase
equation: '|cpd_dad-5[c]| + |cpd_h2o[c]| => |cpd_5drib[c]| + |cpd_ade[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 3.2.2.7
- id: 5DRIB_Sink
name: 5DRIB compound Sink
equation: '|cpd_5drib[c]| => '
subsystem: Unassigned
ec: None
- id: A5PISO
name: arabinose-5-phosphate isomerase
equation: '|cpd_ru5p-D[c]| <=> |cpd_ara5p[c]|'
subsystem: Alternate Carbon Metabolism
ec: 5.3.1.13
- id: AACPS10
name: acyl-[acyl-carrier-protein] synthetase (n-C14:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa1[c]| => |cpd_amp[c]| + |cpd_fa1ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS11
name: acyl-[acyl-carrier-protein] synthetase (n-C15:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa3[c]| => |cpd_amp[c]| + |cpd_fa3ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS12
name: acyl-[acyl-carrier-protein] synthetase (n-C16:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa6[c]| => |cpd_amp[c]| + |cpd_fa6ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS13
name: acyl-[acyl-carrier-protein] synthetase (n-C17:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa11[c]| => |cpd_amp[c]| + |cpd_fa11ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS14
name: acyl-[acyl-carrier-protein] synthetase (n-C15:1)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_pde[c]| => |cpd_amp[c]| + |cpd_pdeACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS15
name: acyl-[acyl-carrier-protein] synthetase (n-C17:1)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_hpde[c]| => |cpd_amp[c]| + |cpd_hpdeACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS16
name: acyl-[acyl-carrier-protein] synthetase (n-C18:1)
equation: '|cpd_atp[c]| + |cpd_dodca[c]| + |cpd_ACP[c]| => |cpd_ddcaACP[c]| + |cpd_amp[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS3
name: acyl-[acyl-carrier-protein] synthetase (n-C16:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_hdca[c]| => |cpd_amp[c]| + |cpd_palmACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS4
name: acyl-[acyl-carrier-protein] synthetase (n-C16:1)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_hdcea[c]| => |cpd_amp[c]| + |cpd_hdeACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS5
name: acyl-[acyl-carrier-protein] synthetase (n-C18:1)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_ocdcea[c]| => |cpd_amp[c]| + |cpd_octeACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS6
name: acyl-[acyl-carrier-protein] synthetase (n-C15:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_ptdca[c]| => |cpd_amp[c]| + |cpd_pdACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS7
name: acyl-[acyl-carrier-protein] synthetase (n-C17:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_hpdca[c]| => |cpd_amp[c]| + |cpd_hpdACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS8
name: acyl-[acyl-carrier-protein] synthetase (n-C18:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_ocdca[c]| => |cpd_amp[c]| + |cpd_ocdACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: AACPS9
name: acyl-[acyl-carrier-protein] synthetase (n-C13:0)
equation: '|cpd_ACP[c]| + |cpd_atp[c]| + |cpd_fa13[c]| => |cpd_amp[c]| + |cpd_fa13ACP[c]|
+ |cpd_ppi[c]|'
subsystem: Cell Envelope Biosynthesis
ec: 2.3.1.-
- id: ABTA
name: 4-aminobutyrate transaminase
equation: '|cpd_4abut[c]| + |cpd_akg[c]| => |cpd_glu-L[c]| + |cpd_sucsal[c]|'
subsystem: Arginine and Proline Metabolism
ec: 2.6.1.19
- id: ACACCB
name: acetyl-CoA C-acetyltransferase
equation: '|cpd_aacoa[c]| + |cpd_coa[c]| <=> (2) |cpd_accoa[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 2.3.1.9
- id: ACACCT
name: acetyl-CoA:acetoacetyl-CoA transferase
equation: '|cpd_acac[c]| + |cpd_accoa[c]| => |cpd_aacoa[c]| + |cpd_ac[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 2.3.1.9
- id: ACACT10R
name: acetyl-CoA C-acyltransferase (2-Methyl-3-acetoacetyl-CoA)
equation: '|cpd_2maacoa[c]| + |cpd_coa[c]| => |cpd_accoa[c]| + |cpd_ppcoa[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 2.3.1.16
- id: ACALDi
name: acetaldehyde dehydrogenase (acetylating)
equation: '|cpd_acald[c]| + |cpd_coa[c]| + |cpd_nad[c]| => |cpd_accoa[c]| + |cpd_h[c]|
+ |cpd_nadh[c]|'
subsystem: Pyruvate Metabolism
ec: 1.2.1.10
- id: ACBIPGT
name: Adenosyl cobainamide GTP transferase
equation: '|cpd_adcobap[c]| + |cpd_gtp[c]| + |cpd_h[c]| => |cpd_adgcoba[c]| + |cpd_ppi[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.7.7.62
- id: ACCOAC
name: acetyl-CoA carboxylase
equation: '|cpd_accoa[c]| + |cpd_atp[c]| + |cpd_hco3[c]| => |cpd_adp[c]| + |cpd_h[c]|
+ |cpd_malcoa[c]| + |cpd_pi[c]|'
subsystem: Fatty Acid Synthesis
ec: 6.4.1.2
- id: ACCOAL
name: acetate-CoA ligase (ADP-forming)
equation: '|cpd_atp[c]| + |cpd_coa[c]| + |cpd_ppa[c]| => |cpd_adp[c]| + |cpd_pi[c]|
+ |cpd_ppcoa[c]|'
subsystem: Alternate Carbon Metabolism
ec: 6.2.1.17
- id: ACGAMK
name: N-acetylglucosamine kinase
equation: '|cpd_acgam[c]| + |cpd_atp[c]| => |cpd_acgam6p[c]| + |cpd_adp[c]| + |cpd_h[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.7.1.59
- id: ACGAt2
name: N-Acetyl-D-glucosamine transport via proton symport
equation: '|cpd_acgam[p]| + |cpd_h[p]| => |cpd_acgam[c]| + |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ACGK
name: acetylglutamate kinase
equation: '|cpd_acglu[c]| + |cpd_atp[c]| => |cpd_acg5p[c]| + |cpd_adp[c]|'
subsystem: Arginine and Proline Metabolism
ec: 2.7.2.8
- id: ACGS
name: N-acetylglutamate synthase
equation: '|cpd_accoa[c]| + |cpd_glu-L[c]| => |cpd_acglu[c]| + |cpd_coa[c]| + |cpd_h[c]|'
subsystem: Arginine and Proline Metabolism
ec: 2.3.1.1
- id: ACHBS
name: 2-aceto-2-hydroxybutanoate synthase
equation: '|cpd_2obut[c]| + |cpd_h[c]| + |cpd_pyr[c]| => |cpd_2ahbut[c]| + |cpd_co2[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 2.2.1.6
- id: ACKr
name: acetate kinase
equation: '|cpd_actp[c]| + |cpd_adp[c]| <=> |cpd_ac[c]| + |cpd_atp[c]|'
subsystem: Pyruvate Metabolism
ec: 2.7.2.1
- id: ACLS
name: acetolactate synthase (Also catalyzes ACHBS)
equation: '|cpd_h[c]| + (2) |cpd_pyr[c]| => |cpd_alac-S[c]| + |cpd_co2[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 2.2.1.6
- id: ACMAT1
name: Acyl-[acyl-carrier-protein]:malonyl-[acyl-carrier-protein] C-acyltransferase
(decarboxylating)
equation: '|cpd_acACP[c]| + |cpd_h[c]| + |cpd_malACP[c]| => |cpd_ACP[c]| + |cpd_actACP[c]|
+ |cpd_co2[c]|'
subsystem: Fatty Acid Synthesis
ec: 2.3.1.41
- id: ACOAD10
name: acyl-CoA dehydrogenase (2-methylbutanoyl-CoA)
equation: '|cpd_2mbcoa[c]| + |cpd_nad[c]| <=> |cpd_2mb2coa[c]| + |cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 1.3.99.12
- id: ACOAD8
name: acyl-CoA dehydrogenase (isovaleryl-CoA)
equation: '|cpd_ivcoa[c]| + |cpd_nad[c]| => |cpd_3mb2coa[c]| + |cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 1.3.8.4
- id: ACOAD9
name: acyl-CoA dehydrogenase (isobutyryl-CoA)
equation: '|cpd_ibcoa[c]| + |cpd_nad[c]| <=> |cpd_2mp2coa[c]| + |cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 1.3.99.-
- id: ACOATA
name: Acetyl-CoA ACP transacylase
equation: '|cpd_ACP[c]| + |cpd_accoa[c]| <=> |cpd_acACP[c]| + |cpd_coa[c]|'
subsystem: Fatty Acid Synthesis
ec: 2.3.1.180
- id: ACODA
name: acetylornithine deacetylase
equation: '|cpd_acorn[c]| + |cpd_h2o[c]| => |cpd_ac[c]| + |cpd_orn-L[c]|'
subsystem: Arginine and Proline Metabolism
ec: 3.5.1.16
- id: ACONT
name: aconitase
equation: '|cpd_cit[c]| <=> |cpd_icit[c]|'
subsystem: Citrate Cycle (TCA)
ec: 4.2.1.3
- id: ACOTA
name: acetylornithine transaminase
equation: '|cpd_acorn[c]| + |cpd_akg[c]| <=> |cpd_acg5sa[c]| + |cpd_glu-L[c]|'
subsystem: Arginine and Proline Metabolism
ec: 2.6.1.11
- id: ACPS1
name: acyl-carrier protein synthase
equation: '|cpd_apoACP[c]| + |cpd_coa[c]| => |cpd_ACP[c]| + |cpd_h[c]| + |cpd_pap[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.7.8.7
- id: ACPSc
name: '[acyl-carrier-protein] phosphodiesterase'
equation: '|cpd_ACP[c]| + |cpd_h2o[c]| => |cpd_apoACP[c]| + |cpd_h[c]| + |cpd_pan4p[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 3.1.4.14
- id: ACS
name: acetyl-CoA synthetase
equation: '|cpd_ac[c]| + |cpd_atp[c]| + |cpd_coa[c]| => |cpd_accoa[c]| + |cpd_amp[c]|
+ |cpd_ppi[c]|'
subsystem: Pyruvate Metabolism
ec: 6.2.1.1
- id: ACt6
name: acetate transport in/out via proton symport
equation: '|cpd_ac[p]| + |cpd_h[p]| <=> |cpd_ac[c]| + |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ADA
name: Adenosine deaminase
equation: '|cpd_adn[c]| + |cpd_h[c]| + |cpd_h2o[c]| => |cpd_ins[c]| + |cpd_nh4[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 3.5.4.4
- id: ADCL
name: 4-amino-4-deoxychorismate lyase
equation: '|cpd_4adcho[c]| => |cpd_4abz[c]| + |cpd_h[c]| + |cpd_pyr[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 4.1.3.38
- id: ADCOBAK
name: Adenosyl cobinamide kinase
equation: '|cpd_adcoba[c]| + |cpd_atp[c]| => |cpd_adcobap[c]| + |cpd_adp[c]| + |cpd_h[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.7.7.62
- id: ADCOBAS
name: adenosylcobinamide-phosphate synthase
equation: '|cpd_1ap2ol[c]| + |cpd_adcobhex[c]| + |cpd_atp[c]| + |cpd_h2o[c]| =>
|cpd_adcoba[c]| + |cpd_h2o[c]| + |cpd_pi[c]| + |cpd_adp[c]| + |cpd_h[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 6.3.1.10
- id: ADCOBHEXS
name: adenosylcobyric acid synthase
equation: '|cpd_adcobdam[c]| + (4) |cpd_atp[c]| + (4) |cpd_gln-L[c]| + (4) |cpd_h2o[c]|
=> |cpd_adcobhex[c]| + (4) |cpd_adp[c]| + (4) |cpd_glu-L[c]| + (4) |cpd_h[c]|
+ (4) |cpd_pi[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 6.3.5.10
- id: ADCS
name: 4-amino-4-deoxychorismate synthase
equation: '|cpd_chor[c]| + |cpd_gln-L[c]| => |cpd_4adcho[c]| + |cpd_glu-L[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.6.1.85
- id: ADHMCYSSYN
name: adenosylhomocysteinase
equation: '|cpd_ahcys[c]| + |cpd_h2o[c]| => |cpd_hcys-L[c]| + |cpd_adn[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 3.3.1.1
- id: ADK1
name: adenylate kinase
equation: '|cpd_amp[c]| + |cpd_atp[c]| <=> (2) |cpd_adp[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 2.7.4.3
- id: ADK3
name: guanylate kinase (aMP:gTP)
equation: '|cpd_amp[c]| + |cpd_gtp[c]| <=> |cpd_adp[c]| + |cpd_gdp[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 2.7.4.3
- id: ADK4
name: adentylate kinase (ITP)
equation: '|cpd_amp[c]| + |cpd_itp[c]| <=> |cpd_adp[c]| + |cpd_idp[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 2.7.4.3
- id: ADMDC
name: Adenosylmethionine decarboxylase
equation: '|cpd_amet[c]| + |cpd_h[c]| <=> |cpd_ametam[c]| + |cpd_co2[c]|'
subsystem: Arginine and Proline Metabolism
ec: 4.1.1.50
- id: ADNCYC
name: adenylate cyclase
equation: '|cpd_atp[c]| => |cpd_camp[c]| + |cpd_ppi[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 4.6.1.1
- id: ADNK1
name: adenosine kinase
equation: '|cpd_adn[c]| + |cpd_atp[c]| => |cpd_adp[c]| + |cpd_amp[c]| + |cpd_h[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 2.7.4.3
- id: ADNt2
name: adenosine transport in via proton symport
equation: '|cpd_adn[p]| + |cpd_h[p]| => |cpd_adn[c]| + |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ADPT
name: adenine phosphoribosyltransferase
equation: '|cpd_ade[c]| + |cpd_prpp[c]| => |cpd_amp[c]| + |cpd_ppi[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 2.4.2.7
- id: ADSK
name: adenylyl-sulfate kinase
equation: '|cpd_aps[c]| + |cpd_atp[c]| => |cpd_adp[c]| + |cpd_h[c]| + |cpd_paps[c]|'
subsystem: Cysteine Metabolism
ec: 2.7.1.25
- id: ADSL1r
name: adenylsuccinate lyase
equation: '|cpd_dcamp[c]| <=> |cpd_amp[c]| + |cpd_fum[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 4.3.2.2
- id: ADSL2r
name: adenylosuccinate lyase
equation: '|cpd_25aics[c]| <=> |cpd_aicar[c]| + |cpd_fum[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 4.3.2.2
- id: ADSS
name: adenylosuccinate synthetase
equation: '|cpd_asp-L[c]| + |cpd_gtp[c]| + |cpd_imp[c]| => |cpd_dcamp[c]| + |cpd_gdp[c]|
+ (2) |cpd_h[c]| + |cpd_pi[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 6.3.4.4
- id: AGDC
name: N-acetylglucosamine-6-phosphate deacetylase
equation: '|cpd_acgam6p[c]| + |cpd_h2o[c]| => |cpd_ac[c]| + |cpd_gam6p[c]|'
subsystem: Alternate Carbon Metabolism
ec: 3.5.1.25
- id: AGMAHYD
name: Agmatine ureohydrolase
equation: '|cpd_agm[c]| + |cpd_h2o[c]| => |cpd_ptrc[c]| + |cpd_urea[c]|'
subsystem: Arginine and Proline Metabolism
ec: 3.5.3.11
- id: AGPEPHOS
name: Lysophospholipase
equation: '|cpd_agpe[c]| + |cpd_h2o[c]| => |cpd_ac[c]| + |cpd_g3pe[c]|'
subsystem: Fatty Acid Synthesis
ec: 3.1.1.5
- id: AGPR
name: N-acetyl-g-glutamyl-phosphate reductase
equation: '|cpd_acg5sa[c]| + |cpd_nadp[c]| + |cpd_pi[c]| <=> |cpd_acg5p[c]| + |cpd_h[c]|
+ |cpd_nadph[c]|'
subsystem: Arginine and Proline Metabolism
ec: 1.2.1.38
- id: AHAI
name: acetohydroxy acid isomeroreductase
equation: '|cpd_alac-S[c]| + |cpd_h[c]| + |cpd_nadph[c]| => |cpd_23dhmb[c]| + |cpd_nadp[c]|'
subsystem: Valine, Leucine, and Isoleucine Metabolism
ec: 1.1.1.86
- id: AHCYSNS
name: adenosylhomocysteine nucleosidase
equation: '|cpd_ahcys[c]| + |cpd_h2o[c]| => |cpd_ade[c]| + |cpd_rhcys[c]|'
subsystem: Methionine Metabolism
ec: 3.2.2.9
- id: AHSERL
name: O-acetylhomoserine (thiol)-lyase
equation: '|cpd_achms[c]| + |cpd_ch4s[c]| => |cpd_ac[c]| + |cpd_h[c]| + |cpd_met-L[c]|'
subsystem: Methionine Metabolism
ec: 2.5.1.49
- id: AHSERL2
name: O-acetylhomoserine (thiol)-lyase
equation: '|cpd_achms[c]| + |cpd_h2s[c]| => |cpd_ac[c]| + |cpd_hcys-L[c]|'
subsystem: Methionine Metabolism
ec: 2.5.1.49
- id: AICART
name: phosphoribosylaminoimidazolecarboxamide formyltransferase
equation: '|cpd_10fthf[c]| + |cpd_aicar[c]| <=> |cpd_fprica[c]| + |cpd_thf[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 3.5.4.10
- id: AIRC2
name: phosphoribosylaminoimidazole carboxylase
equation: '|cpd_air[c]| + |cpd_atp[c]| + |cpd_hco3[c]| => |cpd_5caiz[c]| + |cpd_adp[c]|
+ |cpd_h[c]| + |cpd_pi[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 6.3.4.18
- id: AIRC3
name: phosphoribosylaminoimidazole carboxylase (mutase rxn)
equation: '|cpd_5aizc[c]| <=> |cpd_5caiz[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 5.4.99.18
- id: AKGD
name: 2-oxoglutarate dehydrogenase
equation: '|cpd_akg[c]| + |cpd_coa[c]| + |cpd_nad[c]| => |cpd_co2[c]| + |cpd_nadh[c]|
+ |cpd_succoa[c]|'
subsystem: Citrate Cycle (TCA)
ec: 1.2.4.2
- id: AKPPT
name: phosphonoacetate hydrolase
equation: '|cpd_phnac[c]| + |cpd_h2o[c]| => |cpd_ac[c]| + |cpd_pi[c]|'
subsystem: Alternate Carbon Metabolism
ec: 3.11.1.2
- id: ALAALA
name: D-alanine-D-alanine ligase (reversible)
equation: (2) |cpd_ala-D[c]| + |cpd_atp[c]| <=> |cpd_adp[c]| + |cpd_alaala[c]| +
|cpd_h[c]| + |cpd_pi[c]|
subsystem: Cell Envelope Biosynthesis
ec: 6.3.2.4
- id: ALAD_L
name: L-alanine dehydrogenase
equation: '|cpd_ala-L[c]| + |cpd_h2o[c]| + |cpd_nad[c]| => |cpd_h[c]| + |cpd_nadh[c]|
+ |cpd_nh4[c]| + |cpd_pyr[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 1.4.1.1
- id: ALAGLYX
name: Alanine-glyoxylate transaminase
equation: '|cpd_ala-L[c]| + |cpd_glx[c]| <=> |cpd_pyr[c]| + |cpd_gly[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 2.6.1.44
- id: ALAR
name: alanine racemase
equation: '|cpd_ala-L[c]| <=> |cpd_ala-D[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 5.1.1.1
- id: ALATA_D2
name: D-alanine transaminase
equation: '|cpd_ala-D[c]| + |cpd_pydx5p[c]| => |cpd_pyam5p[c]| + |cpd_pyr[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.1.2.1
- id: ALATA_L
name: L-alanine transaminase
equation: '|cpd_akg[c]| + |cpd_ala-L[c]| <=> |cpd_glu-L[c]| + |cpd_pyr[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 2.6.1.66
- id: ALATA_L2
name: alanine transaminase
equation: '|cpd_ala-L[c]| + |cpd_pydx5p[c]| => |cpd_pyam5p[c]| + |cpd_pyr[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.1.2.1
- id: ALATRS
name: Alanyl-tRNA synthetase
equation: '|cpd_ala-L[c]| + |cpd_atp[c]| + |cpd_trnaala[c]| => |cpd_alatrna[c]|
+ |cpd_amp[c]| + |cpd_ppi[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 6.1.1.7
- id: ALA_Dt4
name: D-Alanine-Sodium symporter
equation: '|cpd_ala-D[p]| + |cpd_na1[p]| => |cpd_ala-D[c]| + |cpd_na1[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ALAt4
name: Alanine-Sodium symporter
equation: '|cpd_ala-L[p]| + |cpd_na1[p]| => |cpd_ala-L[c]| + |cpd_na1[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ALCD2x
name: 'alcohol dehydrogenase (ethanol: NAD)'
equation: '|cpd_etoh[c]| + |cpd_nad[c]| <=> |cpd_acald[c]| + |cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Alternate Carbon Metabolism
ec: 1.2.1.10
- id: ALDD2x
name: aldehyde dehydrogenase (acetaldehyde, NAD)
equation: '|cpd_acald[c]| + |cpd_h2o[c]| + |cpd_nad[c]| => |cpd_ac[c]| + (2) |cpd_h[c]|
+ |cpd_nadh[c]|'
subsystem: Alternate Carbon Metabolism
ec: 1.2.1.3
- id: AMAA
name: N-acetylmuramoyl-L-alanine amidase
equation: '|cpd_acmama[c]| + |cpd_h2o[c]| => |cpd_acmam[c]| + |cpd_ala-L[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 3.5.1.28
- id: AMALT1
name: Amylomaltase (maltotriose)
equation: '|cpd_malt[c]| + |cpd_malttr[c]| => |cpd_glc-D[c]| + |cpd_maltttr[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.4.1.25
- id: AMALT2
name: Amylomaltase (maltotetraose)
equation: '|cpd_malt[c]| + |cpd_maltttr[c]| => |cpd_glc-D[c]| + |cpd_maltpt[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.4.1.25
- id: AMALT3
name: Amylomaltase (maltopentaose)
equation: '|cpd_malt[c]| + |cpd_maltpt[c]| => |cpd_glc-D[c]| + |cpd_malthx[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.4.1.25
- id: AMALT4
name: Amylomaltase (maltohexaose)
equation: '|cpd_malt[c]| + |cpd_malthx[c]| => |cpd_glc-D[c]| + |cpd_malthp[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.4.1.25
- id: AMAOT
name: adenosylmethionine-8-amino-7-oxononanoate transaminase
equation: '|cpd_8aonn[c]| + |cpd_amet[c]| <=> |cpd_amob[c]| + |cpd_dann[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.6.1.62
- id: AMMQT7_2
name: S-adenosylmethione:2-demthylmenaquinone methyltransferase (menaquinone 7)
equation: '|cpd_2dmmq7[c]| + |cpd_amet[c]| => |cpd_ahcys[c]| + |cpd_h[c]| + |cpd_mqn7[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.1.1.201
- id: AMOB_Sink
name: AMOB compound Sink
equation: '|cpd_amob[c]| => '
subsystem: Unassigned
ec: None
- id: AMPMS2
name: 4-amino-2-methyl-5-phosphomethylpyrimidine synthetase
equation: '|cpd_air[c]| + |cpd_h2o[c]| + |cpd_nad[c]| => |cpd_4ampm[c]| + (2) |cpd_for[c]|
+ (3) |cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 4.1.99.17
- id: ANPRT
name: anthranilate phosphoribosyltransferase
equation: '|cpd_anth[c]| + |cpd_prpp[c]| => |cpd_ppi[c]| + |cpd_pran[c]|'
subsystem: Tyrosine, Tryptophan, and Phenylalanine Metabolism
ec: 2.4.2.18
- id: ANS1
name: anthranilate synthase
equation: '|cpd_chor[c]| + |cpd_gln-L[c]| => |cpd_anth[c]| + |cpd_glu-L[c]| + |cpd_h[c]|
+ |cpd_pyr[c]|'
subsystem: Tyrosine, Tryptophan, and Phenylalanine Metabolism
ec: 4.1.3.27
- id: AOXS
name: 8-amino-7-oxononanoate synthase
equation: '|cpd_ala-L[c]| + |cpd_h[c]| + |cpd_pmcoa[c]| <=> |cpd_8aonn[c]| + |cpd_co2[c]|
+ |cpd_coa[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.3.1.47
- id: AP4AH
name: bis(5'-nucleosyl)-tetraphosphatase
equation: '|cpd_ap4a[c]| + |cpd_h2o[c]| => (2) |cpd_adp[c]| + (2) |cpd_h[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 3.6.1.41
- id: AP5AH
name: Ap5A hydrolase
equation: '|cpd_ap5a[c]| + |cpd_h2o[c]| => |cpd_adp[c]| + |cpd_atp[c]| + (2) |cpd_h[c]|'
subsystem: Nucleotide Salvage Pathways
ec: 3.6.1.41
- id: APRAUR
name: 5-amino-6-(5-phosphoribosylamino)uracil reductase
equation: '|cpd_5apru[c]| + |cpd_h[c]| + |cpd_nadph[c]| => |cpd_5aprbu[c]| + |cpd_nadp[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 3.5.4.26
- id: ARGDC
name: arginine decarboxylase
equation: '|cpd_arg-L[c]| + |cpd_h[c]| => |cpd_agm[c]| + |cpd_co2[c]|'
subsystem: Arginine and Proline Metabolism
ec: 4.1.1.19
- id: ARGSL
name: argininosuccinate lyase
equation: '|cpd_argsuc[c]| <=> |cpd_arg-L[c]| + |cpd_fum[c]|'
subsystem: Arginine and Proline Metabolism
ec: 4.3.2.1
- id: ARGSS
name: argininosuccinate synthase
equation: '|cpd_asp-L[c]| + |cpd_atp[c]| + |cpd_citr-L[c]| => |cpd_amp[c]| + |cpd_argsuc[c]|
+ |cpd_h[c]| + |cpd_ppi[c]|'
subsystem: Arginine and Proline Metabolism
ec: 6.3.4.5
- id: ARGTRS
name: Arginyl-tRNA synthetase
equation: '|cpd_arg-L[c]| + |cpd_atp[c]| + |cpd_trnaarg[c]| => |cpd_amp[c]| + |cpd_argtrna[c]|
+ |cpd_ppi[c]|'
subsystem: Arginine and Proline Metabolism
ec: 6.1.1.19
- id: ARSRD2
name: arsenate reductase (glutaredoxin)
equation: '|cpd_arsna[c]| + (2) |cpd_gthrd[c]| + (2) |cpd_h[c]| => |cpd_arsni2[c]|
+ |cpd_gthox[c]| + |cpd_h2o[c]|'
subsystem: Energy Metabolism
ec: 1.20.4.1
- id: ARSt1
name: arsenite transporter via uniport
equation: '|cpd_arsni2[c]| => |cpd_arsni2[p]|'
subsystem: Transport, Extracellular
ec: None
- id: ASAD
name: aspartate-semialdehyde dehydrogenase
equation: '|cpd_aspsa[c]| + |cpd_nadp[c]| + |cpd_pi[c]| <=> |cpd_4pasp[c]| + |cpd_h[c]|
+ |cpd_nadph[c]|'
subsystem: Threonine and Lysine Metabolism
ec: 1.2.1.11
- id: ASNN
name: L-asparaginase
equation: '|cpd_asn-L[c]| + |cpd_h2o[c]| => |cpd_asp-L[c]| + |cpd_nh4[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 1.20.4.1
- id: ASNS1
name: asparagine synthase (glutamine-hydrolysing)
equation: '|cpd_asp-L[c]| + |cpd_atp[c]| + |cpd_gln-L[c]| + |cpd_h2o[c]| => |cpd_amp[c]|
+ |cpd_asn-L[c]| + |cpd_glu-L[c]| + |cpd_h[c]| + |cpd_ppi[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 6.3.5.4
- id: ASNTRS
name: Asparaginyl-tRNA synthetase
equation: '|cpd_asn-L[c]| + |cpd_atp[c]| + |cpd_trnaasn[c]| => |cpd_amp[c]| + |cpd_asntrna[c]|
+ |cpd_ppi[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 6.1.1.22
- id: ASP1DC
name: aspartate 1-decarboxylase
equation: '|cpd_asp-L[c]| + |cpd_h[c]| => |cpd_ala-B[c]| + |cpd_co2[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 4.1.1.11
- id: ASPCT
name: aspartate carbamoyltransferase
equation: '|cpd_asp-L[c]| + |cpd_cbp[c]| => |cpd_cbasp[c]| + |cpd_h[c]| + |cpd_pi[c]|'
subsystem: Purine and Pyrimidine Metabolism
ec: 2.1.3.2
- id: ASPK
name: aspartate kinase
equation: '|cpd_asp-L[c]| + |cpd_atp[c]| <=> |cpd_4pasp[c]| + |cpd_adp[c]|'
subsystem: Threonine and Lysine Metabolism
ec: 2.7.2.4
- id: ASPO3
name: L-aspartate oxidase
equation: '|cpd_asp-L[c]| + |cpd_ubq8[c]| => |cpd_h[c]| + |cpd_iasp[c]| + |cpd_ubq8h2[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.4.3.16
- id: ASPO5
name: L-aspartate oxidase
equation: '|cpd_asp-L[c]| + |cpd_fum[c]| => |cpd_h[c]| + |cpd_iasp[c]| + |cpd_succ[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.4.3.16
- id: ASPO6
name: L-aspartate oxidase
equation: '|cpd_asp-L[c]| + |cpd_o2[c]| => |cpd_h[c]| + |cpd_h2o2[c]| + |cpd_iasp[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.4.3.16
- id: ASPO8
name: L-aspartate oxidase
equation: '|cpd_asp-L[c]| + |cpd_mqn7[c]| => |cpd_h[c]| + |cpd_iasp[c]| + |cpd_mql7[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.4.3.16
- id: ASPO9
name: L-aspartate oxidase
equation: '|cpd_asp-L[c]| + |cpd_mmqn7[c]| => |cpd_h[c]| + |cpd_iasp[c]| + |cpd_mmql7[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.4.3.16
- id: ASPTA1
name: aspartate transaminase
equation: '|cpd_akg[c]| + |cpd_asp-L[c]| <=> |cpd_glu-L[c]| + |cpd_oaa[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 2.6.1.57
- id: ASPTA4
name: aspartate transaminase
equation: '|cpd_akg[c]| + |cpd_cys-L[c]| <=> |cpd_glu-L[c]| + |cpd_mercppyr[c]|'
subsystem: Cysteine Metabolism
ec: 2.6.1.57
- id: ASPTRS
name: Aspartyl-tRNA synthetase
equation: '|cpd_asp-L[c]| + |cpd_atp[c]| + |cpd_trnaasp[c]| => |cpd_amp[c]| + |cpd_asptrna[c]|
+ |cpd_ppi[c]|'
subsystem: Alanine and Aspartate Metabolism
ec: 6.1.1.12
- id: ASPt2
name: L-Aspartate transport
equation: '|cpd_asp-L[p]| + |cpd_h[p]| => |cpd_asp-L[c]| + |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: ASPt2_3
name: L-asparate transport via proton symport (3 H)
equation: '|cpd_asp-L[p]| + (3) |cpd_h[p]| => |cpd_asp-L[c]| + (3) |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: AST
name: Arginine succinyltransferase
equation: '|cpd_arg-L[c]| + |cpd_succoa[c]| => |cpd_coa[c]| + |cpd_h[c]| + |cpd_sucarg[c]|'
subsystem: Arginine and Proline Metabolism
ec: 2.3.1.109
- id: ATPPRT
name: ATP phosphoribosyltransferase
equation: '|cpd_atp[c]| + |cpd_prpp[c]| => |cpd_ppi[c]| + |cpd_prbatp[c]|'
subsystem: Histidine Metabolism
ec: 2.4.2.17
- id: ATPS4r
name: ATP synthase (four protons for one ATP)
equation: '|cpd_adp[c]| + (3) |cpd_h[p]| + |cpd_pi[c]| <=> |cpd_atp[c]| + (2) |cpd_h[c]|
+ |cpd_h2o[c]|'
subsystem: Energy Metabolism
ec: None
- id: BETALDHx
name: betaine-aldehyde dehydrogenase
equation: '|cpd_betald[c]| + |cpd_h2o[c]| + |cpd_nad[c]| => |cpd_glyb[c]| + (2)
|cpd_h[c]| + |cpd_nadh[c]|'
subsystem: Glycine and Serine Metabolism
ec: 1.2.1.27
- id: BETALDHy
name: betaine-aldehyde dehydrogenase
equation: '|cpd_betald[c]| + |cpd_h2o[c]| + |cpd_nadp[c]| => |cpd_glyb[c]| + (2)
|cpd_h[c]| + |cpd_nadph[c]|'
subsystem: Glycine and Serine Metabolism
ec: 1.2.1.27
- id: BGLP
name: cellobiose/beta-glucoside permease
equation: '|cpd_bgl[p]| + |cpd_h[p]| => |cpd_bgl[c]| + |cpd_h[c]|'
subsystem: Transport, Extracellular
ec: None
- id: BGLP2
name: cellobiose/beta-glucoside permease
equation: '|cpd_bgl[p]| + |cpd_na1[p]| => |cpd_bgl[c]| + |cpd_na1[c]|'
subsystem: Transport, Extracellular
ec: None
- id: BGLS
name: beta-glucosidase [cellobiase]
equation: '|cpd_bgl[c]| + |cpd_h2o[c]| => (2) |cpd_glc-D[c]|'
subsystem: Alternate Carbon Metabolism
ec: 3.2.1.23
- id: BGLSp
name: Periplasmic b-glucosidase
equation: '|cpd_bgl[p]| + |cpd_h2o[p]| => (2) |cpd_glc-D[p]|'
subsystem: Alternate Carbon Metabolism
ec: 3.2.1.21
- id: BPNT
name: 3',5'-bisphosphate nucleotidase
equation: '|cpd_h2o[c]| + |cpd_pap[c]| => |cpd_amp[c]| + |cpd_pi[c]|'
subsystem: Cysteine Metabolism
ec: 3.1.3.7
- id: BTS4
name: biotin synthase condensed reaction
equation: '|cpd_amet[c]| + |cpd_dtbt[c]| + |cpd_cys-L[c]| <=> |cpd_met-L[c]| + |cpd_btn[c]|
+ |cpd_h[c]| + |cpd_dad-5[c]| + |cpd_ala-L[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.8.1.6
- id: BUTSUCCCOA
name: Succinyl-CoA:butyrate-CoA transferase
equation: '|cpd_succoa[c]| + |cpd_but[c]| <=> |cpd_succ[c]| + |cpd_btcoa[c]|'
subsystem: Alternate Carbon Metabolism
ec: 2.8.3.5
- id: C120SN
name: Fatty acid biosynthesis (n-C12:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_actACP[c]| + (14) |cpd_h[c]| + (4) |cpd_malACP[c]| + (10) |cpd_nadph[c]|
=> (4) |cpd_ACP[c]| + (4) |cpd_co2[c]| + |cpd_ddcaACP[c]| + (5) |cpd_h2o[c]| +
(10) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C130ISN
name: b-ketoacyl synthetase (Iso-C13:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa7ACP[c]| + (9) |cpd_h[c]| + (3) |cpd_malACP[c]| + (6) |cpd_nadph[c]|
=> (3) |cpd_ACP[c]| + (3) |cpd_co2[c]| + |cpd_fa13ACP[c]| + (3) |cpd_h2o[c]| +
(6) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C140ISN
name: b-ketoacyl synthetase (Iso-C14:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa8ACP[c]| + (12) |cpd_h[c]| + (4) |cpd_malACP[c]| + (8) |cpd_nadph[c]|
=> (4) |cpd_ACP[c]| + (4) |cpd_co2[c]| + |cpd_fa1ACP[c]| + (4) |cpd_h2o[c]| +
(8) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C140SN
name: Fatty acid biosynthesis (n-C14:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_actACP[c]| + (17) |cpd_h[c]| + (5) |cpd_malACP[c]| + (12) |cpd_nadph[c]|
=> (5) |cpd_ACP[c]| + (5) |cpd_co2[c]| + (6) |cpd_h2o[c]| + |cpd_myrsACP[c]| +
(12) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C150ISN
name: b-ketoacyl synthetase (Iso-C15:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa7ACP[c]| + (12) |cpd_h[c]| + (4) |cpd_malACP[c]| + (8) |cpd_nadph[c]|
=> (4) |cpd_ACP[c]| + (4) |cpd_co2[c]| + |cpd_fa3ACP[c]| + (4) |cpd_h2o[c]| +
(8) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C150SN
name: b-ketoacyl synthetase (C15:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa14ACP[c]| + (15) |cpd_h[c]| + (5) |cpd_malACP[c]| + (10) |cpd_nadph[c]|
=> (5) |cpd_ACP[c]| + (5) |cpd_co2[c]| + (5) |cpd_h2o[c]| + (10) |cpd_nadp[c]|
+ |cpd_pdACP[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C151SN
name: Fatty acid biosynthesis (n-C15:1)
equation: (17) |cpd_h[c]| + (6) |cpd_malACP[c]| + (11) |cpd_nadph[c]| + |cpd_ppcoa[c]|
=> (5) |cpd_ACP[c]| + (6) |cpd_co2[c]| + |cpd_coa[c]| + (6) |cpd_h2o[c]| + (11)
|cpd_nadp[c]| + |cpd_pdeACP[c]|
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C160ISN
name: b-ketoacyl synthetase (Iso-C16:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa8ACP[c]| + (15) |cpd_h[c]| + (5) |cpd_malACP[c]| + (10) |cpd_nadph[c]|
=> (5) |cpd_ACP[c]| + (5) |cpd_co2[c]| + |cpd_fa6ACP[c]| + (5) |cpd_h2o[c]| +
(10) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C160SN
name: Fatty acid biosynthesis (n-C16:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_actACP[c]| + (20) |cpd_h[c]| + (6) |cpd_malACP[c]| + (14) |cpd_nadph[c]|
=> (6) |cpd_ACP[c]| + (6) |cpd_co2[c]| + (7) |cpd_h2o[c]| + (14) |cpd_nadp[c]|
+ |cpd_palmACP[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C161SN
name: Fatty acid biosynthesis (n-C16:1)
equation: '|cpd_actACP[c]| + (19) |cpd_h[c]| + (6) |cpd_malACP[c]| + (13) |cpd_nadph[c]|
=> (6) |cpd_ACP[c]| + (6) |cpd_co2[c]| + (7) |cpd_h2o[c]| + |cpd_hdeACP[c]| +
(13) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C170ISN
name: b-ketoacyl synthetase (Iso-C17:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa7ACP[c]| + (15) |cpd_h[c]| + (5) |cpd_malACP[c]| + (10) |cpd_nadph[c]|
=> (5) |cpd_ACP[c]| + (5) |cpd_co2[c]| + |cpd_fa11ACP[c]| + (5) |cpd_h2o[c]| +
(10) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C170SN
name: b-ketoacyl synthetase (C17:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_fa14ACP[c]| + (18) |cpd_h[c]| + (6) |cpd_malACP[c]| + (12) |cpd_nadph[c]|
=> (6) |cpd_ACP[c]| + (6) |cpd_co2[c]| + (6) |cpd_h2o[c]| + |cpd_hpdACP[c]| +
(12) |cpd_nadp[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C171SN
name: b-ketoacyl synthetase (C17:1)
equation: (20) |cpd_h[c]| + (7) |cpd_malACP[c]| + (13) |cpd_nadph[c]| + |cpd_ppcoa[c]|
=> (6) |cpd_ACP[c]| + (7) |cpd_co2[c]| + |cpd_coa[c]| + (7) |cpd_h2o[c]| + |cpd_hpdeACP[c]|
+ (13) |cpd_nadp[c]|
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C180SN
name: Fatty acid biosynthesis (n-C18:0)
and swp_3510 and swp_3256) or (swp_2802 and swp_3121 and swp_3045 and swp_3256)
or (swp_3045 and swp_3510 and swp_3042 and swp_3256)
equation: '|cpd_actACP[c]| + (23) |cpd_h[c]| + (7) |cpd_malACP[c]| + (16) |cpd_nadph[c]|
=> (7) |cpd_ACP[c]| + (7) |cpd_co2[c]| + (8) |cpd_h2o[c]| + (16) |cpd_nadp[c]|
+ |cpd_ocdACP[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C181SN
name: Fatty acid biosynthesis (n-C18:1)
equation: '|cpd_actACP[c]| + (22) |cpd_h[c]| + (7) |cpd_malACP[c]| + (15) |cpd_nadph[c]|
=> (7) |cpd_ACP[c]| + (7) |cpd_co2[c]| + (8) |cpd_h2o[c]| + (15) |cpd_nadp[c]|
+ |cpd_octeACP[c]|'
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C205SN
name: EPA synthesis condensed reaction
equation: '|cpd_actACP[c]| + (21) |cpd_h[c]| + (8) |cpd_malACP[c]| + (13) |cpd_nadph[c]|
=> (8) |cpd_ACP[c]| + (8) |cpd_co2[c]| + (9) |cpd_h2o[c]| + (13) |cpd_nadp[c]|
+ |cpd_epa[c]|'
subsystem: Fatty Acid Synthesis
ec: 3.1.2.2
- id: C50SN
name: Fatty acid biosynthesis (n-C5:0)
and swp_3045 and swp_3256) or (swp_2802 and swp_3045 and swp_3047 and swp_3256)
or (swp_3045 and swp_3510 and swp_3047 and swp_3256) or (swp_3256 and swp_2802
and swp_1980 and swp_3045) or (swp_3045 and swp_3510 and swp_1980 and swp_3256)
equation: (3) |cpd_h[c]| + |cpd_malACP[c]| + (2) |cpd_nadph[c]| + |cpd_ppcoa[c]|
=> |cpd_co2[c]| + |cpd_coa[c]| + |cpd_fa14ACP[c]| + |cpd_h2o[c]| + (2) |cpd_nadp[c]|
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C60ISN
name: b-ketoacyl synthetase (Iso-C6:0)
and swp_3045 and swp_3256) or (swp_2802 and swp_3045 and swp_3047 and swp_3256)
or (swp_3045 and swp_3510 and swp_3047 and swp_3256) or (swp_3256 and swp_2802
and swp_1980 and swp_3045) or (swp_3045 and swp_3510 and swp_1980 and swp_3256)
equation: (3) |cpd_h[c]| + |cpd_ibcoa[c]| + |cpd_malACP[c]| + (2) |cpd_nadph[c]|
=> |cpd_co2[c]| + |cpd_coa[c]| + |cpd_fa8ACP[c]| + |cpd_h2o[c]| + (2) |cpd_nadp[c]|
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: C70ISN
name: b-ketoacyl synthetase (Iso-C7:0)
and swp_3045 and swp_3256) or (swp_2802 and swp_3045 and swp_3047 and swp_3256)
or (swp_3045 and swp_3510 and swp_3047 and swp_3256) or (swp_3256 and swp_2802
and swp_1980 and swp_3045) or (swp_3045 and swp_3510 and swp_1980 and swp_3256)
equation: (3) |cpd_h[c]| + |cpd_ivcoa[c]| + |cpd_malACP[c]| + (2) |cpd_nadph[c]|
=> |cpd_co2[c]| + |cpd_coa[c]| + |cpd_fa7ACP[c]| + |cpd_h2o[c]| + (2) |cpd_nadp[c]|
subsystem: Fatty Acid Synthesis
ec: 1.3.1.44
- id: CAT
name: catalase
equation: (2) |cpd_h2o2[c]| => (2) |cpd_h2o[c]| + |cpd_o2[c]|
subsystem: Unassigned
ec: 1.11.1.6
- id: CBIAT
name: Cobinamide adenyltransferase
equation: '|cpd_atp[c]| + |cpd_cbi[c]| + |cpd_h2o[c]| <=> |cpd_adcoba[c]| + |cpd_pi[c]|
+ |cpd_ppi[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.5.1.17
- id: CBL1abc
name: Cob(1)alamin transport via ABC system
equation: '|cpd_atp[c]| + |cpd_cbl1[p]| + |cpd_h2o[c]| => |cpd_adp[c]| + |cpd_cbl1[c]|
+ |cpd_h[c]| + |cpd_pi[c]|'
subsystem: Transport, Extracellular
ec: None
- id: CBLAT
name: cob(I)alamin adenosyltransferase
equation: '|cpd_atp[c]| + |cpd_cbl1[c]| + |cpd_h2o[c]| <=> |cpd_cobamcoa[c]| + |cpd_pi[c]|
+ |cpd_ppi[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.5.1.17
- id: CBLTR3
name: Co(III) Reductase
equation: (2) |cpd_cobalt3[e]| + |cpd_mql7[c]| => (2) |cpd_cobalt2[e]| + (2) |cpd_h[e]|
+ |cpd_mqn7[c]|
subsystem: Energy Metabolism
- id: CBLTR4
name: Co(III) Reductase
equation: (2) |cpd_cobalt3[e]| + |cpd_mmql7[c]| => (2) |cpd_cobalt2[e]| + (2) |cpd_h[e]|
+ |cpd_mmqn7[c]|
subsystem: Energy Metabolism
- id: CBPS
name: carbamoyl-phosphate synthase (glutamine-hydrolysing)
equation: (2) |cpd_atp[c]| + |cpd_gln-L[c]| + |cpd_h2o[c]| + |cpd_hco3[c]| => (2)
|cpd_adp[c]| + |cpd_cbp[c]| + |cpd_glu-L[c]| + (2) |cpd_h[c]| + |cpd_pi[c]|
subsystem: Arginine and Proline Metabolism
ec: 6.3.5.5
- id: CDPMEK
name: 4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase
equation: '|cpd_4c2me[c]| + |cpd_atp[c]| => |cpd_2p4c2me[c]| + |cpd_adp[c]| + |cpd_h[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 2.7.1.148
- id: CHITINS
name: chitinase
equation: '|cpd_chitin[e]| + |cpd_h2o[e]| => (2) |cpd_chitob[e]|'
subsystem: Alternate Carbon Metabolism
ec: 3.2.1.14
- id: CHOLDH1
name: choline dehydrogenase
equation: '|cpd_chol[c]| + |cpd_fad[c]| => |cpd_betald[c]| + |cpd_fadh2[c]|'
subsystem: Cofactor and Prosthetic Group Biosynthesis
ec: 1.1.99.1