-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreactions.yaml
2079 lines (2079 loc) · 69.6 KB
/
reactions.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: R001
equation: GLC[cell] <=> bDGLC[cell]
- id: R002
equation: G6P[cell] <=> bDG6P[cell]
- id: R003
equation: A6P[cell] => HQ[cell] + bDG6P[cell]
- id: R004
equation: G6P[cell] <=> F6P[cell]
- id: R005
equation: bDG6P[cell] <=> F6P[cell]
- id: R006
equation: G6P[cell] <=> G1P[cell]
- id: R007
equation: F6P[cell] + ATP[cell] => FDP[cell] + ADP[cell]
- id: R008
equation: FDP[cell] => F6P[cell] + PI[cell]
- id: R009
equation: FDP[cell] <=> G3P[cell] + DHAP[cell]
- id: R010
equation: DHAP[cell] <=> G3P[cell]
- id: R011
equation: G3P[cell] + PI[cell] + NAD[cell] <=> NADH[cell] + a_13PDG[cell]
- id: R012
equation: a_13PDG[cell] + ADP[cell] <=> a_3PG[cell] + ATP[cell]
- id: R013
equation: a_13PDG[cell] + ADP[cell] => a_3PG[cell] + ATP[cell]
- id: R014
equation: a_3PG[cell] <=> a_2PG[cell]
- id: R015
equation: a_2PG[cell] <=> PEP[cell]
- id: R016
equation: PEP[cell] + ADP[cell] => PYR[cell] + ATP[cell]
- id: R017
equation: SLAC[cell] + NAD[cell] <=> PYR[cell] + NADH[cell]
- id: R018
equation: PYR[cell] + LIPO[cell] => ADLIPO[cell] + CO2[cell]
- id: R019
equation: COA[cell] + ADLIPO[cell] => DLIPO[cell] + ACCOA[cell]
- id: R020
equation: DLIPO[cell] + NAD[cell] => LIPO[cell] + NADH[cell]
- id: R021
equation: ATP[cell] + AC[cell] + COA[cell] <=> AMP[cell] + PPI[cell] + ACCOA[cell]
- id: R022
equation: ACAL[cell] + NAD[cell] => NADH[cell] + AC[cell]
- id: R023
equation: ACAL[cell] + NADH[cell] <=> ETH[cell] + NAD[cell]
- id: R024
equation: ACCOA[cell] + OA[cell] => COA[cell] + CIT[cell]
- id: R025
equation: CIT[cell] <=> ICIT[cell]
- id: R026
equation: ICIT[cell] + NADP[cell] => NADPH[cell] + AKG[cell] + CO2[cell]
- id: R027
equation: AKG[cell] + LIPO[cell] => SDLIPO[cell] + CO2[cell]
- id: R028
equation: SDLIPO[cell] + COA[cell] => DLIPO[cell] + SUCCOA[cell]
- id: R029
equation: ADP[cell] + PI[cell] + SUCCOA[cell] <=> ATP[cell] + SUCC[cell] + COA[cell]
- id: R030
equation: SUCC[cell] + FAD[cell] => FUM[cell] + FADH2[cell]
- id: R031
equation: FUM[cell] + MKH2[cell] => SUCC[cell] + MK[cell]
- id: R032
equation: FUM[cell] + DMKH2[cell] => SUCC[cell] + DMK[cell]
- id: R033
equation: FUM[cell] <=> MAL[cell]
- id: R034
equation: MAL[cell] + NAD[cell] <=> NADH[cell] + OA[cell]
- id: R035
equation: G6P[cell] + NADP[cell] => D6PGL[cell] + NADPH[cell]
- id: R036
equation: G6P[cell] + NAD[cell] => D6PGL[cell] + NADH[cell]
- id: R037
equation: D6PGL[cell] => D6PGC[cell]
- id: R038
equation: D6PGC[cell] + NADP[cell] => NADPH[cell] + CO2[cell] + RL5P[cell]
- id: R039
equation: RL5P[cell] <=> X5P[cell]
- id: R040
equation: RL5P[cell] <=> R5P[cell]
- id: R041
equation: RIB[cell] + ATP[cell] => R5P[cell] + ADP[cell]
- id: R042
equation: R1P[cell] <=> R5P[cell]
- id: R043
equation: R5P[cell] + X5P[cell] <=> G3P[cell] + S7P[cell]
- id: R044
equation: X5P[cell] + E4P[cell] <=> F6P[cell] + G3P[cell]
- id: R045
equation: G3P[cell] + S7P[cell] <=> E4P[cell] + F6P[cell]
- id: R046
equation: DR5P[cell] => G3P[cell] + ACAL[cell]
- id: R047
equation: DRIB[cell] + ATP[cell] => DR5P[cell] + ADP[cell]
- id: R048
equation: DR1P[cell] <=> DR5P[cell]
- id: R049
equation: KDPG[cell] => PYR[cell] + G3P[cell]
- id: R050
equation: KDG[cell] + ATP[cell] => KDPG[cell] + ADP[cell]
- id: R051
equation: GLUC[cell] + ATP[cell] => D6PGC[cell] + ADP[cell]
- id: R052
equation: D6PGC[cell] => KDPG[cell]
- id: R053
equation: DGALAC[cell] => DTAGA[cell]
- id: R054
equation: KDG[cell] + NAD[cell] <=> DDOH[cell] + NADH[cell]
- id: R055
equation: KDG[cell] <=> DMAN[cell]
- id: R056
equation: DMAN[cell] + NAD[cell] <=> DFRUC[cell] + NADH[cell]
- id: R057
equation: DGLUC[cell] <=> DFRUC[cell]
- id: R058
equation: UDPG[cell] + (2) NAD[cell] <=> UDPGLUC[cell] + (2) NADH[cell]
- id: R059
equation: F1P[cell] + ATP[cell] => FDP[cell] + ADP[cell]
- id: R060
equation: F1P[cell] => DHAP[cell] + T3[cell]
- id: R061
equation: MAN6P[cell] <=> F6P[cell]
- id: R062
equation: MAN6P[cell] <=> MAN1P[cell]
- id: R063
equation: GTP[cell] + MAN1P[cell] <=> PPI[cell] + GDPMAN[cell]
- id: R064
equation: MNT1P[cell] + NAD[cell] => F6P[cell] + NADH[cell]
- id: R065
equation: F2P[cell] <=> FRU[cell] + PI[cell]
- id: R066
equation: S6P[cell] + NADP[cell] <=> SB1P[cell] + NADPH[cell]
- id: R067
equation: GLAC[cell] + ATP[cell] => GAL1P[cell] + ADP[cell]
- id: R068
equation: UDPG[cell] + GAL1P[cell] <=> G1P[cell] + UDPGAL[cell]
- id: R069
equation: UDPG[cell] <=> UDPGAL[cell]
- id: R070
equation: UTP[cell] + GAL1P[cell] <=> PPI[cell] + UDPGAL[cell]
- id: R071
equation: G1P[cell] + UTP[cell] <=> UDPG[cell] + PPI[cell]
- id: R072
equation: RAF[cell] => GLAC[cell] + SUC[cell]
- id: R073
equation: STACHYOSE[cell] => RAF[cell] + GLAC[cell]
- id: R074
equation: MELI[cell] => GLC[cell] + GLAC[cell]
- id: R075
equation: EPM[cell] <=> MAN[cell] + GLAC[cell]
- id: R076
equation: GGL[cell] <=> GL[cell] + GLAC[cell]
- id: R077
equation: MELT[cell] <=> SOT[cell] + GLAC[cell]
- id: R078
equation: GALACTINOL[cell] => MI[cell] + GLAC[cell]
- id: R079
equation: G6GG[cell] => GLAC[cell] + MELI[cell]
- id: R080
equation: LACTOSE[cell] => GLAC[cell] + GLC[cell]
- id: R081
equation: LACTOSE[cell] + PI[cell] => L6P[cell]
- id: R082
equation: a_3KL[cell] <=> a_3KBDG[cell] + bDGLC[cell]
- id: R083
equation: T6P[cell] + ATP[cell] <=> T16B[cell] + ADP[cell]
- id: R084
equation: a_3KBDG[cell] + NADP[cell] <=> bGLAC[cell] + NADPH[cell]
- id: R085
equation: DGLUCL[cell] + NAD[cell] <=> DGLUCA[cell] + NADH[cell]
- id: R086
equation: LXYLULOSE5P[cell] => LRIBULOSE5P[cell]
- id: R087
equation: a_3DG6P[cell] => LXYLULOSE5P[cell] + CO2[cell]
- id: R088
equation: a_2D3DDX[cell] + NAD[cell] <=> a_5H24DP[cell] + NADH[cell]
- id: R089
equation: ATP[cell] + G1P[cell] => PPI[cell] + ADPG[cell]
- id: R090
equation: ADPG[cell] => ADP[cell] + GLYCOGEN[cell]
- id: R091
equation: GLYCOGEN[cell] + PI[cell] => G1P[cell]
- id: R092
equation: MLTPT[cell] + PI[cell] <=> G1P[cell] + MLTTTR[cell]
- id: R093
equation: MLTHX[cell] + PI[cell] <=> G1P[cell] + MLTPT[cell]
- id: R094
equation: MLTHPT[cell] + PI[cell] <=> G1P[cell] + MLTHX[cell]
- id: R095
equation: MLT[cell] + MLTTR[cell] => GLC[cell] + MLTTTR[cell]
- id: R096
equation: MLT[cell] + MLTTTR[cell] => GLC[cell] + MLTPT[cell]
- id: R097
equation: MLT[cell] + MLTPT[cell] => GLC[cell] + MLTHX[cell]
- id: R098
equation: MLT[cell] + MLTHX[cell] => GLC[cell] + MLTHPT[cell]
- id: R099
equation: IMAL[cell] => (2) GLC[cell]
- id: R100
equation: SUC[cell] => GLC[cell] + FRU[cell]
- id: R101
equation: CB[cell] => (2) bDGLC[cell]
- id: R102
equation: TRE6P[cell] => GLC[cell] + G6P[cell]
- id: R103
equation: STA[cell] => DEXTRIN[cell] + STA[cell]
- id: R104
equation: F6P[cell] + GLN[cell] => GLU[cell] + GA6P[cell]
- id: R105
equation: GA6P[cell] => NH3[cell] + F6P[cell]
- id: R106
equation: NAGA6P[cell] <=> GA6P[cell] + AC[cell]
- id: R107
equation: GA6P[cell] <=> GA1P[cell]
- id: R108
equation: ACCOA[cell] + GA1P[cell] => NAGA1P[cell] + COA[cell]
- id: R109
equation: UTP[cell] + NAGA1P[cell] <=> UDPNAG[cell] + PPI[cell]
- id: R110
equation: UDPNAG[cell] <=> NADMA[cell] + UDP[cell]
- id: R111
equation: UDPNAG[cell] <=> UDPNADMA[cell]
- id: R112
equation: UDPNADMA[cell] + (2) NAD[cell] => UDPNADMAU[cell] + (2) NADH[cell]
- id: R113
equation: NANEU[cell] <=> NADMA[cell] + PYR[cell]
- id: R114
equation: NANEU[cell] + PI[cell] <=> NADMA[cell] + PEP[cell]
- id: R115
equation: NADMA[cell] + PI[cell] <=> NADMA6P[cell]
- id: R116
equation: ATP[cell] + NADMA[cell] => ADP[cell] + NADMA6P[cell]
- id: R117
equation: NAGA6P[cell] <=> NADMA6P[cell]
- id: R118
equation: NANEU9P[cell] + PI[cell] <=> NADMA6P[cell] + PEP[cell]
- id: R119
equation: NADMA[cell] + UDP[cell] <=> UDPNADMA[cell]
- id: R120
equation: UDPNAG[cell] + PEP[cell] => UDPNAGEP[cell] + PI[cell]
- id: R121
equation: UDPNAGEP[cell] + NADPH[cell] => UDPNAM[cell] + NADP[cell]
- id: R122
equation: CTP[cell] + NANEU[cell] <=> PPI[cell] + CMPNANEU[cell]
- id: R123
equation: CTP[cell] + NGNEU[cell] <=> PPI[cell] + CMPNGNEU[cell]
- id: R124
equation: UDPGAL[cell] + (2) NAD[cell] => UDPDGALAC[cell] + (2) NADH[cell]
- id: R125
equation: DTDPGLU[cell] + (2) NADP[cell] => DTDPDGLUC[cell] + (2) NADPH[cell]
- id: R126
equation: DTDPGLU[cell] <=> DTDPGLAC[cell]
- id: R127
equation: ATP[cell] + PYR[cell] => AMP[cell] + PEP[cell] + PI[cell]
- id: R128
equation: PYR[cell] + NADH[cell] <=> LAC[cell] + NAD[cell]
- id: R129
equation: ACCOA[cell] + PI[cell] <=> ACETYLP[cell] + COA[cell]
- id: R130
equation: AAD[cell] + COA[cell] <=> AMP[cell] + ACCOA[cell]
- id: R131
equation: ATP[cell] + AC[cell] <=> PPI[cell] + AAD[cell]
- id: R132
equation: ACETYLP[cell] + ADP[cell] <=> AC[cell] + ATP[cell]
- id: R133
equation: ACETYLP[cell] => AC[cell] + PI[cell]
- id: R134
equation: PEP[cell] + CO2[cell] => OA[cell] + PI[cell]
- id: R135
equation: OA[cell] + ATP[cell] <=> PEP[cell] + ADP[cell] + CO2[cell]
- id: R136
equation: MAL[cell] + NAD[cell] <=> PYR[cell] + CO2[cell] + NADH[cell]
- id: R137
equation: MAL[cell] + NADP[cell] <=> PYR[cell] + CO2[cell] + NADPH[cell]
- id: R138
equation: OA[cell] => PYR[cell] + CO2[cell]
- id: R139
equation: ACCOA[cell] + FORMATE[cell] <=> COA[cell] + PYR[cell]
- id: R140
equation: ACCOA[cell] + GLX[cell] => MAL[cell] + COA[cell]
- id: R141
equation: (2) ACCOA[cell] => COA[cell] + AACCOA[cell]
- id: R142
equation: DHAP[cell] => MTG[cell] + PI[cell]
- id: R143
equation: RGT[cell] + MTG[cell] <=> LTG[cell]
- id: R144
equation: LTG[cell] => RGT[cell] + LAC[cell]
- id: R145
equation: ACAL[cell] + COA[cell] + NAD[cell] <=> ACCOA[cell] + NADH[cell]
- id: R146
equation: ICIT[cell] => SUCC[cell] + GLX[cell]
- id: R147
equation: FORMATE[cell] + NAD[cell] => CO2[cell] + NADH[cell]
- id: R148
equation: THF[cell] + FORMATE[cell] + ATP[cell] => ADP[cell] + PI[cell] + FTHF[cell]
- id: R149
equation: GLAL[cell] + NAD[cell] => NADH[cell] + GLYCOLATE[cell]
- id: R150
equation: a_2PPG[cell] => GLYCOLATE[cell] + PI[cell]
- id: R151
equation: bALA[cell] + AKG[cell] <=> a_3OPP[cell] + GLU[cell]
- id: R152
equation: a_3HPCOA[cell] <=> PPCOA[cell]
- id: R153
equation: ATP[cell] + PROPANOATE[cell] <=> PPI[cell] + PPA[cell]
- id: R154
equation: PPA[cell] + COA[cell] <=> AMP[cell] + PPACOA[cell]
- id: R155
equation: PROPANOATE[cell] + ATP[cell] <=> PROPIONYLP[cell] + ADP[cell]
- id: R156
equation: PPACOA[cell] + PI[cell] <=> PROPIONYLP[cell] + COA[cell]
- id: R157
equation: OBUT[cell] + COA[cell] <=> PPACOA[cell] + FORMATE[cell]
- id: R158
equation: a_2HBA[cell] + NAD[cell] => OBUT[cell] + NADH[cell]
- id: R159
equation: a_2P1A[cell] + NAD[cell] => PPN[cell] + NADH[cell]
- id: R160
equation: a_2MCIT[cell] + COA[cell] <=> PPACOA[cell] + OA[cell]
- id: R161
equation: a_3HB123TC[cell] <=> PYR[cell] + SUCC[cell]
- id: R162
equation: MMSA[cell] + COA[cell] + NAD[cell] => PPACOA[cell] + CO2[cell] + NADH[cell]
- id: R163
equation: THMPP[cell] + PYR[cell] => a_2HETPP[cell] + CO2[cell]
- id: R164
equation: a_2HETPP[cell] + PYR[cell] => ACLAC[cell] + THMPP[cell]
- id: R165
equation: a_3HBCOA[cell] + NAD[cell] <=> AACCOA[cell] + NADH[cell]
- id: R166
equation: R3HBCOA[cell] + NADP[cell] <=> AACCOA[cell] + NADPH[cell]
- id: R167
equation: a_3HBCOA[cell] <=> R3HBCOA[cell]
- id: R168
equation: a_3HBCOA[cell] <=> CCOA[cell]
- id: R169
equation: BUTANAL[cell] + COA[cell] + NAD[cell] => C040COA[cell] + NADH[cell]
- id: R170
equation: a_1BOH[cell] + NAD[cell] <=> BUTANAL[cell] + NADH[cell]
- id: R171
equation: SUCCSA[cell] + NAD[cell] => SUCC[cell] + NADH[cell]
- id: R172
equation: SUCCSA[cell] + NADP[cell] => SUCC[cell] + NADPH[cell]
- id: R173
equation: GABA[cell] + AKG[cell] <=> SUCCSA[cell] + GLU[cell]
- id: R174
equation: a_3H3MGCOA[cell] => ACCOA[cell] + AAC[cell]
- id: R175
equation: a_3B1A[cell] + NAD[cell] => a_3BUT[cell] + NADH[cell]
- id: R176
equation: a_3OPP[cell] + COA[cell] + NAD[cell] => ACCOA[cell] + CO2[cell] + NADH[cell]
- id: R177
equation: NADH[cell] + UQ[cell] => NAD[cell] + UQH2[cell]
- id: R178
equation: NADH[cell] + MK[cell] => NAD[cell] + MKH2[cell]
- id: R179
equation: NADH[cell] + DMK[cell] => NAD[cell] + DMKH2[cell]
- id: R180
equation: FADH2[cell] + UQ[cell] => FAD[cell] + UQH2[cell]
- id: R181
equation: UQH2[cell] + (0.5) O2[cell] => UQ[cell] + (2) Hxt[cell]
- id: R182
equation: PPI[cell] => (2) PI[cell]
- id: R183
equation: ADP[cell] + PI[cell] + (4) Hxt[cell] <=> ATP[cell]
- id: R184
equation: METTHF[cell] + NH3[cell] + CO2[cell] + NADH[cell] => GLY[cell] + THF[cell]
+ NAD[cell]
- id: R185
equation: CO2[cell] => H2CO3[cell]
- id: R186
equation: NO3[cell] + FEROC[cell] => FERIC[cell] + NO2[cell]
- id: R187
equation: NO2[cell] + (3) NADH[cell] => (3) NAD[cell] + NH3[cell]
- id: R188
equation: NO2[cell] + (3) NADPH[cell] => (3) NADP[cell] + NH3[cell]
- id: R189
equation: NO2[cell] + (6) FEROC[cell] => NH3[cell] + (6) FERIC[cell]
- id: R190
equation: ASP[cell] <=> FUM[cell] + NH3[cell]
- id: R191
equation: SLF[cell] + ATP[cell] => PPI[cell] + APS[cell]
- id: R192
equation: APS[cell] + ATP[cell] => ADP[cell] + PAPS[cell]
- id: R193
equation: PAPS[cell] + RTHIO[cell] => OTHIO[cell] + H2SO3[cell] + PAP[cell]
- id: R194
equation: H2SO3[cell] + (3) NADPH[cell] => H2S[cell] + (3) NADP[cell]
- id: R195
equation: PAP[cell] => PI[cell] + AMP[cell]
- id: R196
equation: SELT[cell] + (3) NADP[cell] => SELD[cell] + (3) NADPH[cell]
- id: R197
equation: ACCOA[cell] + ATP[cell] + CO2[cell] => MALCOA[cell] + ADP[cell] + PI[cell]
- id: R198
equation: MALCOA[cell] + ACP[cell] => MALACP[cell] + COA[cell]
- id: R199
equation: ACCOA[cell] + ACP[cell] => ACACP[cell] + COA[cell]
- id: R200
equation: PPACOA[cell] + ACP[cell] => PPAACP[cell] + COA[cell]
- id: R201
equation: PPAACP[cell] + (3) MALACP[cell] + (6) NADPH[cell] => (6) NADP[cell] +
C090ACP[cell] + (3) CO2[cell] + (3) ACP[cell]
- id: R202
equation: ACACP[cell] + (4) MALACP[cell] + (8) NADPH[cell] => (8) NADP[cell] +
C100ACP[cell] + (4) CO2[cell] + (4) ACP[cell]
- id: R203
equation: PPAACP[cell] + (4) MALACP[cell] + (8) NADPH[cell] => (8) NADP[cell] +
C110ACP[cell] + (4) CO2[cell] + (4) ACP[cell]
- id: R204
equation: ACACP[cell] + (5) MALACP[cell] + (10) NADPH[cell] => (10) NADP[cell]
+ C120ACP[cell] + (5) CO2[cell] + (5) ACP[cell]
- id: R205
equation: PPAACP[cell] + (5) MALACP[cell] + (10) NADPH[cell] => (10) NADP[cell]
+ C130ACP[cell] + (5) CO2[cell] + (5) ACP[cell]
- id: R206
equation: ACACP[cell] + (6) MALACP[cell] + (12) NADPH[cell] => (12) NADP[cell]
+ C140ACP[cell] + (6) CO2[cell] + (6) ACP[cell]
- id: R207
equation: PPAACP[cell] + (6) MALACP[cell] + (12) NADPH[cell] => (12) NADP[cell]
+ C150ACP[cell] + (6) CO2[cell] + (6) ACP[cell]
- id: R208
equation: PPAACP[cell] + (6) MALACP[cell] + (11) NADPH[cell] => (11) NADP[cell]
+ C151ACP[cell] + (6) CO2[cell] + (6) ACP[cell]
- id: R209
equation: ACACP[cell] + (7) MALACP[cell] + (14) NADPH[cell] => (14) NADP[cell]
+ C160ACP[cell] + (7) CO2[cell] + (7) ACP[cell]
- id: R210
equation: ACACP[cell] + (7) MALACP[cell] + (13) NADPH[cell] => (13) NADP[cell]
+ C161ACP[cell] + (7) CO2[cell] + (7) ACP[cell]
- id: R211
equation: PPAACP[cell] + (7) MALACP[cell] + (14) NADPH[cell] => (14) NADP[cell]
+ C170ACP[cell] + (7) CO2[cell] + (7) ACP[cell]
- id: R212
equation: PPAACP[cell] + (7) MALACP[cell] + (13) NADPH[cell] => (13) NADP[cell]
+ C171ACP[cell] + (7) CO2[cell] + (7) ACP[cell]
- id: R213
equation: ACACP[cell] + (8) MALACP[cell] + (16) NADPH[cell] => (16) NADP[cell]
+ C180ACP[cell] + (8) CO2[cell] + (8) ACP[cell]
- id: R214
equation: ACACP[cell] + (8) MALACP[cell] + (15) NADPH[cell] => (15) NADP[cell]
+ C181ACP[cell] + (8) CO2[cell] + (8) ACP[cell]
- id: R215
equation: PPAACP[cell] + (8) MALACP[cell] + (16) NADPH[cell] => (16) NADP[cell]
+ C190ACP[cell] + (8) CO2[cell] + (8) ACP[cell]
- id: R216
equation: PPAACP[cell] + (8) MALACP[cell] + (15) NADPH[cell] => (15) NADP[cell]
+ C191ACP[cell] + (8) CO2[cell] + (8) ACP[cell]
- id: R217
equation: ACACP[cell] + (9) MALACP[cell] + (18) NADPH[cell] => (18) NADP[cell]
+ C200ACP[cell] + (9) CO2[cell] + (9) ACP[cell]
- id: R218
equation: C120[cell] + (6) COA[cell] + (5) FAD[cell] + (5) NAD[cell] + ATP[cell]
=> (6) ACCOA[cell] + (5) FADH2[cell] + (5) NADH[cell] + AMP[cell] + PPI[cell]
- id: R219
equation: C140[cell] + (7) COA[cell] + (6) FAD[cell] + (6) NAD[cell] + ATP[cell]
=> (7) ACCOA[cell] + (6) FADH2[cell] + (6) NADH[cell] + AMP[cell] + PPI[cell]
- id: R220
equation:
reversible: false
left:
- id: C150
compartment: cell
value: 1
- id: COA
compartment: cell
value: 7
- id: FAD
compartment: cell
value: 6
- id: NAD
compartment: cell
value: 6
- id: ATP
compartment: cell
value: 1
right:
- id: ACCOA
compartment: cell
value: 6
- id: PPACOA
compartment: cell
value: 1
- id: FADH2
compartment: cell
value: 6
- id: NADH
compartment: cell
value: 6
- id: AMP
compartment: cell
value: 1
- id: PPI
compartment: cell
value: 1
- id: R221
equation: C160[cell] + (8) COA[cell] + (7) FAD[cell] + (7) NAD[cell] + ATP[cell]
=> (8) ACCOA[cell] + (7) FADH2[cell] + (7) NADH[cell] + AMP[cell] + PPI[cell]
- id: R222
equation: C161[cell] + (8) COA[cell] + (7) FAD[cell] + (7) NAD[cell] + ATP[cell]
=> (8) ACCOA[cell] + (7) FADH2[cell] + (7) NADH[cell] + AMP[cell] + PPI[cell]
- id: R223
equation: C180[cell] + (9) COA[cell] + (8) FAD[cell] + (8) NAD[cell] + ATP[cell]
=> (9) ACCOA[cell] + (8) FADH2[cell] + (8) NADH[cell] + AMP[cell] + PPI[cell]
- id: R224
equation: C181[cell] + (9) COA[cell] + (8) FAD[cell] + (8) NAD[cell] + ATP[cell]
=> (9) ACCOA[cell] + (8) FADH2[cell] + (8) NADH[cell] + AMP[cell] + PPI[cell]
- id: R225
equation: PYR[cell] + G3P[cell] => DX5P[cell] + CO2[cell]
- id: R226
equation: DX5P[cell] + NADPH[cell] => MDE4P[cell] + NADP[cell]
- id: R227
equation: MDE4P[cell] + CTP[cell] => CDPMDE[cell] + PPI[cell]
- id: R228
equation: CDPMDE[cell] + ATP[cell] => a_2PCDPMDE[cell] + ADP[cell]
- id: R229
equation: a_2PCDPMDE[cell] => MDECPP[cell] + CMP[cell]
- id: R230
equation: MDECPP[cell] + NADH[cell] => NAD[cell] + HMB4PP[cell]
- id: R231
equation: HMB4PP[cell] + NADH[cell] => NAD[cell] + IPP[cell]
- id: R232
equation: IPP[cell] <=> DMPP[cell]
- id: R233
equation: DMPP[cell] + IPP[cell] => GPP[cell] + PPI[cell]
- id: R234
equation: GPP[cell] + IPP[cell] => FPP[cell] + PPI[cell]
- id: R235
equation: a_3H3MGCOA[cell] + (2) NADPH[cell] => MVLN[cell] + COA[cell] + (2) NADP[cell]
- id: R236
equation: FPP[cell] + IPP[cell] => GGPP[cell] + PPI[cell]
- id: R237
equation: GGPP[cell] + IPP[cell] => PPPP[cell] + PPI[cell]
- id: R238
equation: PPPP[cell] + IPP[cell] => HPPP[cell] + PPI[cell]
- id: R239
equation: HPPP[cell] + IPP[cell] => HEPPP[cell] + PPI[cell]
- id: R240
equation: HEPPP[cell] + IPP[cell] => OPP[cell] + PPI[cell]
- id: R241
equation: a_3PG[cell] + ADP[cell] <=> DGLYCERATE[cell] + ATP[cell]
- id: R242
equation: NADH[cell] + DGLYCERATE[cell] <=> T3[cell] + NAD[cell]
- id: R243
equation: T3[cell] + NADH[cell] <=> GL[cell] + NAD[cell]
- id: R244
equation: T3[cell] + NADPH[cell] <=> GL[cell] + NADP[cell]
- id: R245
equation: GL[cell] + ATP[cell] => GL3P[cell] + ADP[cell]
- id: R246
equation: DGR[cell] => AGL[cell] + (0.052) C120[cell] + (0.182) C140[cell] + (0.05)
C150[cell] + (0.39) C160[cell] + (0.24) C161[cell] + (0.01) C180[cell] + (0.076)
C181[cell]
- id: R247
equation: TGL[cell] => DGR[cell] + (0.052) C120[cell] + (0.182) C140[cell] + (0.05)
C150[cell] + (0.39) C160[cell] + (0.24) C161[cell] + (0.01) C180[cell] + (0.076)
C181[cell]
- id: R248
equation: DHAP[cell] + NADH[cell] => GL3P[cell] + NAD[cell]
- id: R249
equation: DHAP[cell] + NADPH[cell] => GL3P[cell] + NADP[cell]
- id: R250
equation: DHAP[cell] + UQH2[cell] <=> GL3P[cell] + UQ[cell]
- id: R251
equation: DHAP[cell] + MKH2[cell] <=> GL3P[cell] + MK[cell]
- id: R252
equation: DHAP[cell] + DMKH2[cell] <=> GL3P[cell] + DMK[cell]
- id: R253
equation: GL3P[cell] + ACOA[cell] => a_2AGL3P[cell] + COA[cell]
- id: R254
equation: GL3P[cell] + (0.052) C120ACP[cell] + (0.182) C140ACP[cell] + (0.05) C150ACP[cell]
+ (0.39) C160ACP[cell] + (0.24) C161ACP[cell] + (0.01) C180ACP[cell] + (0.076)
C181ACP[cell] => AGL3P[cell] + ACP[cell]
- id: R255
equation: AGL3P[cell] + (0.052) C120ACP[cell] + (0.182) C140ACP[cell] + (0.05)
C150ACP[cell] + (0.39) C160ACP[cell] + (0.24) C161ACP[cell] + (0.01) C180ACP[cell]
+ (0.076) C181ACP[cell] => PA[cell] + ACP[cell]
- id: R256
equation: DGR[cell] + ATP[cell] => ADP[cell] + PA[cell]
- id: R257
equation: PC[cell] => a_2AG3PC[cell] + (0.052) C120[cell] + (0.182) C140[cell]
+ (0.05) C150[cell] + (0.39) C160[cell] + (0.24) C161[cell] + (0.01) C180[cell]
+ (0.076) C181[cell]
- id: R258
equation: G3PC[cell] => CHOLINE[cell] + GL3P[cell]
- id: R259
equation: PA[cell] + CTP[cell] <=> CDPDG[cell] + PPI[cell]
- id: R260
equation: CDPDG[cell] + SER[cell] <=> CMP[cell] + PS[cell]
- id: R261
equation: PS[cell] => a_2AG3PS[cell] + (0.052) C120[cell] + (0.182) C140[cell]
+ (0.05) C150[cell] + (0.39) C160[cell] + (0.24) C161[cell] + (0.01) C180[cell]
+ (0.076) C181[cell]
- id: R262
equation: PS[cell] => PE[cell] + CO2[cell]
- id: R263
equation: PE[cell] => a_2AG3PE[cell] + (0.052) C120[cell] + (0.182) C140[cell]
+ (0.05) C150[cell] + (0.39) C160[cell] + (0.24) C161[cell] + (0.01) C180[cell]
+ (0.076) C181[cell]
- id: R264
equation: G3PE[cell] => ETHA[cell] + GL3P[cell]
- id: R265
equation: CDPDG[cell] + GL3P[cell] <=> CMP[cell] + PGP[cell]
- id: R266
equation: PGP[cell] => PI[cell] + PG[cell]
- id: R267
equation: CDPDG[cell] + PG[cell] => CMP[cell] + CL[cell]
- id: R268
equation: R5P[cell] + ATP[cell] <=> PRPP[cell] + AMP[cell]
- id: R269
equation: PRPP[cell] + GLN[cell] => PRAM[cell] + PPI[cell] + GLU[cell]
- id: R270
equation: PRAM[cell] + ATP[cell] + GLY[cell] <=> GAR[cell] + ADP[cell] + PI[cell]
- id: R271
equation: GAR[cell] + FTHF[cell] => FGAR[cell] + THF[cell]
- id: R272
equation: FGAR[cell] + ATP[cell] + GLN[cell] => FGAM[cell] + GLU[cell] + ADP[cell]
+ PI[cell]
- id: R273
equation: FGAM[cell] + ATP[cell] => AIR[cell] + ADP[cell] + PI[cell]
- id: R274
equation: AIR[cell] + CO2[cell] + ATP[cell] => CAIR[cell] + ADP[cell] + PI[cell]
- id: R275
equation: CAIR[cell] + ATP[cell] + ASP[cell] <=> SAICAR[cell] + ADP[cell] + PI[cell]
- id: R276
equation: SAICAR[cell] <=> AICAR[cell] + FUM[cell]
- id: R277
equation: AICAR[cell] + FTHF[cell] <=> PRFICA[cell] + THF[cell]
- id: R278
equation: PRFICA[cell] <=> IMP[cell]
- id: R279
equation: IMP[cell] + GTP[cell] + ASP[cell] => ASUC[cell] + GDP[cell] + PI[cell]
- id: R280
equation: ASUC[cell] <=> FUM[cell] + AMP[cell]
- id: R281
equation: IMP[cell] + NAD[cell] => XMP[cell] + NADH[cell]
- id: R282
equation: XMP[cell] + ATP[cell] + GLN[cell] => GMP[cell] + GLU[cell] + AMP[cell]
+ PPI[cell]
- id: R283
equation: GMP[cell] + NADPH[cell] => IMP[cell] + NH3[cell] + NADP[cell]
- id: R284
equation: a_23cAMP[cell] => a_3AMP[cell]
- id: R285
equation: a_23cGMP[cell] => a_3GMP[cell]
- id: R286
equation: ATP[cell] + INS[cell] <=> ADP[cell] + IMP[cell]
- id: R287
equation: ATP[cell] + GSN[cell] <=> ADP[cell] + GMP[cell]
- id: R288
equation: ADN[cell] => INS[cell] + NH3[cell]
- id: R289
equation: DA[cell] <=> DIN[cell] + NH3[cell]
- id: R290
equation: IMP[cell] => INS[cell] + PI[cell]
- id: R291
equation: AMP[cell] => ADN[cell] + PI[cell]
- id: R292
equation: XMP[cell] => XTSINE[cell] + PI[cell]
- id: R293
equation: GMP[cell] => GSN[cell] + PI[cell]
- id: R294
equation: DAMP[cell] <=> DA[cell] + PI[cell]
- id: R295
equation: DGMP[cell] <=> DG[cell] + PI[cell]
- id: R296
equation: DIN[cell] + PI[cell] => HYXN[cell] + DR1P[cell]
- id: R297
equation: DATP[cell] + PYR[cell] <=> DADP[cell] + PEP[cell]
- id: R298
equation: GTP[cell] + PYR[cell] <=> GDP[cell] + PEP[cell]
- id: R299
equation: DGDP[cell] + PEP[cell] => DGTP[cell] + PYR[cell]
- id: R300
equation: ATP[cell] => cAMP[cell] + PPI[cell]
- id: R301
equation: GTP[cell] => cGMP[cell] + PPI[cell]
- id: R302
equation: DGMP[cell] + ATP[cell] <=> DGDP[cell] + ADP[cell]
- id: R303
equation: IDP[cell] + ATP[cell] <=> ITP[cell] + ADP[cell]
- id: R304
equation: ATP[cell] + DIDP[cell] <=> ADP[cell] + DITP[cell]
- id: R305
equation: AICAR[cell] + PPI[cell] <=> a_5A4IC[cell] + PRPP[cell]
- id: R306
equation: AD[cell] + PRPP[cell] => PPI[cell] + AMP[cell]
- id: R307
equation: GN[cell] + PRPP[cell] => PPI[cell] + GMP[cell]
- id: R308
equation: HYXN[cell] + PRPP[cell] => PPI[cell] + IMP[cell]
- id: R309
equation: XAN[cell] + PRPP[cell] => PPI[cell] + XMP[cell]
- id: R310
equation: AMP[cell] + PPI[cell] <=> AD[cell] + PRPP[cell]
- id: R311
equation: DIN[cell] + PI[cell] <=> HYXN[cell] + DR1P[cell]
- id: R312
equation: DA[cell] + PI[cell] <=> AD[cell] + DR1P[cell]
- id: R313
equation: DG[cell] + PI[cell] <=> GN[cell] + DR1P[cell]
- id: R314
equation: HYXN[cell] + R1P[cell] <=> INS[cell] + PI[cell]
- id: R315
equation: AD[cell] + R1P[cell] <=> PI[cell] + ADN[cell]
- id: R316
equation: GN[cell] + R1P[cell] <=> PI[cell] + GSN[cell]
- id: R317
equation: XAN[cell] + R1P[cell] <=> PI[cell] + XTSINE[cell]
- id: R318
equation: DGTP[cell] => DG[cell] + H5P3O10[cell]
- id: R319
equation: ATP[cell] + GTP[cell] => pppGpp[cell] + AMP[cell]
- id: R320
equation: ppGpp[cell] <=> GDP[cell] + PPI[cell]
- id: R321
equation: ATP[cell] + AMP[cell] <=> (2) ADP[cell]
- id: R322
equation: ADP[cell] + RTHIO[cell] => DADP[cell] + OTHIO[cell]
- id: R323
equation: DADP[cell] + ATP[cell] <=> DATP[cell] + ADP[cell]
- id: R324
equation: GMP[cell] + ATP[cell] <=> GDP[cell] + ADP[cell]
- id: R325
equation: GDP[cell] + ATP[cell] <=> GTP[cell] + ADP[cell]
- id: R326
equation: GDP[cell] + RTHIO[cell] => DGDP[cell] + OTHIO[cell]
- id: R327
equation: DGDP[cell] + ATP[cell] <=> DGTP[cell] + ADP[cell]
- id: R328
equation: ARIB[cell] => AMP[cell] + R5P[cell]
- id: R329
equation: ATP[cell] + RTHIO[cell] => DATP[cell] + OTHIO[cell]
- id: R330
equation: GTP[cell] + RTHIO[cell] => DGTP[cell] + OTHIO[cell]
- id: R331
equation: ATP[cell] + DAMP[cell] <=> ADP[cell] + DADP[cell]
- id: R332
equation: GMP[cell] + PPI[cell] <=> GN[cell] + PRPP[cell]
- id: R333
equation: XMP[cell] + PPI[cell] <=> XAN[cell] + PRPP[cell]
- id: R334
equation: pppGpp[cell] <=> ppGpp[cell] + PI[cell]
- id: R335
equation: AppppA[cell] => (2) ADP[cell]
- id: R336
equation: CAP[cell] + ASP[cell] => CAASP[cell] + PI[cell]
- id: R337
equation: CAASP[cell] <=> DOROA[cell]
- id: R338
equation: DOROA[cell] + UQ[cell] <=> UQH2[cell] + OROA[cell]
- id: R339
equation: DOROA[cell] + MK[cell] <=> MKH2[cell] + OROA[cell]
- id: R340
equation: OROA[cell] + PRPP[cell] <=> PPI[cell] + OMP[cell]
- id: R341
equation: OMP[cell] => CO2[cell] + UMP[cell]
- id: R342
equation: ATP[cell] + UMP[cell] <=> ADP[cell] + UDP[cell]
- id: R343
equation: UDP[cell] + ATP[cell] <=> UTP[cell] + ADP[cell]
- id: R344
equation: UTP[cell] + GLN[cell] + ATP[cell] => GLU[cell] + CTP[cell] + ADP[cell]
+ PI[cell]
- id: R345
equation: ATP[cell] + UTP[cell] + NH3[cell] => ADP[cell] + PI[cell] + CTP[cell]
- id: R346
equation: CDP[cell] + ATP[cell] <=> CTP[cell] + ADP[cell]
- id: R347
equation: CDP[cell] + RTHIO[cell] => DCDP[cell] + OTHIO[cell]
- id: R348
equation: DCDP[cell] + ATP[cell] <=> DCTP[cell] + ADP[cell]
- id: R349
equation: DT[cell] + ATP[cell] => ADP[cell] + DTMP[cell]
- id: R350
equation: DTMP[cell] + ATP[cell] <=> DTDP[cell] + ADP[cell]
- id: R351
equation: DTDP[cell] + ATP[cell] <=> DTTP[cell] + ADP[cell]
- id: R352
equation: CMP[cell] + ATP[cell] <=> ADP[cell] + CDP[cell]
- id: R353
equation: OTHIO[cell] + NADPH[cell] => RTHIO[cell] + NADP[cell]
- id: R354
equation: DCMP[cell] + ATP[cell] <=> ADP[cell] + DCDP[cell]
- id: R355
equation: DU[cell] + ATP[cell] => DUMP[cell] + ADP[cell]
- id: R356
equation: URA[cell] + PRPP[cell] <=> UMP[cell] + PPI[cell]
- id: R357
equation: URA[cell] + R5P[cell] <=> PURI5P[cell]
- id: R358
equation: DUMP[cell] + METTHF[cell] => DHF[cell] + DTMP[cell]
- id: R359
equation: DU[cell] + PI[cell] => URA[cell] + DR1P[cell]
- id: R360
equation: DT[cell] + PI[cell] => TM[cell] + DR1P[cell]
- id: R361
equation: DUDP[cell] + ATP[cell] <=> DUTP[cell] + ADP[cell]
- id: R362
equation: UDP[cell] + RTHIO[cell] => OTHIO[cell] + DUDP[cell]
- id: R363
equation: UTP[cell] + RTHIO[cell] => DUTP[cell] + OTHIO[cell]
- id: R364
equation: CTP[cell] + RTHIO[cell] => DCTP[cell] + OTHIO[cell]
- id: R365
equation: ATP[cell] + DUMP[cell] <=> ADP[cell] + DUDP[cell]
- id: R366
equation: ATP[cell] + CYTD[cell] => ADP[cell] + CMP[cell]
- id: R367
equation: ATP[cell] + URI[cell] => ADP[cell] + UMP[cell]
- id: R368
equation: DATP[cell] + CYTD[cell] => DADP[cell] + CMP[cell]
- id: R369
equation: DATP[cell] + URI[cell] => DADP[cell] + UMP[cell]
- id: R370
equation: DCTP[cell] + CYTD[cell] => DCDP[cell] + CMP[cell]
- id: R371
equation: DCTP[cell] + URI[cell] => DCDP[cell] + UMP[cell]
- id: R372
equation: DGTP[cell] + CYTD[cell] => DGDP[cell] + CMP[cell]
- id: R373
equation: DGTP[cell] + URI[cell] => DGDP[cell] + UMP[cell]
- id: R374
equation: DTTP[cell] + CYTD[cell] => DTDP[cell] + CMP[cell]
- id: R375
equation: DTTP[cell] + URI[cell] => DTDP[cell] + UMP[cell]
- id: R376
equation: DUTP[cell] + CYTD[cell] => DUDP[cell] + CMP[cell]
- id: R377
equation: DUTP[cell] + URI[cell] => DUDP[cell] + UMP[cell]
- id: R378
equation: GTP[cell] + CYTD[cell] => GDP[cell] + CMP[cell]
- id: R379
equation: GTP[cell] + URI[cell] => GDP[cell] + UMP[cell]
- id: R380
equation: ITP[cell] + CYTD[cell] => IDP[cell] + CMP[cell]
- id: R381
equation: ITP[cell] + URI[cell] => IDP[cell] + UMP[cell]
- id: R382
equation: UTP[cell] + CYTD[cell] => UDP[cell] + CMP[cell]
- id: R383
equation: UTP[cell] + URI[cell] => UDP[cell] + UMP[cell]
- id: R384
equation: UMP[cell] => URI[cell] + PI[cell]
- id: R385
equation: CMP[cell] => CYTD[cell] + PI[cell]
- id: R386
equation: DCMP[cell] => DC[cell] + PI[cell]
- id: R387
equation: DTMP[cell] => DT[cell] + PI[cell]
- id: R388
equation: a_23cCMP[cell] => a_3CMP[cell]
- id: R389
equation: a_23cUMP[cell] => a_3UMP[cell]
- id: R390
equation: a_5MC[cell] <=> TM[cell] + NH3[cell]
- id: R391
equation: CT[cell] => URA[cell] + NH3[cell]
- id: R392
equation: DC[cell] => DU[cell] + NH3[cell]
- id: R393
equation: CYTD[cell] => URI[cell] + NH3[cell]
- id: R394
equation: DCMP[cell] => DUMP[cell] + NH3[cell]
- id: R395
equation: URI[cell] + PI[cell] <=> URA[cell] + R1P[cell]
- id: R396
equation: GLU[cell] + NH3[cell] + ATP[cell] => GLN[cell] + ADP[cell] + PI[cell]
- id: R397
equation: GLN[cell] + AKG[cell] + NADPH[cell] => (2) GLU[cell] + NADP[cell]
- id: R398
equation: GLU[cell] => GABA[cell] + CO2[cell]
- id: R399
equation: GLN[cell] + (2) ATP[cell] + CO2[cell] => GLU[cell] + CAP[cell] + (2)
ADP[cell] + PI[cell]
- id: R400
equation: ATP[cell] + GLU[cell] + CYS[cell] => ADP[cell] + PI[cell] + GCYS[cell]
- id: R401
equation: TRNAGLU[cell] + GLU[cell] + ATP[cell] => GLUTRNAGLU[cell] + PPI[cell]
+ AMP[cell]
- id: R402
equation: ATP[cell] + GLN[cell] + TRNAGLN[cell] => AMP[cell] + PPI[cell] + GTRNA[cell]
- id: R403
equation: ATP[cell] + GCYS[cell] + GLY[cell] => ADP[cell] + PI[cell] + RGT[cell]
- id: R404
equation: NAD[cell] + (2) RGT[cell] <=> OGT[cell] + NADH[cell]
- id: R405
equation: NADP[cell] + (2) RGT[cell] <=> OGT[cell] + NADPH[cell]
- id: R406
equation: OA[cell] + GLU[cell] <=> ASP[cell] + AKG[cell]
- id: R407
equation: ATP[cell] + ASP[cell] + TRNAASP[cell] => AMP[cell] + PPI[cell] + ASPTRNAASP[cell]
- id: R408
equation: ATP[cell] + ALA[cell] + TRNAALA[cell] <=> AMP[cell] + PPI[cell] + ALATRNA[cell]
- id: R409
equation: ATP[cell] + ASN[cell] + TRNAASN[cell] => AMP[cell] + PPI[cell] + ASNTRNAASN[cell]
- id: R410
equation: ASP[cell] + ATP[cell] + GLN[cell] => GLU[cell] + ASN[cell] + AMP[cell]
+ PPI[cell]
- id: R411
equation: ASN[cell] => ASP[cell] + NH3[cell]
- id: R412
equation: PYR[cell] + GLU[cell] <=> AKG[cell] + ALA[cell]
- id: R413
equation: ASP[cell] => bALA[cell] + CO2[cell]
- id: R414
equation: CNS[cell] => bALA[cell] + HIS[cell]
- id: R415
equation: ASP[cell] + ATP[cell] => ADP[cell] + BASP[cell]
- id: R416
equation: BASP[cell] + NADPH[cell] => NADP[cell] + PI[cell] + ASPSA[cell]
- id: R417
equation: ASPSA[cell] + NADH[cell] <=> NAD[cell] + HSER[cell]
- id: R418
equation: ASPSA[cell] + NADPH[cell] <=> NADP[cell] + HSER[cell]
- id: R419
equation: HSER[cell] + ATP[cell] => ADP[cell] + PHSER[cell]
- id: R420
equation: PHSER[cell] => THR[cell] + PI[cell]
- id: R421
equation: a_3PG[cell] + NAD[cell] => NADH[cell] + PHP[cell]
- id: R422
equation: PHP[cell] + GLU[cell] => AKG[cell] + a_3PSER[cell]
- id: R423
equation: a_3PSER[cell] => PI[cell] + SER[cell]
- id: R424
equation: THF[cell] + SER[cell] <=> GLY[cell] + METTHF[cell]
- id: R425
equation: THR[cell] <=> GLY[cell] + ACAL[cell]
- id: R426
equation: ATHR[cell] <=> GLY[cell] + ACAL[cell]
- id: R427
equation: ACCOA[cell] + GLY[cell] <=> COA[cell] + a_2A3OB[cell]
- id: R428
equation: THR[cell] + NAD[cell] => a_2A3OB[cell] + NADH[cell]
- id: R429
equation: THF[cell] + SAP[cell] => METTHF[cell] + NH3[cell] + DHLIPOYLPROTEIN[cell]
- id: R430
equation: GLY[cell] + LIPOYLPROTEIN[cell] => SAP[cell] + CO2[cell]
- id: R431
equation: DHLIPOYLPROTEIN[cell] + NAD[cell] => NADH[cell] + LIPOYLPROTEIN[cell]
- id: R432
equation: SER[cell] => PYR[cell] + NH3[cell]
- id: R433
equation: SER[cell] <=> PYR[cell] + NH3[cell]
- id: R434
equation: THR[cell] => OBUT[cell] + NH3[cell]
- id: R435
equation: THMNP[cell] + SER[cell] <=> MTHMNP[cell] + GLY[cell]
- id: R436
equation: ATP[cell] + THR[cell] + TRNATHR[cell] => AMP[cell] + PPI[cell] + THRTRNATHR[cell]
- id: R437
equation: ATP[cell] + SER[cell] + TRNASER[cell] => AMP[cell] + PPI[cell] + SERTRNASER[cell]
- id: R438
equation: ATP[cell] + GLY[cell] + TRNAGLY[cell] => AMP[cell] + PPI[cell] + GLYTRNAGLY[cell]
- id: R439
equation: GLU[cell] + ASPSA[cell] => AKG[cell] + a_24DAB[cell]
- id: R440
equation: BAL[cell] + FAD[cell] => FADH2[cell] + BETAINE[cell]
- id: R441
equation: BAL[cell] + NAD[cell] => BETAINE[cell] + NADH[cell]
- id: R442
equation: MTG[cell] + NADPH[cell] => HAC[cell] + NADP[cell]
- id: R443
equation: HSER[cell] + SUCCOA[cell] <=> OSLHSER[cell] + COA[cell]
- id: R444
equation: CYS[cell] + OSLHSER[cell] => LLCT[cell] + SUCC[cell]
- id: R445
equation: OSLHSER[cell] + H2S[cell] => HCYS[cell] + SUCC[cell]
- id: R446
equation: OSLHSER[cell] => SUCC[cell] + OBUT[cell] + NH3[cell]
- id: R447
equation: OAHSER[cell] + CYS[cell] <=> LLCT[cell] + AC[cell]
- id: R448
equation: OAHSER[cell] + H2S[cell] => HCYS[cell] + AC[cell]
- id: R449
equation: OAHSER[cell] + HO3S2[cell] + RTHIO[cell] => HCYS[cell] + H2SO3[cell]
+ OTHIO[cell] + AC[cell]
- id: R450
equation: LLCT[cell] => HCYS[cell] + PYR[cell] + NH3[cell]
- id: R451
equation: HCYS[cell] + MTHF[cell] <=> THF[cell] + MET[cell]
- id: R452
equation: a_5MTGLU[cell] + HCYS[cell] => TGLU[cell] + MET[cell]
- id: R453
equation: SRLH[cell] <=> RIB[cell] + HCYS[cell]
- id: R454
equation: ATP[cell] + MET[cell] + TRNAMET[cell] => AMP[cell] + PPI[cell] + METTRNA[cell]
- id: R455
equation: METTRNA[cell] + FTHF[cell] => THF[cell] + FMETTRNA[cell]
- id: R456
equation: MET[cell] + ATP[cell] => PPI[cell] + PI[cell] + SAM[cell]
- id: R457
equation: SAH[cell] <=> SRLH[cell] + AD[cell]
- id: R458
equation: H2S[cell] + PYR[cell] + NH3[cell] => CYS[cell]
- id: R459
equation: CYST[cell] => PYR[cell] + NH3[cell] + TCYS[cell]
- id: R460