Part VII — Chapter 20

Metabolic Engineering

Rational redesign of plant metabolic pathways — from Golden Rice and herbicide-resistant crops to CRISPR-edited secondary metabolite biosynthesis — guided by metabolic flux analysis and genome-scale stoichiometric models.

Metabolic Engineering Workflow

1. IdentifyTargetNutritional / agronomicor pharmaceutical goal12. PathwayAnalysisIdentify enzymes,regulatory steps23. Genome-scaleModel (FBA)SĀ·v=0; predictflux redistribution34. GeneticModificationOverexpress, silence,or CRISPR-edit45. OmicsValidationMetabolomics, RNA-seq,flux measurement56. FieldTestingAgronomic performance,regulatory approval6Iterative optimisation cycle

Major Case Studies

Golden Rice — Beta-Carotene in Endosperm

Wild-type rice endosperm accumulates GGPP but lacks the downstream enzymes for carotenoid biosynthesis. Golden Rice 2 (2005) expresses two transgenes to restore the pathway: phytoene synthase (PSY) from maize (OsGGPPS provides GGPP substrate) and carotene desaturase (CrtI) from Erwinia bacteria (performs all four desaturations to lycopene in a single enzyme). Endogenous plant lycopene cyclase then converts lycopene to beta-carotene. Result: up to 37 μg/g dry weight beta-carotene, a 23-fold increase over GR1.

\( \text{GGPP} \xrightarrow{\text{PSY (maize)}} \text{phytoene} \xrightarrow{\text{CrtI (}E.\text{uredovora)}} \text{lycopene} \xrightarrow{\text{LCY-b (endogenous)}} \beta\text{-carotene} \)

Humanitarian approval in Philippines (2021). Field data shows 6,800-fold increase in endosperm carotenoids vs wild type. VAD (vitamin A deficiency) affects 190 million children globally.

Herbicide-Resistant EPSPS (Roundup Ready)

5-enolpyruvylshikimate-3-phosphate synthase (EPSPS) catalyses the penultimate step of the shikimate pathway, essential for aromatic amino acid (Phe, Tyr, Trp) synthesis. Glyphosate (Roundup) is a competitive inhibitor of EPSPS (vs PEP substrate). A single substitution Pro101Ser (CP4 EPSPS) from Agrobacterium sp. CP4 reduces glyphosate binding 10,000-fold while retaining catalytic activity. Expressed under the 35S or FMV promoter with a chloroplast-targeting signal peptide.

\( \text{shikimate-3-P} + \text{PEP} \xrightarrow{\text{EPSPS (Pro101Ser mutation)}} \text{EPSP} + \text{P}_i \quad [\text{glyphosate-resistant}] \)

Enhanced Oil Content (FAD2 Engineering)

Silencing FAD2 (delta-12 fatty acid desaturase) in soybean increases oleic acid (C18:1) from ~20% to >80% at the expense of polyunsaturated fatty acids. High-oleic oils have improved oxidative stability for frying. CRISPR-edited high-oleic soybeans (Calyxt, 2019) are the first food product from CRISPR editing to reach market.

CRISPR/Cas9 for Pathway Editing

Single guide RNA (sgRNA) directs Cas9 to the target locus for precise cleavage. Applications: knock-out of catabolism genes (e.g., lycopene β-cyclase to accumulate lycopene); base editing for herbicide resistance; prime editing for precise point mutations; CRISPRa/i for transcriptional modulation without sequence changes.

\( \text{sgRNA} + \text{Cas9} \rightarrow \text{DSB at PAM site} \rightarrow \text{NHEJ (KO) or HDR (knock-in)} \)

Metabolic Flux Balance Analysis (FBA)

FBA models a metabolic network as a stoichiometric matrix S (metabolites Ɨ reactions) and finds the flux vector v that satisfies the steady-state assumption while maximising a biological objective (e.g., biomass production):

FBA Mathematical Framework

\( \text{Maximise: } c^T \mathbf{v} \)

\( \text{Subject to: } \mathbf{S} \cdot \mathbf{v} = \mathbf{0} \)

\( v_{\min,i} \le v_i \le v_{\max,i} \)

The steady-state constraint SĀ·v = 0 enforces mass balance for every metabolite. Solved via linear programming (LP). The objective cT is typically the biomass reaction.

Genome-Scale Models (GEMs)

Plant GEMs include Arabidopsis thaliana AraGEM (~1,400 reactions), wheat, maize, tomato, and cyanobacteria models. They integrate gene-reaction associations (GPR rules) and compartment specificity. Used to:

  • Identify essential genes (lethal knockouts)
  • Predict metabolic engineering targets
  • Simulate phenotypes under nutrient limitation
  • Integrate omics data (GIMME, IMAT methods)

Python: Flux Balance Analysis (FBA) on a Toy Network

Build a 5-metabolite, 7-reaction stoichiometric network, assemble the matrix S, and solve FBA via linear programming to maximise biomass flux. Then explore the trade-off between byproduct secretion and biomass yield.

Python
script.py141 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server