-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreactions.yaml
6385 lines (6385 loc) · 234 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: AraIN
name: Uptake of Arabinose
equation: => m862[c]
subsystem: Exchange reaction
- id: biomass
name: Biomass formation
equation:
reversible: false
left:
- id: m57
compartment: c
value: 39.92
- id: m60
compartment: c
value: 39.92
- id: m81
compartment: c
value: 1.798
- id: m83
compartment: c
value: 0.0102
- id: m84
compartment: c
value: 0.178
- id: m109
compartment: c
value: 0.078
- id: m132
compartment: c
value: 0.496
- id: m133
compartment: c
value: 0.447
- id: m135
compartment: c
value: 0.1
- id: m137
compartment: c
value: 0.1783
- id: m138
compartment: c
value: 0.0719
- id: m140
compartment: c
value: 0.447
- id: m147
compartment: c
value: 0.0258
- id: m153
compartment: c
value: 0.141
- id: m168
compartment: c
value: 0.2
- id: m175
compartment: c
value: 0.186
- id: m183
compartment: c
value: 0.166
- id: m188
compartment: c
value: 0.0799
- id: m195
compartment: c
value: 0.138
- id: m206
compartment: c
value: 0.0315
- id: m208
compartment: c
value: 0.033
- id: m213
compartment: c
value: 0.1359
- id: m214
compartment: c
value: 0.0483
- id: m239
compartment: c
value: 0.128
- id: m253
compartment: c
value: 0.0415
- id: m260
compartment: c
value: 0.1577
- id: m297
compartment: c
value: 0.05469
- id: m301
compartment: c
value: 0.0063
- id: m316
compartment: c
value: 0.009
- id: m326
compartment: c
value: 0.0781
- id: m329
compartment: c
value: 0.0545
- id: m336
compartment: c
value: 0.0063
- id: m342
compartment: c
value: 0.009
- id: m345
compartment: c
value: 0.0179
- id: m371
compartment: c
value: 0.143
- id: m430
compartment: c
value: 0.0119
- id: m469
compartment: c
value: 0.0029
- id: m472
compartment: c
value: 0.0043
- id: m475
compartment: c
value: 0.0199
- id: m478
compartment: c
value: 0.0218
- id: m504
compartment: c
value: 0.001
- id: m562
compartment: c
value: 0.001
- id: m566
compartment: c
value: 0.002
- id: m568
compartment: c
value: 0.064
- id: m571
compartment: c
value: 0.116
- id: m579
compartment: c
value: 0.003
- id: m766
compartment: c
value: 0.002
- id: m768
compartment: c
value: 0.0388
- id: m770
compartment: c
value: 0.0007
- id: m772
compartment: c
value: 0.0007
- id: m774
compartment: c
value: 0.0002
right:
- id: m58
compartment: c
value: 39.92
- id: m62
compartment: c
value: 39.92
- id: m828
compartment: c
value: 1
subsystem: Biomass
- id: coaIN
name: Uptake of CoA
equation: => m92[c]
subsystem: Exchange reaction
- id: etohIN
name: ubtake of ethanol
equation: => m886[e]
subsystem: Exchange reaction
- id: inoIN
name: Uptake of Inositol
genes: PICST_80454
equation: => m600[c]
subsystem: Exchange reaction
- id: r1
name: S-adenosyl-L-methionine:1,2-diacyl-sn-glycerol 3-amino-3-carboxypropyltransferase
genes: PICST_32640
equation: m178[c] + m507[c] => m263[c] + m581[c]
subsystem: Glycerophospholipid metabolism
- id: r10
name: Ethanol:NAD+ oxidoreductase
genes: PICST_31312 or PICST_45137
equation: m68[c] + m106[c] <=> m70[c] + m71[c] + m105[c]
subsystem: Pyruvate metabolism
- id: r100
name: (S)-Lactate:ferricytochrome-c 2-oxidoreductase
genes: PICST_89565 or PICST_31583 or PICST_52647
equation: (2) m942[m] + m947[m] => (2) m943[m] + m945[m] + (2) m946[m]
subsystem: Pyruvate metabolism
- id: r1000
name: L-Methionine:tRNAMet ligase (AMP-forming)
genes: PICST_81660
equation: m961[m] + m1094[m] + m1095[m] => m989[m] + m1051[m] + m1096[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1001
name: L-Serine:tRNA(Ser) ligase (AMP-forming)
genes: PICST_77516
equation: m57[c] + m213[c] + m386[c] => m78[c] + m109[c] + m387[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1002
name: L-Serine:tRNA(Ser) ligase (AMP-forming)
genes: PICST_60912
equation: m961[m] + m1042[m] + m1102[m] => m989[m] + m1051[m] + m1103[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1003
name: L-serine:tRNASec ligase (AMP-forming)
genes: PICST_60912
equation: m961[m] + m1042[m] + m1120[m] => m989[m] + m1051[m] + m1121[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1004
name: L-Aspartate:tRNA(Asp) ligase (AMP-forming)
genes: PICST_61618 and PICST_77216
equation: m57[c] + m135[c] + m397[c] => m78[c] + m109[c] + m398[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1005
name: L-Aspartate:tRNA(Asp) ligase (AMP-forming)
genes: PICST_61618
equation: m961[m] + m990[m] + m1116[m] => m989[m] + m1051[m] + m1117[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1006
name: Glycine:tRNA(Gly) ligase (AMP-forming)
genes: PICST_64855
equation: m57[c] + m175[c] + m369[c] => m78[c] + m109[c] + m370[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1007
name: Glycine:tRNA(Gly) ligase (AMP-forming)
equation: m961[m] + m1034[m] + m1080[m] => m989[m] + m1051[m] + m1081[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1008
name: L-Proline:tRNA(Pro) ligase (AMP-forming)
genes: PICST_50946 or PICST_84407
equation: m57[c] + m153[c] + m384[c] => m78[c] + m109[c] + m385[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1009
name: L-Proline:tRNA(Pro) ligase (AMP-forming)
genes: PICST_84407
equation: m961[m] + m1001[m] + m1100[m] => m989[m] + m1051[m] + m1101[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r101
name: (R)-Lactate:ferricytochrome-c 2-oxidoreductase
genes: PICST_53263 or PICST_80729 or PICST_52647
equation: m91[c] + (2) m840[c] <=> (2) m71[c] + m75[c] + (2) m841[c]
subsystem: Pyruvate metabolism
- id: r1010
name: L-Cysteine:tRNA(Cys) ligase (AMP-forming)
genes: PICST_81289
equation: m57[c] + m253[c] + m365[c] => m78[c] + m109[c] + m366[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1011
name: L-Cysteine:tRNA(Cys) ligase (AMP-forming)
equation: m961[m] + m1048[m] + m1075[m] => m989[m] + m1051[m] + m1076[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1012
name: L-Glutamate:tRNA(Glu) ligase (AMP-forming)
genes: PICST_57984
equation: m961[m] + m991[m] + m1118[m] => m989[m] + m1051[m] + m1119[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1013
name: L-Glutamine:tRNA(Gln) ligase (AMP-forming)
genes: PICST_72287 or PICST_89978
equation: m57[c] + m140[c] + m367[c] => m78[c] + m109[c] + m368[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1014
name: L-Glutamine:tRNA(Gln) ligase (AMP-forming)
equation: m961[m] + m1077[m] + m1078[m] => m989[m] + m1051[m] + m1079[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1015
name: L-Arginine:tRNA(Arg) ligase (AMP-forming)
genes: PICST_38727
equation: m57[c] + m137[c] + m361[c] => m78[c] + m109[c] + m362[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1016
name: L-Arginine:tRNA(Arg) ligase (AMP-forming)
equation: m961[m] + m1069[m] + m1070[m] => m989[m] + m1051[m] + m1071[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1017
name: L-Tryptophan -tRNA(Trp) ligase (AMP-forming)
genes: PICST_53719
equation: m57[c] + m214[c] + m390[c] => m78[c] + m109[c] + m391[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1018
name: L-Tryptophan -tRNA(Trp) ligase (AMP-forming)
genes: PICST_46284
equation: m961[m] + m1107[m] + m1108[m] => m989[m] + m1051[m] + m1109[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1019
name: L-Phenylalanine:tRNA(Ala) ligase (AMP-forming)
genes: PICST_71487 and PICST_72398
equation: m57[c] + m206[c] + m382[c] => m78[c] + m109[c] + m383[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r102
name: Glycolate:oxygen 2-oxidoreductase
equation: m116[c] + m117[c] => m96[c] + m118[c]
subsystem: Glyoxylate and dicarboxylate metabolism
- id: r1020
name: L-Phenylalanine:tRNA(Ala) ligase (AMP-forming)
genes: PICST_55301
equation: m961[m] + m1097[m] + m1098[m] => m989[m] + m1051[m] + m1099[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1021
name: L-Histidine:tRNA(His) ligase (AMP-forming)
genes: PICST_70094
equation: m57[c] + m371[c] + m372[c] => m78[c] + m109[c] + m373[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1022
name: L-Histidine:tRNA(His) ligase (AMP-forming)
equation: m961[m] + m1082[m] + m1083[m] => m989[m] + m1051[m] + m1084[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1023
name: L-Asparagine:tRNA(Asn) ligase (AMP-forming)
genes: PICST_33068
equation: m57[c] + m138[c] + m363[c] => m78[c] + m109[c] + m364[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1024
name: L-Asparagine:tRNA(Asn) ligase (AMP-forming)
genes: PICST_84563
equation: m961[m] + m1072[m] + m1073[m] => m989[m] + m1051[m] + m1074[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1025
name: L-Threonine:tRNA(Thr) ligase (AMP-forming)
genes: PICST_78070
equation: m57[c] + m239[c] + m388[c] => m78[c] + m109[c] + m389[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1026
name: L-Threonine:tRNA(Thr) ligase (AMP-forming)
genes: PICST_47981
equation: m961[m] + m1104[m] + m1105[m] => m989[m] + m1051[m] + m1106[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1027
name: L-Leucine:tRNA(Leu) ligase (AMP-forming)
genes: PICST_77997
equation: m57[c] + m188[c] + m376[c] => m78[c] + m109[c] + m377[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1028
name: L-Leucine:tRNA(Leu) ligase (AMP-forming)
genes: PICST_56543
equation: m961[m] + m1088[m] + m1089[m] => m989[m] + m1051[m] + m1090[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1029
name: L-Isoleucine:tRNA(Ile) ligase (AMP-forming)
genes: PICST_83229
equation: m57[c] + m195[c] + m374[c] => m78[c] + m109[c] + m375[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r103
name: sn-Glycerol-3-phosphate:(acceptor) 2-oxidoreductase
genes: PICST_68764
equation: m983[m] + m1165[m] => m984[m] + m1166[m]
subsystem: Glycerophospholipid metabolism
- id: r1030
name: L-Isoleucine:tRNA(Ile) ligase (AMP-forming)
genes: PICST_63933
equation: m961[m] + m1085[m] + m1086[m] => m989[m] + m1051[m] + m1087[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1031
name: L-Lysine:tRNALys ligase (AMP-forming)
genes: PICST_42797 or PICST_74513
equation: m57[c] + m168[c] + m378[c] => m78[c] + m109[c] + m379[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1032
name: L-Lysine:tRNALys ligase (AMP-forming)
genes: PICST_42797 or PICST_74513
equation: m961[m] + m1091[m] + m1092[m] => m989[m] + m1051[m] + m1093[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1033
name: L-Alanine:tRNA(Ala) ligase (AMP-forming)
genes: PICST_88206
equation: m57[c] + m132[c] + m359[c] => m78[c] + m109[c] + m360[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1034
name: L-Alanine:tRNA(Ala) ligase (AMP-forming)
equation: m961[m] + m1066[m] + m1067[m] => m989[m] + m1051[m] + m1068[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1035
name: L-Valine:tRNAVal ligase (AMP-forming)
genes: PICST_72245
equation: m57[c] + m183[c] + m392[c] => m78[c] + m109[c] + m393[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1036
name: L-Valine:tRNAVal ligase (AMP-forming)
genes: PICST_72245
equation: m961[m] + m1110[m] + m1111[m] => m989[m] + m1051[m] + m1112[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1037
name: Acetate:CoA ligase (AMP-forming)
genes: PICST_79135 and PICST_89873
equation: m57[c] + m92[c] + m104[c] => m78[c] + m94[c] + m109[c]
subsystem: Pyruvate metabolism
- id: r1038
name: biotin:CoA ligase (AMP-forming);
genes: PICST_69676
equation: m57[c] + m414[c] => m78[c] + m415[c]
subsystem: Biotin metabolism
- id: r1039
name: Acetoacetate:CoA ligase (AMP-forming)
equation: m953[m] + m961[m] + m1033[m] <=> m989[m] + m1051[m] + m1062[m]
subsystem: Butanoate metabolism
- id: r104
name: Ubiquinol:ferricytochrome-c oxidoreductase
equation: (2) m942[m] + m946[m] + m986[m] => (2) m71[c] + (2) m943[m] + m985[m]
subsystem: Oxidative phosphorylation
- id: r1040
name: Long chain fatty acyl-CoA synthetase
genes: PICST_35069 or PICST_65071 or PICST_55002 or PICST_58181 or PICST_89450
or PICST_78107
equation: m57[c] + m92[c] + m475[c] => m78[c] + m109[c] + m476[c]
subsystem: Biosynthesis of unsaturated fatty acids
- id: r1041
name: Long chain fatty acyl-CoA synthetase
genes: PICST_35069 or PICST_65071 or PICST_55002 or PICST_58181 or PICST_89450
or PICST_78107
equation: m57[c] + m92[c] + m478[c] => m78[c] + m109[c] + m479[c]
subsystem: Biosynthesis of unsaturated fatty acids
- id: r1042
name: Long chain fatty acyl-CoA synthetase
genes: PICST_35069 or PICST_65071 or PICST_55002 or PICST_58181 or PICST_89450
or PICST_78107
equation: m57[c] + m92[c] + m345[c] => m78[c] + m109[c] + m481[c]
subsystem: Biosynthesis of unsaturated fatty acids
- id: r1043
name: Palmitate:CoA ligase (AMP-forming)
genes: PICST_35069 or PICST_65071 or PICST_55002 or PICST_58181 or PICST_89450
or PICST_78107
equation: m57[c] + m92[c] + m430[c] => m78[c] + m109[c] + m431[c]
subsystem: Fatty acid biosynthesis
- id: r1044
name: Palmitate:CoA ligase (AMP-forming)
genes: PICST_35069 or PICST_65071 or PICST_55002 or PICST_58181 or PICST_89450
or PICST_78107
equation: m57[c] + m92[c] + m469[c] => m78[c] + m109[c] + m470[c]
subsystem: Fatty acid biosynthesis
- id: r1045
name: Succinate:CoA ligase (GDP-forming)
genes: PICST_66961 and PICST_69303
equation: m953[m] + m979[m] + m980[m] <=> m963[m] + m978[m] + m981[m]
subsystem: Citrate cycle (TCA cycle)
- id: r1046
name: L-Glutamate:ammonia ligase (ADP-forming)
genes: PICST_68474
equation: m57[c] + m133[c] + m139[c] => m58[c] + m62[c] + m140[c]
subsystem: Alanine, aspartate and glutamate metabolism
- id: r1047
name: (R)-Pantoate:beta-alanine ligase (AMP-forming)
genes: PICST_57860
equation: m57[c] + m407[c] + m412[c] => m78[c] + m109[c] + m413[c]
subsystem: beta-Alanine metabolism
- id: r1048
name: 7,8-dihydropteroate:L-glutamate ligase (ADP-forming)
genes: PICST_47181 or PICST_71737
equation: m57[c] + m133[c] + m517[c] => m58[c] + m62[c] + m341[c]
subsystem: Folate biosynthesis
- id: r1049
name: Tetrahydrofolate:L-glutamate gamma-ligase (ADP-forming)
genes: PICST_47181 or PICST_71737
equation: m57[c] + m133[c] + m246[c] <=> m58[c] + m62[c] + m515[c]
subsystem: Folate biosynthesis
- id: r105
name: L-ascorbate:oxygen oxidoreductase
genes: PICST_79365
equation: (4) m71[c] + m117[c] + (4) m405[c] => (2) m60[c] + (4) m406[c]
subsystem: Ascorbate and aldarate metabolism
- id: r1050
name: L-glutamate:L-cysteine gamma-ligase (ADP-forming)
genes: PICST_62151
equation: m57[c] + m133[c] + m253[c] => m58[c] + m62[c] + m544[c]
subsystem: Glutathione metabolism
- id: r1051
name: gamma-L-glutamyl-L-cysteine:glycine ligase (ADP-forming)
genes: PICST_43206
equation: m57[c] + m175[c] + m544[c] => m58[c] + m62[c] + m541[c]
subsystem: Glutathione metabolism
- id: r1052
name: (R)-4'-Phosphopantothenate:L-cysteine ligase
genes: PICST_54534
equation: m57[c] + m253[c] + m698[c] => m78[c] + m109[c] + m699[c]
subsystem: Pantothenate and CoA biosynthesis
- id: r1053
name: 1-(5-Phosphoribosyl)-5-amino-4-carboxyimidazole:L-aspartate ligase
genes: PICST_49451
equation: m57[c] + m135[c] + m279[c] <=> m58[c] + m62[c] + m280[c]
subsystem: Purine metabolism
- id: r1054
name: 2-(Formamido)-N1-(5-phosphoribosyl)acetamidine cyclo-ligase
genes: PICST_78660
equation: m57[c] + m277[c] => m58[c] + m62[c] + m278[c]
subsystem: Purine metabolism
- id: r1055
name: 5-Formyltetrahydrofolate cyclo-ligase (ADP-forming)
genes: PICST_36098
equation: m57[c] + m71[c] + m250[c] => m58[c] + m62[c] + m248[c]
subsystem: One carbon pool by folate
- id: r1056
name: 5-Formyltetrahydrofolate cyclo-ligase (ADP-forming)
equation: m946[m] + m961[m] + m1045[m] => m962[m] + m963[m] + m1044[m]
subsystem: One carbon pool by folate
- id: r1057
name: 5-Phospho-D-ribosylamine:glycine ligase (ADP-forming)
genes: PICST_78660
equation: m57[c] + m142[c] + m175[c] => m58[c] + m62[c] + m275[c]
subsystem: Purine metabolism
- id: r1058
name: UTP:ammonia ligase (ADP-forming)
genes: PICST_78143
equation: m57[c] + m77[c] + m139[c] => m58[c] + m62[c] + m327[c]
subsystem: Pyrimidine metabolism
- id: r1059
name: Formate:tetrahydrofolate ligase (ADP-forming)
genes: PICST_80013 or PICST_88119
equation: m57[c] + m119[c] + m246[c] => m58[c] + m62[c] + m247[c]
subsystem: One carbon pool by folate
- id: r106
name: tryparedoxin:hydroperoxide oxidoreductase
genes: PICST_73480 or PICST_77026 or PICST_70431
equation: m552[c] + m553[c] => m60[c] + m554[c] + m555[c]
subsystem: Glutathione metabolism
- id: r1060
name: IMP:L-aspartate ligase (GDP-forming)
genes: PICST_85387
equation: m135[c] + m283[c] + m284[c] => m62[c] + m285[c] + m286[c]
subsystem: Purine metabolism
- id: r1061
name: L-Citrulline:L-aspartate ligase (AMP-forming)
genes: PICST_34492
equation: m57[c] + m134[c] + m135[c] => m78[c] + m109[c] + m136[c]
subsystem: Alanine, aspartate and glutamate metabolism
- id: r1062
name: Urea:carbon-dioxide ligase (ADP-forming)
genes: PICST_28452
equation: m57[c] + m101[c] + m148[c] => m58[c] + m62[c] + m149[c]
subsystem: Arginine and proline metabolism
- id: r1063
name: Biotinyl-5'-AMP:apo-[carboxylase] ligase (AMP-forming)
genes: PICST_69676
equation: m415[c] + m422[c] => m109[c] + m419[c]
subsystem: Biotin metabolism
- id: r1064
name: Deamido-NAD+:L-glutamine amido-ligase (AMP-forming)
genes: PICST_40885
equation: m57[c] + m60[c] + m140[c] + m684[c] => m68[c] + m78[c] + m109[c] + m133[c]
subsystem: Nicotinate and nicotinamide metabolism
- id: r1065
name: Deamido-NAD+:L-glutamine amido-ligase (AMP-forming)
equation: m961[m] + m965[m] + m1077[m] + m1183[m] => m956[m] + m989[m] + m991[m]
+ m1051[m]
subsystem: Nicotinate and nicotinamide metabolism
- id: r1066
name: Xanthosine-5'-phosphate:L-glutamine amido-ligase (AMP-forming)
genes: PICST_70121
equation: m57[c] + m60[c] + m140[c] + m298[c] => m78[c] + m109[c] + m133[c] + m297[c]
subsystem: Purine metabolism
- id: r1067
name: 5'-Phosphoribosylformylglycinamide:L-glutamine amido-ligase
genes: PICST_75569
equation: m57[c] + m60[c] + m140[c] + m276[c] => m58[c] + m62[c] + m133[c] + m277[c]
subsystem: Purine metabolism
- id: r1068
name: L-aspartate:L-glutamine amido-ligase (AMP-forming)
genes: PICST_83540
equation: m57[c] + m60[c] + m135[c] + m140[c] => m78[c] + m109[c] + m133[c] + m138[c]
subsystem: Alanine, aspartate and glutamate metabolism
- id: r1069
name: Carbon-dioxide:ammonia ligase
genes: PICST_50410 or PICST_90563
equation: (2) m57[c] + m60[c] + m101[c] + m140[c] => (2) m58[c] + m62[c] + m133[c]
+ m143[c]
subsystem: Alanine, aspartate and glutamate metabolism
- id: r107
name: trypanothione:hydroperoxide oxidoreductase
genes: PICST_73480 or PICST_77026 or PICST_70431
equation: m546[c] + m553[c] => m60[c] + m545[c] + m555[c]
subsystem: Glutathione metabolism
- id: r1070
name: hydrogen-carbonate:L-glutamine amido-ligase (ADP-forming,
genes: PICST_28533 or PICST_50410 or PICST_90563
equation: (2) m57[c] + m60[c] + m101[c] + m140[c] => (2) m58[c] + m62[c] + m133[c]
+ m143[c]
subsystem: Alanine, aspartate and glutamate metabolism
- id: r1071
name: Asp-tRNA(Asn):L-glutamine amido-ligase (ADP-forming)
genes: PICST_52015 and PICST_87495
equation: m57[c] + m60[c] + m140[c] + m396[c] => m58[c] + m62[c] + m133[c] + m364[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1072
name: Asp-tRNA(Asn):L-glutamine amido-ligase (ADP-forming)
genes: PICST_52015
equation: m961[m] + m965[m] + m1077[m] + m1115[m] => m962[m] + m963[m] + m991[m]
+ m1074[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1073
name: Glu-tRNA(Gln):L-glutamine amido-ligase(ADP-forming)
genes: PICST_52015 and PICST_87495
equation: m57[c] + m60[c] + m140[c] + m395[c] => m58[c] + m62[c] + m133[c] + m368[c]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1074
name: Glu-tRNA(Gln):L-glutamine amido-ligase(ADP-forming)
genes: PICST_52015
equation: m961[m] + m965[m] + m1077[m] + m1113[m] => m962[m] + m963[m] + m991[m]
+ m1079[m]
subsystem: Aminoacyl-tRNA biosynthesis
- id: r1075
name: Pyruvate:carbon-dioxide ligase (ADP-forming)
genes: PICST_90975
equation: m57[c] + m75[c] + m101[c] => m58[c] + m62[c] + m98[c]
subsystem: Pyruvate metabolism
- id: r1076
name: Acetyl-CoA:carbon-dioxide ligase (ADP-forming)
equation: m57[c] + m94[c] + m101[c] => m58[c] + m62[c] + m102[c]
subsystem: Pyruvate metabolism
- id: r1077
name: Acetyl-CoA:carbon-dioxide ligase (ADP-forming)
genes: PICST_81158
equation: m950[m] + m954[m] + m961[m] => m962[m] + m963[m] + m964[m]
subsystem: Pyruvate metabolism
- id: r1078
name: 3-Methylcrotonoyl-CoA:carbon-dioxide ligase (ADP-forming)
genes: PICST_28452 and PICST_90975
equation: m950[m] + m961[m] + m1030[m] => m962[m] + m963[m] + m1031[m]
subsystem: Valine, leucine and isoleucine degradation
- id: r1079
name: Non enzymatic
equation: m150[c] <=> m60[c] + m152[c]
subsystem: Arginine and proline metabolism
- id: r108
name: glutathione:hydrogen-peroxide oxidoreductase
genes: PICST_52875 or PICST_78456
equation: m118[c] + (2) m541[c] => (2) m60[c] + m540[c]
subsystem: Glutathione metabolism
- id: r1080
name: Non enzymatic
equation: m1000[m] <=> m965[m] + m992[m]
subsystem: Arginine and proline metabolism
- id: r1081
name: (2S)-2-Isopropyl-3-oxosuccinate
equation: m186[c] => m101[c] + m187[c]
subsystem: Valine, leucine and isoleucine biosynthesis
- id: r1084
name: Alternative oxidase
genes: AOX_PICST
equation: (2) m946[m] + m986[m] + (0.5) m987[m] => m965[m] + m985[m]
subsystem: Oxidative phosphorylation
- id: r1085
name: non-enzymatic
equation: m60[c] + m255[c] => m75[c] + m256[c]
subsystem: Cysteine and methionine metabolism
- id: r1087
name: 1-acyl-sn-glycero-3-phosphoglycerol O-acyltransferase
equation: m499[c] + m503[c] => m62[c] + m565[c]
subsystem: Glycerophospholipid metabolism
- id: r1088
name: sn-Glycerol 3-phosphate mitochondrial transport
equation: m499[c] <=> m1165[m]
subsystem: Mitochondrial transport
- id: r1089
name: Acyl-carrier protein mitochondrial transport
equation: m432[c] <=> m1122[m]
subsystem: Mitochondrial transport
- id: r109
name: L-tryptophan:oxygen 2,3-oxidoreductase (decyclizing)
genes: PICST_87443
equation: m117[c] + m214[c] => m222[c]
subsystem: Tryptophan metabolism
- id: r1090
name: Hexadecanoic acid mitochondrial transport
equation: m1155[m] <=> m430[c]
subsystem: Mitochondrial transport
- id: r1091
name: Octadecanoic acid mitochondrial transport
equation: m1160[m] <=> m469[c]
subsystem: Mitochondrial transport
- id: r1092
name: Tetradecanoic acid mitochondrial transport
equation: m1150[m] <=> m460[c]
subsystem: Mitochondrial transport
- id: r1093
name: Dodecanoic acid mitochondrial transport
equation: m1145[m] <=> m455[c]
subsystem: Mitochondrial transport
- id: r1094
name: Glycerone phosphate mitochondrial transport
equation: m1166[m] <=> m66[c]
subsystem: Mitochondrial transport
- id: r1095
name: (S)-1-Pyrroline-5-carboxylate mitochondrial transport
equation: m992[m] <=> m152[c]
subsystem: Mitochondrial transport
- id: r1096
name: tetrahydrofolate mitochondrial permease
equation: m246[c] <=> m1037[m]
subsystem: Mitochondrial transport
- id: r1097
name: (R)-2-Hydroxybutane-1,2,4-tricarboxylate mitochondrial transport
equation: m814[c] <=> m1212[m]
subsystem: Mitochondrial transport
- id: r1098
name: coproporphyrinogen III mitochondrial permease
equation: m709[c] <=> m1213[m]
subsystem: Mitochondrial transport
- id: r1099
name: dihydroorotate mitochondrial permease
equation: m323[c] <=> m1056[m]
subsystem: Mitochondrial transport
- id: r11
name: Ethanol:NAD+ oxidoreductase
genes: PICST_27980 and PICST_29252 and PICST_67803 and PICST_68558
equation: m956[m] + m969[m] <=> m946[m] + m957[m] + m970[m]
subsystem: Pyruvate metabolism
- id: r110
name: L-Cysteine:oxygen oxidoreductase
genes: PICST_43654
equation: m117[c] + m253[c] => m254[c]
subsystem: Cysteine and methionine metabolism
- id: r1100
name: trasn,trans,cis-Geranylgeranyl diphosphate mitochondrial transport
equation: m815[c] <=> m1214[m]
subsystem: Mitochondrial transport
- id: r1101
name: 3-Methyl-2-oxobutanoic acid mitochondrial transport
equation: m1006[m] <=> m99[c]
subsystem: Mitochondrial transport
- id: r1102
name: (S)-3-Methyl-2-oxopentanoic acid mitochondrial transport
equation: m1011[m] <=> m194[c]
subsystem: Mitochondrial transport
- id: r1103
name: formyltetrahydrofolate mitochondrial permease
equation: m247[c] <=> m1043[m]
subsystem: Mitochondrial transport
- id: r1104
name: 4-Methyl-2-oxopentanoate mitochondrial transport
equation: m187[c] <=> m1026[m]
subsystem: Mitochondrial transport
- id: r1105
name: 5,10-methenyltetrahydrofolate mitochondrial permease
equation: m248[c] <=> m1044[m]
subsystem: Mitochondrial transport
- id: r1106
name: S-adenosylmethionine transporter of the mitochondrial inner membrane, member
of the mitochondrial ca
genes: PICST_50535
equation: m178[c] <=> m1172[m]
subsystem: Mitochondrial transport
- id: r1107
name: S-adenosyl-L-homocysteine mitochondrial permease
equation: m180[c] <=> m1176[m]
subsystem: Mitochondrial transport
- id: r1108
name: (S)-3-hydroxy-3-methylglutaryl-CoA mitochondrial permease
equation: m790[c] <=> m1032[m]
subsystem: Mitochondrial transport
- id: r1109
name: dihydrofolate mitochondrial permease
equation: m341[c] <=> m1162[m]
subsystem: Mitochondrial transport
- id: r111
name: 4-Hydroxyphenylpyruvate:oxygen oxidoreductase
genes: PICST_46345
equation: m117[c] + m207[c] => m101[c] + m218[c]
subsystem: Tyrosine metabolism
- id: r1110
name: propionate mitochondrial permease
equation: m816[c] <=> m1215[m]
subsystem: Mitochondrial transport
- id: r1111
name: 2-isopropylmalate mitochondrial permease
equation: m817[c] <=> m1216[m]
subsystem: Mitochondrial transport
- id: r1112
name: Glutathione mitochondrial transport
equation: m1164[m] <=> m541[c]
subsystem: Mitochondrial transport
- id: r1113
name: L-kynurenine mitochondrial permease
equation: m224[c] <=> m1217[m]
subsystem: Mitochondrial transport
- id: r1114
name: lactaldehyd mitochondrial permease
equation: m818[c] <=> m1218[m]
subsystem: Mitochondrial transport
- id: r1115
name: 5-methyltetrahydrofolate mitochondrial permease
equation: m249[c] <=> m1219[m]
subsystem: Mitochondrial transport
- id: r1116
name: 2-dehydropantoate mitochondrial permease
equation: m695[c] <=> m1220[m]
subsystem: Mitochondrial transport
- id: r1117
name: O-acetyl-L-serine mitochondrial permease
equation: m251[c] <=> m1046[m]
subsystem: Mitochondrial transport
- id: r1118
name: N2-acetyl-L-ornithine mitochondrial permease
equation: m146[c] <=> m998[m]
subsystem: Mitochondrial transport
- id: r1119
name: 2-oxobutanoate mitochondrial permease
equation: m192[c] <=> m1007[m]
subsystem: Mitochondrial transport
- id: r112
name: Homogentisate:oxygen 1,2-oxidoreductase (decyclizing)
equation: m117[c] + m218[c] <=> m219[c]
subsystem: Tyrosine metabolism
- id: r1120
name: Phosphatidylserine mitochondrial transport
equation: m562[c] <=> m1167[m]
subsystem: Mitochondrial transport
- id: r1121
name: 2-phenylethanol mitochondrial membrane diffusion
equation: m819[c] <=> m1221[m]
subsystem: Mitochondrial transport
- id: r1122
name: 5-aminolevulinate mitochondrial permease
equation: m1041[m] <=> m705[c]
subsystem: Mitochondrial transport
- id: r1123
name: Phosphatidylethanolamine mitochondrial transport
equation: m1168[m] <=> m568[c]
subsystem: Mitochondrial transport
- id: r1124
name: Mitochondrial membrane transporter
genes: PICST_60941
equation: m820[c] <=> m949[m]
subsystem: Mitochondrial transport
- id: r1125
name: (S)-Methylmalonate semialdehyde transport to the mitochondria
equation: m821[c] <=> m1018[m]
subsystem: Mitochondrial transport
- id: r1126
name: Exports 2-oxoadipate and 2-oxoglutarate from the mitochond
genes: PICST_76093
equation: m112[c] + m1222[m] <=> m161[c] + m966[m]
subsystem: Mitochondrial transport
- id: r1127
name: Mitochondrial inner membrane transporter, transports oxaloacetate, sulfate,
and thiosulfate
genes: PICST_41834
equation: m71[c] + m98[c] <=> m946[m] + m960[m]
subsystem: Mitochondrial transport
- id: r1128
name: Mitochondrial inner membrane citrate transporter
genes: PICST_29031
equation: m97[c] + m972[m] <=> m822[c] + m959[m]
subsystem: Mitochondrial transport
- id: r1129
name: citrate/isocitrate mitochondrial shuttle
genes: PICST_29031
equation: m822[c] + m973[m] <=> m110[c] + m972[m]
subsystem: Mitochondrial transport
- id: r113
name: 1,2-dihydroxy-5-(methylthio)pent-1-en-3-one:oxygen oxidoreductase
genes: PICST_37619
equation: m117[c] + m271[c] => m119[c] + m261[c]
subsystem: Cysteine and methionine metabolism
- id: r1130
name: phosphate mitochondrial permease
genes: PICST_59616 or PICST_76085
equation: m62[c] + m946[m] <=> m71[c] + m963[m]
subsystem: Mitochondrial transport
- id: r1131
name: Mitochondrial succinate-fumarate transporter
genes: PICST_78946 or PICST_60344 or PICST_77600
equation: m114[c] + m982[m] <=> m113[c] + m980[m]
subsystem: Mitochondrial transport
- id: r1132
name: phosphate/succinate mitochondrial shuttle
genes: PICST_77600
equation: m114[c] + m963[m] <=> m62[c] + m980[m]
subsystem: Mitochondrial transport
- id: r1133
name: phosphate/malate mitochondrial shuttle
equation: m97[c] + m963[m] <=> m62[c] + m959[m]
subsystem: Mitochondrial transport
- id: r1134
name: malate/succinate mitochondrial shuttle
genes: PICST_78946
equation: m97[c] + m980[m] <=> m114[c] + m959[m]
subsystem: Mitochondrial transport
- id: r1135
name: Mitochondrial dicarboxylate carrier, integral membrane protein
genes: PICST_78946
equation: m114[c] + m963[m] <=> m62[c] + m980[m]
subsystem: Mitochondrial transport
- id: r1136
name: Fe2+ mitochondrial transport
equation: m405[c] <=> m1192[m]
subsystem: Mitochondrial transport
- id: r1137
name: Oxygen mitochondrial transport
equation: m117[c] <=> m987[m]
subsystem: Mitochondrial transport
- id: r1138
name: NH3 mitochondrial membrane diffusion
equation: m139[c] <=> m1040[m]
subsystem: Mitochondrial transport
- id: r1139
name: H2S mitochondrial membrane diffusion
equation: m823[c] <=> m1223[m]
subsystem: Mitochondrial transport
- id: r114
name: 3-Hydroxyanthranilate:oxygen 3,4-oxidoreductase (decyclizing)
genes: PICST_76205
equation: m117[c] + m228[c] => m229[c]
subsystem: Tryptophan metabolism
- id: r1140
name: Mitochondrial carrier protein involved in the accumulation of CoA in the
mitochondrial matrix
genes: PICST_29408
equation: m92[c] <=> m953[m]
subsystem: Mitochondrial transport
- id: r1141
name: Sulfur mitochondrial transport
equation: m417[c] <=> m1171[m]
subsystem: Mitochondrial transport
- id: r1142
name: CO2 mitochondrial membrane diffusion
equation: m950[m] <=> m101[c]
subsystem: Mitochondrial transport
- id: r1143
name: H2O mitochondrial membrane diffusion
equation: m965[m] <=> m60[c]
subsystem: Mitochondrial transport
- id: r1144
name: Mitochondrial pyrimidine nucleotide transporter
genes: PICST_83067 or PICST_45104 or PICST_85436
equation: m58[c] + m62[c] + m71[c] + m961[m] + m965[m] <=> m57[c] + m60[c] + m946[m]
+ m962[m] + m963[m]
subsystem: Mitochondrial transport
- id: r1145
name: Mitochondrial GTP/GDP transporter
equation: m71[c] + m284[c] + m981[m] <=> m285[c] + m946[m] + m979[m]
subsystem: Mitochondrial transport
- id: r1146
name: Mitochondrial NAD+ transporter, involved in the transport of NAD+ into the
mitochondria
genes: PICST_45267 or PICST_28993
equation: m68[c] <=> m956[m]
subsystem: Mitochondrial transport
- id: r1147
name: Mitochondrial pyrimidine nucleotide transporter
genes: PICST_83067
equation: m71[c] + m77[c] + m1224[m] <=> m326[c] + m946[m] + m1058[m]
subsystem: Mitochondrial transport
- id: r1148
name: Protein required for transport of flavin adenine dinucleotide (FAD)
genes: PICST_57133
equation: m725[c] + m1225[m] <=> m716[c] + m983[m]
subsystem: Mitochondrial transport
- id: r1149
name: O-acetyl-L-homoserine mitochondrial permease
equation: m258[c] <=> m1050[m]
subsystem: Mitochondrial transport
- id: r115
name: L-tryptophan:oxygen 2-oxidoreductase (decarboxylating)
equation: m117[c] + m214[c] => m60[c] + m101[c] + m223[c]
subsystem: Tryptophan metabolism
- id: r1150
name: L-homoserine mitochondrial permease
equation: m1049[m] <=> m241[c]
subsystem: Mitochondrial transport
- id: r1151
name: orotate mitochondrial permease
equation: m325[c] <=> m1057[m]
subsystem: Mitochondrial transport
- id: r1152
name: carbamoyl phosphate mitochondrial permease
equation: m143[c] <=> m1226[m]
subsystem: Mitochondrial transport
- id: r1153
name: 2-acetolactate mitochondrial permease
equation: m968[m] <=> m824[c]
subsystem: Mitochondrial transport
- id: r1154
name: (R)-Lactate mitochondrial transport
equation: m91[c] + m946[m] <=> m71[c] + m947[m]
subsystem: Mitochondrial transport
- id: r1155
name: (S)-Lactate mitochondrial transport
equation: m90[c] + m946[m] <=> m71[c] + m944[m]
subsystem: Mitochondrial transport
- id: r1156
name: ethanol mitochondrial membrane diffusion
equation: m106[c] <=> m969[m]
subsystem: Mitochondrial transport
- id: r1157
name: acetaldehyde mitochondrial membrane diffusion
equation: m105[c] <=> m970[m]
subsystem: Mitochondrial transport
- id: r1158
name: acetate mitochondrial membrane diffusion