-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreactions.yaml
10670 lines (10670 loc) · 462 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: 10FTHFGLULL
name: 10-Formyltetrahydrofolate:L-glutamate ligase (ADP-forming)
genes: (maker_Scaffold_2187-snap-gene-0.47) or (genemark_Scaffold_89-abinit-gene-0.34)
equation: 10fthf[c] + atp[c] + glu-L[c] => 10fthfglu-L[c] + adp[c] + pi[c]
- id: 10FTHFGLULLm
name: 10-Formyltetrahydrofolate:L-glutamate ligase (ADP-forming)
genes: (genemark_Scaffold_89-abinit-gene-0.34) or (maker_Scaffold_2187-snap-gene-0.47)
equation: 10fthf[m] + atp[m] + glu-L[m] => 10fthfglu-L[m] + adp[m] + pi[m]
- id: 10FTHFtx
name: 10-Formyltetrahydrofolate glyoxysomal transport via diffusion
equation: 10fthf[c] <=> 10fthf[x]
- id: 1ACPCth
name: 1-Aminocyclopropane-1-carboxylate transport, chloroplast
equation: 1acpc[c] <=> 1acpc[h]
- id: 1ACPCtm
name: 1-Aminocyclopropane-1-carboxylate transport, mitochondria
equation: 1acpc[c] <=> 1acpc[m]
- id: 1AGPEAT1801819Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:0/18:1(9Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe180[c] + ocdce9coa[c] => coa[c] + pe1801819Z[c]
- id: 1AGPEAT1801829Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:0/18:2(9Z,12Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe180[c] + lnlccoa[c] => coa[c] + pe1801829Z12Z[c]
- id: 1AGPEAT1801835Z9Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:0/18:3(5Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe180[c] + pacoa[c] => coa[c] + pe1801835Z9Z12Z[c]
- id: 1AGPEAT1801845Z9Z12Z15Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:0/18:4(5Z,9Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe180[c] + cacoa[c] => coa[c] + pe1801845Z9Z12Z15Z[c]
- id: 1AGPEAT18111Z1819Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(11Z)/18:1(9Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe18111Z[c] + ocdce9coa[c] => coa[c] + pe18111Z1819Z[c]
- id: 1AGPEAT18111Z1829Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(11Z)/18:2(9Z,12Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe18111Z[c] + lnlccoa[c] => coa[c] + pe18111Z1829Z12Z[c]
- id: 1AGPEAT18111Z1835Z9Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(11Z)/18:3(5Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe18111Z[c] + pacoa[c] => coa[c] + pe18111Z1835Z9Z12Z[c]
- id: 1AGPEAT18111Z1845Z9Z12Z15Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(11Z)/18:4(5Z,9Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe18111Z[c] + cacoa[c] => coa[c] + pe18111Z1845Z9Z12Z15Z[c]
- id: 1AGPEAT1819Z1819Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(9Z)/18:1(9Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe1819Z[c] + ocdce9coa[c] => coa[c] + pe1819Z1819Z[c]
- id: 1AGPEAT1819Z1829Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(9Z)/18:2(9Z,12Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe1819Z[c] + lnlccoa[c] => coa[c] + pe1819Z1829Z12Z[c]
- id: 1AGPEAT1819Z1835Z9Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(9Z)/18:3(5Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe1819Z[c] + pacoa[c] => coa[c] + pe1819Z1835Z9Z12Z[c]
- id: 1AGPEAT1819Z1845Z9Z12Z15Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:1(9Z)/18:4(5Z,9Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe1819Z[c] + cacoa[c] => coa[c] + pe1819Z1845Z9Z12Z15Z[c]
- id: 1AGPEAT1829Z12Z1835Z9Z12Z
name: 1-acylglycerophosphoethanolamine O-acyltransferase (18:2(9Z,12Z)/18:3(5Z,12Z,15Z))
genes: (maker_Scaffold_459-augustus-gene-0.176) or (augustus_masked_Scaffold_214-abinit-gene-0.24)
or (genemark_Scaffold_1181-abinit-gene-0.5)
equation: 1agpe1829Z12Z[c] + pacoa[c] => coa[c] + pe1829Z12Z1835Z9Z12Z[c]
- id: 23DHMBth
name: 2,3-Dihydroxy-3-methylbutanoate transport, chloroplast
equation: 23dhmb[c] <=> 23dhmb[h]
- id: 23DHMBtm
name: 2,3-Dihydroxy-3-methylbutanoate transport, mitochondria
equation: 23dhmb[c] <=> 23dhmb[m]
- id: 23DHMPth
name: 2,3-Dihydroxy-3-methylpentanoate transport, chloroplast
equation: 23dhmp[c] <=> 23dhmp[h]
- id: 2DHPFALDL
name: 2-dehydropantoate formaldehyde-lyase (3-methyl-2-oxobutanoate-forming)
genes: (maker_Scaffold_188-augustus-gene-0.51)
equation: 2dhp[c] <=> 3mob[c] + fald[c]
- id: 2DHPtm
name: 2-Dehydropantoate transport, mitochondria
equation: 2dhp[c] <=> 2dhp[m]
- id: 2PGLYCth
name: 2-Phosphoglycolate transport via passive diffusion, chloroplast
equation: 2pglyc[h] <=> 2pglyc[c]
- id: 2PGLYCtx
name: 2-Phosphoglycolate transport via passive diffusion, glyoxysomal
equation: 2pglyc[x] <=> 2pglyc[c]
- id: 2PGth
name: glycerate transport, chloroplast
equation: 2pg[c] <=> 2pg[h]
- id: 2PGtm
name: glycerate transport, mitochondria
equation: 2pg[c] <=> 2pg[m]
- id: 2hblCv
name: (R)-2-hydroxybutane-1,2,4-tricarboxylate hydro-lyase
genes: (maker_Scaffold_571-snap-gene-0.88)
equation: hmcit-L[m] <=> h2o[m] + hcaco[m]
- id: 2ogtmhCv
name: 2-oxoglutaramate amidohydrolase
genes: (maker_Scaffold_1288-snap-gene-0.24)
equation: h2o[h] + 2oglutm[h] => nh4[h] + 2oglut[h]
- id: 34HPPYRI
name: 3-(4-Hydroxyphenyl)pyruvate keto-enol-isomerase
equation: 34hpp[c] <=> 2h34hppr[c]
- id: 34HPPt2m
name: 3-(4-hydroxyphenyl)pyruvate mitochondrial transport via proton symport
equation: 34hpp[c] + h[c] <=> 34hpp[m] + h[m]
- id: 3C3HMPth
name: 3-Carboxy-3-hydroxy-4-methylpentanoate transport, chloroplast
equation: 3c3hmp[c] <=> 3c3hmp[h]
- id: 3DSPHR
name: 3-dehydrosphinganine reductase
genes: (genemark_Scaffold_100-abinit-gene-0.8)
equation: 3dsphgn[c] + h[c] + nadph[c] => nadp[c] + sphgn[c]
- id: 3HAD100
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hdecACP[h] <=> h2o[h] + tdec2eACP[h]
- id: 3HAD120
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hddecACP[h] <=> h2o[h] + tddec2eACP[h]
- id: 3HAD140
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hmrsACP[h] <=> h2o[h] + tmrs2eACP[h]
- id: 3HAD160
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hpalmACP[h] <=> h2o[h] + tpalm2eACP[h]
- id: 3HAD180
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hoctaACP[h] => h2o[h] + toctd2eACP[h]
- id: 3HAD181
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase ((11Z)-n-C18:1)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hcvac11eACP[h] => h2o[h] + t3c11vaceACP[h]
- id: 3HAD40
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hbutACP[h] <=> but2eACP[h] + h2o[h]
- id: 3HAD60
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hhexACP[h] <=> h2o[h] + thex2eACP[h]
- id: 3HAD80
name: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)
genes: (genemark_Scaffold_793-abinit-gene-0.10)
equation: 3hoctACP[h] <=> h2o[h] + toct2eACP[h]
- id: 3MOBth
name: 3-Methyl-2-oxobutanoate transport, chloroplast
equation: 3mob[c] <=> 3mob[h]
- id: 3MOPtm
name: 3-Methyl-2-oxopentanoate transport, diffusion, mitochondria
equation: 3mop[c] <=> 3mop[m]
- id: 3OACOAR
name: 3-oxoacyl-CoA reductase (18:0)
genes: (maker_Scaffold_945-augustus-gene-0.41)
equation: 3oodcoa[c] + h[c] + nadph[c] => 3hodcoa[c] + nadp[c]
- id: 3OACOAS
name: 3-oxoacyl-CoA synthase (18:0)
genes: (genemark_Scaffold_898-abinit-gene-0.1)
equation: malcoa[c] + pmtcoa[c] => 3oodcoa[c] + co2[c] + coa[c]
- id: 3OAR100
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3odecACP[h] + h[h] + nadph[h] <=> 3hdecACP[h] + nadp[h]
- id: 3OAR120
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3oddecACP[h] + h[h] + nadph[h] <=> 3hddecACP[h] + nadp[h]
- id: 3OAR140
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3omrsACP[h] + h[h] + nadph[h] <=> 3hmrsACP[h] + nadp[h]
- id: 3OAR160
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3opalmACP[h] + h[h] + nadph[h] <=> 3hpalmACP[h] + nadp[h]
- id: 3OAR180
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3ooctdACP[h] + h[h] + nadph[h] => 3hoctaACP[h] + nadp[h]
- id: 3OAR181
name: 3-oxoacyl-[acyl-carrier-protein] reductase ((11Z)-n-C18:1)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3ocvac11eACP[h] + h[h] + nadph[h] => 3hcvac11eACP[h] + nadp[h]
- id: 3OAR40
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: actACP[h] + h[h] + nadph[h] <=> 3hbutACP[h] + nadp[h]
- id: 3OAR60
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3ohexACP[h] + h[h] + nadph[h] <=> 3hhexACP[h] + nadp[h]
- id: 3OAR80
name: 3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)
genes: (maker_Scaffold_945-augustus-gene-0.41) or (maker_Scaffold_102-augustus-gene-0.32)
equation: 3ooctACP[h] + h[h] + nadph[h] <=> 3hoctACP[h] + nadp[h]
- id: 3OAS100
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: malACP[h] + ocACP[h] => 3odecACP[h] + ACP[h] + co2[h]
- id: 3OAS120
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: dcaACP[h] + malACP[h] => 3oddecACP[h] + ACP[h] + co2[h]
- id: 3OAS140
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: ddcaACP[h] + malACP[h] => 3omrsACP[h] + ACP[h] + co2[h]
- id: 3OAS160
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: malACP[h] + myrsACP[h] => 3opalmACP[h] + ACP[h] + co2[h]
- id: 3OAS180
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: malACP[h] + palmACP[h] => 3ooctdACP[h] + ACP[h] + co2[h]
- id: 3OAS181
name: 3-oxoacyl-[acyl-carrier-protein] synthase ((11Z)-n-C18:1)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: hdeACP[h] + malACP[h] => 3ocvac11eACP[h] + ACP[h] + co2[h]
- id: 3OAS60
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: butACP[h] + malACP[h] => 3ohexACP[h] + ACP[h] + co2[h]
- id: 3OAS80
name: 3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)
genes: (genemark_Scaffold_2003-abinit-gene-0.4) or (maker_Scaffold_805-augustus-gene-0.126)
or (maker_Scaffold_3095-snap-gene-0.8)
equation: hexACP[h] + malACP[h] => 3ooctACP[h] + ACP[h] + co2[h]
- id: 3PG(pi)thr
name: 3-Phospho-D-glycerate transport via triose phosphate translocator (from chloroplast)
genes: (maker_Scaffold_321-snap-gene-0.119) or (maker_Scaffold_469-augustus-gene-0.50)
or (maker_Scaffold_807-augustus-gene-0.96)
equation: 3pg[c] + pi[h] <=> 3pg[h] + pi[c]
- id: 3PGtx
name: 3-Phospho-D-glycerate transport, glycosome to cytosol
equation: 3pg[x] <=> 3pg[c]
- id: 3SPYRSPh
name: 3-sulfinopyruvate hydrolase (spontaneous), chloroplast
equation: 3snpyr[h] + h2o[h] => hso3[h] + pyr[h]
- id: 3SPYRSPm
name: 3-sulfinopyruvate hydrolase (spontaneous), mitochondria
equation: 3snpyr[m] + h2o[m] => hso3[m] + pyr[m]
- id: 3hppdCv
name: 3-hydroxypropionate dehydrogenase
genes: (maker_Scaffold_234-augustus-gene-0.197)
equation: 3hpp[c] + nad[c] <=> h[c] + nadh[c] + msa[c]
- id: 44MZYMMO
name: 4,4-dimethyl-5alpha-cholesta-8,24-dien-3beta-ol monooxygenase
genes: (maker_Scaffold_76-augustus-gene-0.253)
equation: 44mzym[c] + (2) h[c] + (3) nadph[c] + (3) o2[c] <=> 4mzym-int1[c] + (4)
h2o[c] + (3) nadp[c]
- id: 44MZYMOR
name: 4,4-dimethyl-5alpha-cholesta-8,24-dien-3beta-ol:NADP+ D14-oxidoreductase
genes: (maker_Scaffold_1237-snap-gene-0.34)
equation: 44mctr[c] + h[c] + nadph[c] <=> 44mzym[c] + nadp[c]
- id: 4ABUTth
name: 4-aminobutanoate transport via diffusion, chloroplast
equation: 4abut[c] <=> 4abut[h]
- id: 4ABUTthi
name: Gamma-aminobutyric acid permease, chloroplast
equation: 4abut[c] + h[c] => 4abut[h] + h[h]
- id: 4ABUTtm
name: 4-aminobutanoate transport via diffusion, mitochondria
equation: 4abut[c] <=> 4abut[m]
- id: 4ABUTtmi
name: Gamma-aminobutyric acid permease, mitochondrial
equation: 4abut[c] + h[c] => 4abut[m] + h[m]
- id: 4HGLSDCv
name: L 4 hydroxyglutamate semialdehyde dehydrogenase
genes: (maker_Scaffold_807-snap-gene-0.107)
equation: h2o[c] + nad[c] + 4hglusa[c] => (2) h[c] + nadh[c] + e4hglu[c]
- id: 4MOPtm
name: 4-Methyl-2-oxopentanoate transport via diffusion, mitochondria
equation: 4mop[c] <=> 4mop[m]
- id: 4MZYMCODH
name: 4alpha-methylzymosterol-4-carboxylate 3-dehydrogenase (decarboxylating)
genes: (genemark_Scaffold_1698-abinit-gene-0.22)
equation: 4mzym-int1[c] + nadp[c] => 4mzym-int2[c] + co2[c] + nadph[c]
- id: 4MZYMDM
name: 4alpha-methylzymosterol demethylase
equation: 4mzym[c] + h[c] + (2) nadph[c] + (2) o2[c] <=> for[c] + (2) h2o[c] +
(2) nadp[c] + zymst[c]
- id: 4MZYMR
name: 4alpha-methylzymosterol reductase
genes: (maker_Scaffold_875-augustus-gene-0.215)
equation: 4mzym-int2[c] + (2) h2o[c] + nadp[c] <=> 4mzym[c] + h[c] + nadph[c] +
o2[c]
- id: 4abamtCv
name: 4-aminobutyrate aminotransferase
genes: (maker_Scaffold_617-augustus-gene-0.115)
equation: akg[c] + ala-B[c] => glu-L[c] + msa[c]
- id: 56DH5FLURAAMH
name: 5,6-dihydro-5-fluorouracil amidohydrolase
genes: (maker_Scaffold_1280-augustus-gene-0.123)
equation: 56dh5flura[c] + h[c] + h2o[c] => aflburppa[c]
- id: 5FLURAOR
name: 5-fluorouracil:NADP oxidoreductase
genes: (maker_Scaffold_1105-augustus-gene-0.51)
equation: 5flura[c] + nadph[c] => 56dh5flura[c] + nadp[c]
- id: 5FLURAPRT
name: 5-fluorouracil phosphoribosyltransferase
genes: (genemark_Scaffold_756-abinit-gene-0.11)
equation: 5flura[c] + prpp[c] => 5flurimp[c] + h[c] + ppi_c[c]
- id: 5FLURAt
name: nucleobase transport, fluorouracil (extracellular)
genes: (maker_Scaffold_5-augustus-gene-0.195)
equation: 5flura[e] <=> 5flura[c]
- id: 5FTHFt
name: 5-Formyltetrahydrofolate uptake carrier, plasma membrane
equation: 5fthf[e] + h[e] <=> 5fthf[c] + h[c]
- id: 5FTHFtm
name: 5-Formyltetrahydrofolate uptake carrier, mitochondria
equation: 5fthf[c] + h[c] <=> 5fthf[m] + h[m]
- id: 5MTAth
name: 5-Methylthioadenosine transport via diffusion, chloroplast
equation: 5mta[c] <=> 5mta[h]
- id: 5MTAtm
name: 5-Methylthioadenosine transport via diffusion, mitochondria
equation: 5mta[c] <=> 5mta[m]
- id: 6MPURPRT
name: 6-mercaptopurine phosphoribosyltransferase
genes: (augustus_masked_Scaffold_311-abinit-gene-0.9)
equation: 6mpur[c] + prpp[c] => 6tins5mp[c] + ppi_c[c]
- id: 6MPURt
name: nucleobase transport, 6-mercaptopurine (extracellular)
genes: (maker_Scaffold_5-augustus-gene-0.195)
equation: 6mpur[e] <=> 6mpur[c]
- id: 6PGLthr
name: 6-phospho-D-glucono-1,5-lactone transport via diffusion, chloroplast
equation: 6pgl[c] <=> 6pgl[h]
- id: 6TINS5MPOR
name: 6-thioinosine 5'-monophosphate:NAD oxidoreductase
genes: (genemark_Scaffold_1744-abinit-gene-0.8)
equation: 6tins5mp[c] + h2o[c] + nad[c] => 6txan5mp[c] + h[c] + nadh[c]
- id: 6TXAN5MPAML
name: 6-thioxanthine 5'-monophosphate:L-glutamine amido-ligase
genes: (maker_Scaffold_472-augustus-gene-0.38)
equation: 6txan5mp[c] + atp[c] + gln-L[c] + h2o[c] => 6tgsnmp[c] + amp[c] + glu-L[c]
+ (2) h[c] + ppi_c[c]
- id: A1E
name: Aldose 1-epimerase
genes: (maker_Scaffold_1166-augustus-gene-0.33)
equation: glc-A_c_h[c] <=> glc-B[c]
- id: AAAT
name: amino-acid N-acetyltransferase
genes: (genemark_Scaffold_719-abinit-gene-0.20)
equation: accoa[c] + glu-L[c] => acglu[c] + coa[c] + h[c]
- id: AABHH
name: alpha-Aminobutyryl histidine hydrolase
genes: (maker_Scaffold_20-augustus-gene-0.58)
equation: 4abut[c] + his-L[c] => h2o[c] + hcarn[c]
- id: AACP1819ZS
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (18:1(9Z))
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + ocdce9a[h] => amp[h] + h[h] + octe9ACP[h] + ppi_h_m_u[h]
- id: AACPS1
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (14:0)
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + ttdca[h] => amp[h] + h[h] + myrsACP[h] + ppi_h_m_u[h]
- id: AACPS3
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (16:0)
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + hdca[h] => amp[h] + h[h] + palmACP[h] + ppi_h_m_u[h]
- id: AACPS4
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (16:1(9Z))
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + hdcea[h] => amp[h] + h[h] + hdeACP[h] + ppi_h_m_u[h]
- id: AACPS5
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (18:1(11Z))
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + ocdcea[h] => amp[h] + h[h] + octeACP[h] + ppi_h_m_u[h]
- id: AACPS6
name: long-chain-fatty-acid-[acyl-carrier-protein] ligase (18:0)
genes: (genemark_Scaffold_2156-abinit-gene-0.5 and maker_Scaffold_1801-augustus-gene-0.22)
equation: ACP[h] + atp[h] + ocdca[h] => amp[h] + h[h] + ocdcaACP[h] + ppi_h_m_u[h]
- id: AAL(fum)
name: N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming)
genes: (maker_Scaffold_690-augustus-gene-0.44)
equation: dcamp[c] => amp[c] + fum[c]
- id: AAPT
name: ATP:L-arabinose 1-phosphotransferase
genes: (maker_Scaffold_105-snap-gene-0.226)
equation: arab-L[c] + atp[c] => adp[c] + B-ara1p[c] + h[c]
- id: AASP
name: ATP:adenylylsulfate 3'-phosphotransferase
genes: (augustus_masked_Scaffold_2722-abinit-gene-0.0)
equation: aps[c] + atp[c] => adp[c] + h[c] + paps[c]
- id: AASPh
name: ATP:adenylylsulfate 3'-phosphotransferase, chloroplast
genes: (augustus_masked_Scaffold_2722-abinit-gene-0.0)
equation: aps[h] + atp[h] => adp[h] + h[h] + paps[h]
- id: AASPm
name: ATP:adenylylsulfate 3'-phosphotransferase, mitochondria
genes: (augustus_masked_Scaffold_2722-abinit-gene-0.0)
equation: aps[m] + atp[m] => adp[m] + h[m] + paps[m]
- id: AAT
name: alanine aminotransferase, mitochondrial
genes: (maker_Scaffold_234-augustus-gene-0.195)
equation: akg[m] + ala-L_c_m_x[m] <=> glu-L[m] + pyr[m]
- id: AATC
name: aspartate aminotransferase, cysteate forming
genes: (maker_Scaffold_1084-augustus-gene-0.39)
equation: akg[h] + Lcyst[h] <=> 3spyr[h] + glu-L[h]
- id: AATCm
name: aspartate aminotransferase, cysteate forming, mitochondria
genes: (maker_Scaffold_1084-augustus-gene-0.39)
equation: akg[m] + Lcyst[m] <=> 3spyr[m] + glu-L[m]
- id: AATG
name: aspartate aminotransferase, glutamate forming
genes: (maker_Scaffold_1084-augustus-gene-0.39)
equation: 3sala[h] + akg[h] => 3snpyr[h] + glu-L[h]
- id: AATGm
name: aspartate aminotransferase, glutamate forming, mitochondria
genes: (maker_Scaffold_1084-augustus-gene-0.39)
equation: 3sala[m] + akg[m] => 3snpyr[m] + glu-L[m]
- id: AATHA
name: alpha,alpha-trehalase (glc-A)
genes: (genemark_Scaffold_166-abinit-gene-0.57) or (maker_Scaffold_266-snap-gene-0.209)
equation: h2o[c] + tre[c] => (2) glc-A_c_h[c]
- id: AATHB
name: alpha,alpha-trehalase (glc-B)
genes: (genemark_Scaffold_166-abinit-gene-0.57) or (maker_Scaffold_266-snap-gene-0.209)
equation: h2o[c] + tre[c] => (2) glc-B[c]
- id: ABFPT
name: ATP:D-fructose 6-phosphotransferase
genes: (maker_Scaffold_625-augustus-gene-0.71) or (maker_Scaffold_772-augustus-gene-0.100)
equation: atp[c] + fru-B[c] => adp[c] + f6p-B[c] + h[c]
- id: ABFPTh
name: ATP:D-fructose 6-phosphotransferase, chloroplast
genes: (maker_Scaffold_625-augustus-gene-0.71) or (maker_Scaffold_772-augustus-gene-0.100)
equation: atp[h] + fru-B[h] => adp[h] + f6p-B[h] + h[h]
- id: ABOR
name: 4-Aminobutyraldehyde:NAD+ oxidoreductase
genes: (genemark_Scaffold_1312-abinit-gene-0.9) or (maker_Scaffold_609-augustus-gene-0.65)
equation: 4abutn[m] + h2o[m] + nadp[m] => 4abut[m] + (2) h[m] + nadph[m]
- id: ABSALDO
name: abscisic-aldehyde oxidase
equation: h2o[c] + o2[c] + absald[c] => h[c] + h2o2[c] + abscis[c]
- id: ACACT
name: Acetyl-CoA C-acetyltransferase
genes: (genemark_Scaffold_467-abinit-gene-0.7)
equation: (2) accoa[c] => aacoa[c] + coa[c]
- id: ACACT1
name: Acetyl-CoA:acetyl-CoA C-acetyltransferase
genes: (genemark_Scaffold_467-abinit-gene-0.7)
equation: aacoa[x] + coa[x] <=> (2) accoa[x]
- id: ACACT2
name: butanoyl-CoA:acetyl-CoA C-butanoyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3ohcoa[x] + coa[x] <=> accoa[x] + btcoa[x]
- id: ACACT2m
name: acetyl-CoA C-acyltransferase (C6:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + btcoa[m] => 3ohcoa[m] + coa[m]
- id: ACACT3
name: Hexanoyl-CoA:acetyl-CoA C-acyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3oocoa[x] + coa[x] <=> accoa[x] + hxcoa[x]
- id: ACACT3m
name: acetyl-CoA C-acyltransferase (C8:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + hxcoa[m] => 3oocoa[m] + coa[m]
- id: ACACT4
name: Octanoyl-CoA:acetyl-CoA C-acyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3odcoa[x] + coa[x] <=> accoa[x] + occoa[x]
- id: ACACT4m
name: acetyl-CoA C-acyltransferase (C10:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + occoa[m] => 3odcoa[m] + coa[m]
- id: ACACT5
name: Decanoyl-CoA:acetyl-CoA C-acyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3oddcoa[x] + coa[x] <=> accoa[x] + dcacoa[x]
- id: ACACT5m
name: acetyl-CoA C-acyltransferase (C12:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + dcacoa[m] => 3oddcoa[m] + coa[m]
- id: ACACT6
name: Lauroyl-CoA:acetyl-CoA C-acyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3otdcoa[x] + coa[x] <=> accoa[x] + ddcacoa[x]
- id: ACACT6m
name: acetyl-CoA C-acyltransferase (C14:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + ddcacoa[m] => 3otdcoa[m] + coa[m]
- id: ACACT7
name: myristoyl-CoA:acetylCoA C-myristoyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 3ohdcoa[x] + coa[x] <=> accoa[x] + tdcoa[x]
- id: ACACT7m
name: acetyl-CoA C-acyltransferase (C16:0)
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: accoa[m] + tdcoa[m] => 3ohdcoa[m] + coa[m]
- id: ACACtm
name: Acetoacetate transport via diffusion, mitochondria
equation: acac[c] <=> acac[m]
- id: ACACtx
name: Acetoacetate transport via diffusion, glyoxysome
equation: acac[c] <=> acac[x]
- id: ACALD
name: Acetaldehyde dehydrogenase (acetylating)
equation: acald[c] + coa[c] + nad[c] => accoa[c] + h[c] + nadh[c]
- id: ACALDh
name: Acetaldehyde dehydrogenase (acetylating), chloroplast
equation: acald[h] + coa[h] + nad[h] => accoa[h] + h[h] + nadh[h]
- id: ACALDtx
name: acetaldehyde transport via diffusion, glyoxysome
equation: acald[c] <=> acald[x]
- id: ACAROtu
name: alpha-carotene transport
equation: acaro[h] <=> acaro[u]
- id: ACAS(2ahbut)
name: acetolactate synthase, 2-Aceto-2-hydroxybutanoate forming
genes: (maker_Scaffold_65-augustus-gene-0.278 and maker_Scaffold_2223-augustus-gene-0.15)
or (maker_Scaffold_65-augustus-gene-0.278 and maker_Scaffold_93-snap-gene-0.57)
or (maker_Scaffold_65-augustus-gene-0.278 and snap_masked_Scaffold_2223-abinit-gene-0.12)
equation: 2ahethmpp[h] + 2obut[h] => 2ahbut[h] + thmpp[h]
- id: ACCAHh
name: 1-aminocyclopropane-1-carboxylate aminohydrolase (isomerizing), chloroplast
genes: (maker_Scaffold_143-augustus-gene-0.210)
equation: 1acpc[h] + h2o[h] <=> 2obut[h] + nh4[h]
- id: ACCAHm
name: 1-aminocyclopropane-1-carboxylate aminohydrolase (isomerizing), mitochondria
genes: (maker_Scaffold_143-augustus-gene-0.210)
equation: 1acpc[m] + h2o[m] <=> 2obut[m] + nh4[m]
- id: ACCAT
name: Acetyl-CoA C-acyltransferase
genes: (maker_Scaffold_53-snap-gene-0.110)
equation: 2maacoa[m] + coa[m] => accoa[m] + ppcoa[m]
- id: ACCOAC
name: acetyl-CoA carboxylase (biotin-dependent)
genes: (snap_masked_Scaffold_1320-abinit-gene-0.2) or (maker_Scaffold_756-augustus-gene-0.65)
equation: accoa[h] + cbtnCCP[h] <=> btnCCP[h] + malcoa[h]
- id: ACCOAhi
name: Acetyl-CoA carboxylase
genes: (maker_Scaffold_1205-snap-gene-0.16) or (snap_masked_Scaffold_1320-abinit-gene-0.2)
equation: accoa[h] + atp[h] + hco3[h] => adp[h] + malcoa[h] + pi[h]
- id: ACCOAth
name: Acetyl-CoA:CoA antiporter, chloroplast
genes: (maker_Scaffold_645-augustus-gene-0.44)
equation: accoa[c] + coa[h] <=> accoa[h] + coa[c]
- id: ACCOAtm
name: Acetyl-CoA:CoA antiporter, mitochondrial
genes: (maker_Scaffold_645-augustus-gene-0.44)
equation: accoa[c] + coa[m] <=> accoa[m] + coa[c]
- id: ACCOAtx
name: Acetyl-CoA:CoA antiporter, glyoxysomal
genes: (maker_Scaffold_645-augustus-gene-0.44)
equation: accoa[c] + coa[x] <=> accoa[x] + coa[c]
- id: ACDHi
name: acetaldehyde-CoA dehydrogenase
genes: (maker_Scaffold_532-augustus-gene-0.59)
equation: accoa[c] + (2) h[c] + (2) nadh[c] => coa[c] + etoh[c] + (2) nad[c]
- id: ACDHmi
name: acetaldehyde-CoA dehydrogenase, mitochondrial
genes: (maker_Scaffold_532-augustus-gene-0.59)
equation: accoa[m] + (2) h[m] + (2) nadh[m] => coa[m] + etoh[m] + (2) nad[m]
- id: ACDO
name: acireductone dioxygenase
genes: (maker_Scaffold_1114-augustus-gene-0.43)
equation: 12dmpo[c] + o2[c] => 2kmb[c] + for[c] + h[c]
- id: ACDO(co)
name: acireductone dioxygenase, CO forming
genes: (maker_Scaffold_1114-augustus-gene-0.43)
equation: 12dmpo[c] + o2[c] => 3mtpa[c] + co[c] + for[c] + h[c]
- id: ACGAM6PSi
name: acetyl-CoA:D-glucosamine-6-phosphate N-acetyltransferase
genes: (maker_Scaffold_33-augustus-gene-0.118)
equation: accoa[c] + gam6p[c] => acgam6p[c] + coa[c] + h[c]
- id: ACGAMPM
name: N-Acetyl-D-glucosamine 1-phosphate 1,6-phosphomutase
genes: (maker_Scaffold_1137-augustus-gene-0.117)
equation: acgam6p[c] <=> acgam1p[c]
- id: ACHMSSELCYSL
name: O-Acetylhomoserine succinate-lyase (adding cysteine), cytosol
genes: (maker_Scaffold_1860-snap-gene-0.39)
equation: achms[c] + selcys[c] => ac[c] + selcyst[c]
- id: ACHMSSELCYSLh
name: O-Acetylhomoserine succinate-lyase (adding cysteine), chloroplast
genes: (maker_Scaffold_1860-snap-gene-0.39)
equation: achms[h] + selcys[h] => ac[h] + selcyst[h]
- id: ACKrh
name: acetate kinase, chloroplast
genes: (maker_Scaffold_1030-augustus-gene-0.12)
equation: ac[h] + atp[h] <=> actp[h] + adp[h]
- id: ACKrm
name: acetate kinase, mitochondrial
genes: (maker_Scaffold_1030-augustus-gene-0.12)
equation: ac[m] + atp[m] <=> actp[m] + adp[m]
- id: ACOA100OR
name: Decanoyl-CoA:(acceptor) 2,3-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: dcacoa[x] + fad[x] => dc2coa[x] + fadh2[x]
- id: ACOA120OR
name: Lauroyl-CoA:(acceptor) 2,3-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: ddcacoa[x] + fad[x] => dd2coa[x] + fadh2[x]
- id: ACOA140OR
name: Tetradecanoyl-CoA:(acceptor) 2,3-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: fad[x] + tdcoa[x] => fadh2[x] + td2coa[x]
- id: ACOA160OR
name: Palmitoyl-CoA:oxygen 2-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: fad[x] + pmtcoa[x] => fadh2[x] + hdd2coa[x]
- id: ACOA40OR
name: Butanoyl-CoA:oxygen 2-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: btcoa[x] + fad[x] => b2coa[x] + fadh2[x]
- id: ACOA60OR
name: Hexanoyl-CoA:(acceptor) 2,3-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: fad[x] + hxcoa[x] => fadh2[x] + hx2coa[x]
- id: ACOA80OR
name: Octanoyl-CoA:oxygen 2-oxidoreductase
genes: (genemark_Scaffold_97-abinit-gene-0.20) or (maker_Scaffold_58-augustus-gene-0.54)
or (maker_Scaffold_245-augustus-gene-0.27) or (genemark_Scaffold_1220-abinit-gene-0.13)
equation: fad[x] + occoa[x] => fadh2[x] + oc2coa[x]
- id: ACOADAGAT16018111Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + pmtcoa[c] => coa[c] + tag16018111Z160[c]
- id: ACOADAGAT16018111Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + ocdccoa[c] => coa[c] + tag16018111Z180[c]
- id: ACOADAGAT16018111Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + ocdcecoa[c] => coa[c] + tag16018111Z18111Z[c]
- id: ACOADAGAT16018111Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + ocdce9coa[c] => coa[c] + tag16018111Z1819Z[c]
- id: ACOADAGAT16018111Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + pacoa[c] => coa[c] + tag16018111Z1835Z9Z12Z[c]
- id: ACOADAGAT16018111Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr16018111Z[c] + cacoa[c] => coa[c] + tag16018111Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT1601819Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + pmtcoa[c] => coa[c] + tag1601819Z160[c]
- id: ACOADAGAT1601819Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + ocdccoa[c] => coa[c] + tag1601819Z180[c]
- id: ACOADAGAT1601819Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + ocdcecoa[c] => coa[c] + tag1601819Z18111Z[c]
- id: ACOADAGAT1601819Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + ocdce9coa[c] => coa[c] + tag1601819Z1819Z[c]
- id: ACOADAGAT1601819Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + pacoa[c] => coa[c] + tag1601819Z1835Z9Z12Z[c]
- id: ACOADAGAT1601819Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1601819Z[c] + cacoa[c] => coa[c] + tag1601819Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT1801819Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + pmtcoa[c] => coa[c] + tag1801819Z160[c]
- id: ACOADAGAT1801819Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + ocdccoa[c] => coa[c] + tag1801819Z180[c]
- id: ACOADAGAT1801819Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + ocdcecoa[c] => coa[c] + tag1801819Z18111Z[c]
- id: ACOADAGAT1801819Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + ocdce9coa[c] => coa[c] + tag1801819Z1819Z[c]
- id: ACOADAGAT1801819Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + pacoa[c] => coa[c] + tag1801819Z1835Z9Z12Z[c]
- id: ACOADAGAT1801819Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1801819Z[c] + cacoa[c] => coa[c] + tag1801819Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT18111Z18111Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + pmtcoa[c] => coa[c] + tag18111Z18111Z160[c]
- id: ACOADAGAT18111Z18111Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + ocdccoa[c] => coa[c] + tag18111Z18111Z180[c]
- id: ACOADAGAT18111Z18111Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + ocdcecoa[c] => coa[c] + tag18111Z18111Z18111Z[c]
- id: ACOADAGAT18111Z18111Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + ocdce9coa[c] => coa[c] + tag18111Z18111Z1819Z[c]
- id: ACOADAGAT18111Z18111Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + pacoa[c] => coa[c] + tag18111Z18111Z1835Z9Z12Z[c]
- id: ACOADAGAT18111Z18111Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z18111Z[c] + cacoa[c] => coa[c] + tag18111Z18111Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT18111Z1819Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + pmtcoa[c] => coa[c] + tag18111Z1819Z160[c]
- id: ACOADAGAT18111Z1819Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + ocdccoa[c] => coa[c] + tag18111Z1819Z180[c]
- id: ACOADAGAT18111Z1819Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + ocdcecoa[c] => coa[c] + tag18111Z1819Z18111Z[c]
- id: ACOADAGAT18111Z1819Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + ocdce9coa[c] => coa[c] + tag18111Z1819Z1819Z[c]
- id: ACOADAGAT18111Z1819Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + pacoa[c] => coa[c] + tag18111Z1819Z1835Z9Z12Z[c]
- id: ACOADAGAT18111Z1819Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr18111Z1819Z[c] + cacoa[c] => coa[c] + tag18111Z1819Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT1819Z18111Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + pmtcoa[c] => coa[c] + tag1819Z18111Z160[c]
- id: ACOADAGAT1819Z18111Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + ocdccoa[c] => coa[c] + tag1819Z18111Z180[c]
- id: ACOADAGAT1819Z18111Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + ocdcecoa[c] => coa[c] + tag1819Z18111Z18111Z[c]
- id: ACOADAGAT1819Z18111Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + ocdce9coa[c] => coa[c] + tag1819Z18111Z1819Z[c]
- id: ACOADAGAT1819Z18111Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + pacoa[c] => coa[c] + tag1819Z18111Z1835Z9Z12Z[c]
- id: ACOADAGAT1819Z18111Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z18111Z[c] + cacoa[c] => coa[c] + tag1819Z18111Z1845Z9Z12Z15Z[c]
- id: ACOADAGAT1819Z1819Z160
name: 'acyl-CoA: diacylglycerol acyltransferase (16:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + pmtcoa[c] => coa[c] + tag1819Z1819Z160[c]
- id: ACOADAGAT1819Z1819Z180
name: 'acyl-CoA: diacylglycerol acyltransferase (18:0)'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + ocdccoa[c] => coa[c] + tag1819Z1819Z180[c]
- id: ACOADAGAT1819Z1819Z18111Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(11Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + ocdcecoa[c] => coa[c] + tag1819Z1819Z18111Z[c]
- id: ACOADAGAT1819Z1819Z1819Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:1(9Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + ocdce9coa[c] => coa[c] + tag1819Z1819Z1819Z[c]
- id: ACOADAGAT1819Z1819Z1835Z9Z12Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:3(5Z,9Z,12Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + pacoa[c] => coa[c] + tag1819Z1819Z1835Z9Z12Z[c]
- id: ACOADAGAT1819Z1819Z1845Z9Z12Z15Z
name: 'acyl-CoA: diacylglycerol acyltransferase (18:4(5Z,9Z,12Z,15Z))'
genes: (genemark_Scaffold_211-abinit-gene-0.14)
equation: 12dgr1819Z1819Z[c] + cacoa[c] => coa[c] + tag1819Z1819Z1845Z9Z12Z15Z[c]
- id: ACOAR2m
name: trans-2-enoyl-CoA reductase (NADPH) (C6:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: h[m] + hx2coa[m] + nadph[m] => hxcoa[m] + nadp[m]
- id: ACOAR3m
name: trans-2-enoyl-CoA reductase (NADPH) (C8:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: h[m] + nadph[m] + oc2coa[m] => nadp[m] + occoa[m]
- id: ACOAR4m
name: trans-2-enoyl-CoA reductase (NADPH) (C10:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: dc2coa[m] + h[m] + nadph[m] => dcacoa[m] + nadp[m]
- id: ACOAR5m
name: trans-2-enoyl-CoA reductase (NADPH) (C12:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: dd2coa[m] + h[m] + nadph[m] => ddcacoa[m] + nadp[m]
- id: ACOAR6m
name: trans-2-enoyl-CoA reductase (NADPH) (C14:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: h[m] + nadph[m] + td2coa[m] => nadp[m] + tdcoa[m]
- id: ACOAR7m
name: trans-2-enoyl-CoA reductase (NADPH) (C16:0)
genes: (maker_Scaffold_208-augustus-gene-0.138)
equation: h[m] + hdd2coa[m] + nadph[m] => nadp[m] + pmtcoa[m]
- id: ACOATA
name: beta-ketoacyl-acyl-carrier-protein synthase III
genes: (maker_Scaffold_89-snap-gene-1.302)
equation: accoa[h] + ACP[h] => acACP[h] + coa[h]
- id: ACONT
name: aconitate hydratase
genes: (genemark_Scaffold_2059-abinit-gene-0.4) or (augustus_masked_Scaffold_2192-abinit-gene-0.4)
equation: cit[c] <=> icit[c]
- id: ACONTm
name: Aconitate hydratase, mitochondrial
genes: (genemark_Scaffold_2059-abinit-gene-0.4) or (augustus_masked_Scaffold_2192-abinit-gene-0.4)
equation: cit[m] <=> icit[m]
- id: ACONTx
name: Aconitate hydratase, glyoxysome
genes: (genemark_Scaffold_2059-abinit-gene-0.4) or (augustus_masked_Scaffold_2192-abinit-gene-0.4)
equation: cit[x] <=> icit[x]
- id: ACP1619ZD9DS
name: acyl-[acyl-carrier-protein] delta9-desaturase ((9Z)-n-C16:1)
genes: (maker_Scaffold_1751-augustus-gene-0.11) or (maker_Scaffold_1276-augustus-gene-0.38)
equation: (2) fdxrd[h] + (2) h[h] + o2[h] + palmACP[h] => (2) fdxox[h] + (2) h2o[h]
+ hdeACP[h]
- id: ACP1819ZD9DS
name: stearoyl-[acyl-carrier-protein] delta9-desaturase ((9Z)-n-C18:1)
genes: (maker_Scaffold_1751-augustus-gene-0.11) or (maker_Scaffold_1276-augustus-gene-0.38)
equation: (2) fdxrd[h] + (2) h[h] + o2[h] + ocdcaACP[h] => (2) fdxox[h] + (2) h2o[h]
+ octe9ACP[h]
- id: ACPCS
name: 1-aminocyclopropane-1-carboxylate synthase
genes: (genemark_Scaffold_54-abinit-gene-0.52)
equation: amet[c] => 1acpc[c] + 5mta[c] + h[c]
- id: ACPT16018111Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (16:0/18:1(11Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr16018111Z[c] + amet[c] => 5mta[c] + dghs16018111Z[c] + h[c]
- id: ACPT1601819Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (16:0/18:1(9Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr1601819Z[c] + amet[c] => 5mta[c] + dghs1601819Z[c] + h[c]
- id: ACPT18111Z18111Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (18:1(11Z)/18:1(11Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr18111Z18111Z[c] + amet[c] => 5mta[c] + dghs18111Z18111Z[c] + h[c]
- id: ACPT18111Z1819Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (18:1(11Z)/18:1(9Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr18111Z1819Z[c] + amet[c] => 5mta[c] + dghs18111Z1819Z[c] + h[c]
- id: ACPT1819Z18111Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (18:1(9Z)/18:1(11Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr1819Z18111Z[c] + amet[c] => 5mta[c] + dghs1819Z18111Z[c] + h[c]
- id: ACPT1819Z1819Z
name: betaine lipid synthase (3-amino-3-carboxypropyltransferase) (18:1(9Z)/18:1(9Z))
genes: (augustus_masked_Scaffold_79-abinit-gene-0.2)
equation: 12dgr1819Z1819Z[c] + amet[c] => 5mta[c] + dghs1819Z1819Z[c] + h[c]
- id: ACRS
name: acireductone synthase
genes: (maker_Scaffold_127-snap-gene-0.84)
equation: dkmpp[c] => 2h3kmtp[c] + h[c]
- id: ACRSP
name: acireductone synthase, phosphate forming
genes: (maker_Scaffold_127-snap-gene-0.84)
equation: 2h3kmtp[c] + h2o[c] => 12dmpo[c] + pi[c]
- id: ACS
name: acetyl-CoA synthetase
genes: (maker_Scaffold_119-augustus-gene-0.91)
equation: ac[c] + atp[c] + coa[c] => accoa[c] + amp[c] + ppi_c[c]
- id: ACSERL
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), cytosol
genes: (maker_Scaffold_732-augustus-gene-0.46) or (augustus_masked_Scaffold_13-abinit-gene-0.17)
or (maker_Scaffold_1404-augustus-gene-0.24) or (maker_Scaffold_338-augustus-gene-0.67)
or (maker_Scaffold_86-augustus-gene-0.117)
equation: acser[c] + seln[c] <=> ac[c] + (2) h[c] + selcys[c]
- id: ACSERLh
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), chloroplast
genes: (augustus_masked_Scaffold_13-abinit-gene-0.17) or (maker_Scaffold_1404-augustus-gene-0.24)
or (maker_Scaffold_338-augustus-gene-0.67) or (maker_Scaffold_86-augustus-gene-0.117)
equation: acser[h] + seln[h] <=> ac[h] + (2) h[h] + selcys[h]
- id: ACSERLm
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), mitochondria
genes: (augustus_masked_Scaffold_13-abinit-gene-0.17) or (maker_Scaffold_1404-augustus-gene-0.24)
or (maker_Scaffold_338-augustus-gene-0.67) or (maker_Scaffold_86-augustus-gene-0.117)
equation: acser[m] + seln[m] <=> ac[m] + (2) h[m] + selcys[m]
- id: ACSERSULL
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), cytosol
genes: (maker_Scaffold_732-augustus-gene-0.46) or (augustus_masked_Scaffold_13-abinit-gene-0.17)
or (maker_Scaffold_1404-augustus-gene-0.24) or (maker_Scaffold_338-augustus-gene-0.67)
or (maker_Scaffold_86-augustus-gene-0.117) or (maker_Scaffold_1860-snap-gene-0.39)
equation: acser[c] + tsul[c] => ac[c] + h[c] + scys-L[c]
- id: ACSERSULLh
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), chloroplast
genes: (augustus_masked_Scaffold_13-abinit-gene-0.17) or (maker_Scaffold_1404-augustus-gene-0.24)
or (maker_Scaffold_338-augustus-gene-0.67) or (maker_Scaffold_86-augustus-gene-0.117)
or (maker_Scaffold_1860-snap-gene-0.39)
equation: acser[h] + tsul[h] => ac[h] + h[h] + scys-L[h]
- id: ACSERSULLm
name: O3-Acetyl-L-serine acetate-lyase (adding hydrogen sulfide), mitochondria
genes: (augustus_masked_Scaffold_13-abinit-gene-0.17) or (maker_Scaffold_1404-augustus-gene-0.24)
or (maker_Scaffold_338-augustus-gene-0.67) or (maker_Scaffold_86-augustus-gene-0.117)
equation: acser[m] + tsul[m] => ac[m] + h[m] + scys-L[m]
- id: ACSERthi
name: efflux pump for O-acetylserine, chloroplast
genes: (maker_Scaffold_1412-snap-gene-0.71)
equation: acser[h] => acser[c]
- id: ACSERtmi
name: efflux pump for O-acetylserine, mitochondria
genes: (maker_Scaffold_1412-snap-gene-0.71)
equation: acser[m] => acser[c]
- id: ACt
name: acetate transport in via proton symport
equation: ac[e] <=> ac[c]
- id: ACth
name: acetate transport, chloroplast
equation: ac[c] <=> ac[h]
- id: ACtm
name: acetate transport, mitochondrial
equation: ac[c] <=> ac[m]
- id: ADCL
name: 4-amino-4-deoxychorismate pyruvate-lyase
genes: (augustus_masked_Scaffold_1048-abinit-gene-0.1)
equation: 4adcho[c] => 4abz[c] + h[c] + pyr[c]
- id: ADCPT
name: ATP:dephospho-CoA 3'-phosphotransferase
genes: (genemark_Scaffold_1163-abinit-gene-0.18)
equation: atp[c] + dpcoa[c] => adp[c] + coa[c] + h[c]
- id: ADCS
name: chorismate:L-glutamine aminotransferase
genes: (genemark_Scaffold_325-abinit-gene-0.38)
equation: chor[c] + gln-L[c] => 4adcho[c] + glu-L[c]
- id: ADEC
name: adenylate cyclase
equation: atp[c] => camp[c] + ppi_c[c]
- id: ADEDA
name: adenosine deaminase
genes: (maker_Scaffold_1254-snap-gene-0.51)
equation: dad-2[c] + h[c] + h2o[c] => din[c] + nh4[c]
- id: ADEt
name: adenine transport via diffusion
equation: ade[e] <=> ade[c]
- id: ADNDA
name: adenosine deaminase
genes: (maker_Scaffold_1254-snap-gene-0.51)
equation: adn[c] + h[c] + h2o[c] => ins[c] + nh4[c]
- id: ADNK
name: adenosine kinase
genes: (maker_Scaffold_85-augustus-gene-0.54)
equation: adn[c] + atp[c] => adp[c] + amp[c] + h[c]
- id: ADNKm
name: adenosine kinase, mitochondria
genes: (maker_Scaffold_85-augustus-gene-0.54)
equation: adn[m] + atp[m] => adp[m] + amp[m] + h[m]
- id: ADNtm
name: Equilibrative nucleoside transporter, mitochondrial
genes: (maker_Scaffold_995-augustus-gene-0.92)
equation: adn[c] <=> adn[m]