Graph Neural Networks in Microbiology
One-Sentence Definition
Graph neural networks (GNNs) learn on nodes and edges — natural for molecules, protein contact graphs, assembly graphs, and microbial interaction/transmission networks.
Simple Explanation
When your data is a network (atoms bonded, contigs linked, patients connected), GNNs pass messages along those links instead of flattening everything into a spreadsheet.
Detailed Scientific Explanation
| Graph type | Nodes / edges | Micro task |
|---|---|---|
| Molecular graph | Atoms / bonds | Antibiotic activity, toxicity (AI for Antibiotic Discovery) |
| Protein graphs | Residues / contacts | Function, binding, stability |
| Assembly / DBG | Unitigs / overlaps | Strain resolution, plasmid links |
| Bipartite host–gene | Genomes ↔ genes | Plasmid Host Attribution with ML style problems |
| Contact / mobility | Patients/wards / transfers | Outbreak risk scoring (careful with privacy) |
How to use
- Define biologically meaningful edges (don’t invent dense noise graphs)
- Choose task: node label, graph label (molecule active?), link prediction
- Baselines: fingerprints + Tree Ensembles in Microbiology for molecules — GNN must beat them
- Wet-lab validate chemical hits; epi-validate network scores
Architectures you will see: GCN, GraphSAGE, GAT, MPNN; geometric networks for 3D conformers.
Mechanism
Iterative neighborhood aggregation updates node embeddings; readout pools them for graph-level prediction.
Clinical Importance
- Discovery and research-facing more than routine bench diagnostics today
Research Importance
- Combines with generative models for de novo antibiotic scaffolds (Generative Models in Microbiology)
Diagnostic Relevance
- Limited direct use; assembly-graph ML is still specialized bioinformatics
AMR Relevance
- Molecule GNNs for new agents; bipartite models for resistome→host inference in metagenomes
Related MOCs
Active Recall Questions
- Why are molecules naturally GNN problems?
- What baseline should a molecular GNN beat?
- Name one non-chemistry graph in microbiology.