Systems Plant Biology
Multi-omics integration, genome-scale metabolic modelling, and network-theoretic analysis of plant metabolism — from GC-MS metabolite profiling and RNA-seq transcriptomics to machine learning-guided flux prediction.
Multi-Omics Integration in Plant Systems Biology
Omics Technologies
Metabolomics
GC-MS (Gas Chromatography-MS)
After derivatisation (TMS/TBDMS), volatile and semi-volatile metabolites (primary metabolites: amino acids, sugars, organic acids) separated by GC and fragmented by electron ionisation. Library matching (NIST, MassBank). ~200-500 metabolites per run.
LC-MS (Liquid Chromatography-MS)
Reversed-phase or HILIC separation; soft ionisation (ESI, APCI). Untargeted profiling of secondary metabolites (phenolics, terpenoids, alkaloids). HRMS (Q-TOF, Orbitrap) enables molecular formula determination.
NMR metabolomics
1H-NMR: quantitative, non-destructive; fingerprinting of complex mixtures. No derivatisation required. Lower sensitivity than MS but excellent for primary metabolites in crude extracts.
Transcriptomics & Proteomics
RNA-seq
Total or polyA-selected RNA fragmented, reverse-transcribed, and sequenced (Illumina/Nanopore). Alignment to genome (HISAT2, STAR) or de novo assembly (Trinity). DESeq2/edgeR for differential expression. Single-cell RNA-seq (10x Genomics) resolves cell-type-specific expression.
Label-free quantitative proteomics
Tryptic digests of cell extracts separated by nanoLC; MS2 fragmentation (DDA or DIA/SWATH) gives peptide identity and intensity. MaxQuant, Perseus for quantification. iBAQ normalisation for protein abundance.
13C-MFA (metabolic flux analysis)
Isotopically labelled substrates (1-13C-glucose, U-13C-glucose) fed to plants; isotopomer distributions measured by GC-MS or NMR. EMU (elementary metabolite unit) framework models labelling patterns. Gold standard for in vivo flux measurement.
Metabolic Network Analysis
Graph Theory Metrics
Degree centrality
\( C_D(v) = \frac{k_v}{n-1} \)
Fraction of neighbours of v. Hub metabolites (ATP, CoA, NAD) have high degree.
Betweenness centrality
\( C_B(v) = \sum_{s \ne v \ne t} \frac{\sigma_{st}(v)}{\sigma_{st}} \)
Fraction of shortest paths through v. Identifies metabolic chokepoints.
Closeness centrality
\( C_C(v) = \frac{n-1}{\sum_u d(v,u)} \)
Inverse mean distance to all other nodes. Fast-signalling metabolites.
Network diameter
\( D = \max_{u,v} d(u,v) \)
Longest shortest path in the network; measures overall connectivity.
Hub Metabolites in Plant Networks
Metabolic networks exhibit scale-free topology: a few hub metabolites participate in many reactions while most connect to only a few. In plant networks, universal hubs include:
Machine Learning for Metabolic Prediction
ML approaches complement mechanistic models:
- Random forests / XGBoost: predict metabolite levels from transcriptomic data
- Graph neural networks (GNNs): predict enzyme kinetic parameters from metabolic network structure
- LSTM / transformer models: time-series metabolomics under stress
- Variational autoencoders: latent representation of multi-omics data
- Active learning: guide 13C-MFA experiments for maximum information gain
Python: Metabolic Network Graph & Centrality Analysis
Build a 12-node plant central metabolism network (Calvin cycle, glycolysis, TCA), compute degree, betweenness, and closeness centrality from scratch, identify hub metabolites, and visualise the adjacency matrix.
Click Run to execute the Python code
Code will be executed with Python 3 on the server
Course Complete
You have covered all 21 chapters of Plant Biochemistry — from the quantum mechanics of light harvesting through to CRISPR-guided metabolic engineering and systems-level network analysis. The molecular logic underlying plant life is now at your fingertips.