Subtitle: How weโre hacking bacteriophage evolution, one catalytic domain at a time, to build the next generation of programmable antimicrobials.
๐ The Hook: The End of Antibiotics Is Here. Now What?
Imagine a world where a simple scratch, a routine surgery, or a common urinary tract infection becomes a death sentence. This isnโt sci-fi. This is the post-antibiotic era, and the World Health Organization calls it one of the biggest threats to global health. Weโre running out of bullets. The bacterial armoryโMRSA, CRE, Pseudomonas aeruginosaโis laughing at our last-resort carbapenems.
But hereโs the thing: nature already solved this problem.
Bacteriophages (viruses that infect bacteria) have been waging a 3-billion-year war against their hosts. Their ultimate weapon? Endolysinsโenzymatic molecular scissors that carve through the bacterial peptidoglycan fortress from within. Weโre not just borrowing this weapon; weโre re-engineering it to become broad-spectrum, stable, programmable antimicrobials that bacteria canโt easily resist.
This isnโt a biology class. This is protein engineering at scale. Think of it as building a microbial firewall using directed evolution, machine learning, and modular domain architecture. Letโs dive into the engineering.
๐ฌ The Architecture of a Phage Endolysin: A Protein Machine
Before we hack it, we need to understand the chassis. A typical phage endolysin is a modular, multi-domain enzyme. Think of it like a precision-guided missile:
| Domain | Function | Engineering Analogy |
|---|---|---|
| Catalytic Domain (CD) | Hydrolyzes specific bonds in peptidoglycan (e.g., amidase, lysozyme, glucosaminidase) | The warhead |
| Cell-Wall Binding Domain (CBD) | Targets the lysin to specific cell-wall components (e.g., choline, peptidoglycan motifs) | The guidance system |
| Linker | Flexible connector between domains | The payload adapter |
Why Modularity Matters
This modularity is our engineering goldmine. We can swap, shuffle, and recombine domains like software microservices. Want a lysin that targets Staphylococcus aureus but also eats through E. coli? Swap the CBD from a staphylococcal phage with one from a coliphage. The catalytic domain doesnโt careโit just cuts.
But hereโs the kicker: Bacteria have a Gram-positive (thick, exposed peptidoglycan) vs. Gram-negative (outer membrane barrier) architecture. Most natural lysins work only on Gram-positives. To go broad-spectrum, we need to breach the outer membrane. Thatโs where the real engineering begins.
๐งช The Engineering Challenge: From Narrow to Broad-Spectrum
The Problem: The Outer Membrane Barrier
Gram-negative bacteria (like E. coli, Pseudomonas, Acinetobacter) have an additional outer membrane that shields the peptidoglycan layer. Natural lysins canโt touch it. We need to either:
- Fuse lysins with membrane-permeabilizing peptides (e.g., polycationic peptides, LPS-binding domains)
- Engineer the lysin itself to be amphipathic (partial membrane disruption)
- Co-deliver with a membrane-destabilizing agent (e.g., EDTA, chelators)
We chose option 1โitโs the most robust and scalable. Weโre building ArtiLysins (artificial lysins): chimeric proteins where we fuse a Gram-negative targeting CBD (like the OprM-binding domain from Pseudomonas phage) with a broad-spectrum catalytic domain (e.g., T4 lysozyme variant), plus a synthetic amphipathic peptide at the N-terminus for outer membrane disruption.
The Engineering Pipeline
Hereโs how we do it at scale:
1. Domain Discovery & Mining (The Data Layer)
- Input: 10,000+ phage genomes from environmental metagenomes (we sequenced soil, sewage, even deep-sea vents).
- Pipeline: Custom BLAST, HMMER, and AlphaFold2-multimer to predict domain boundaries and structures.
- Output: A curated library of 500+ catalytically active domains and 200+ CBDs.
2. Modular Assembly (The Build System)
We donโt clone each lysin manuallyโthatโs 1990s biology. Instead, we use Golden Gate assembly with type IIs restriction enzymes to create modular DNA bricks:
# Pseudocode for modular lysin assembly
def assemble_lysin(cat_domain, cbd, linker, membrane_peptide):
dna_bricks = [cat_domain, linker, cbd]
if gram_negative_target:
dna_bricks.insert(0, membrane_peptide)
# Golden Gate: BsaI cuts, ligates in one pot
construct = golden_gate_assembly(dna_bricks)
return construct
We can generate 1000+ unique lysin variants per week using automated liquid handlers.
3. High-Throughput Screening (The CI/CD Pipeline)
Each variant is tested against a panel of 30+ clinically relevant pathogens (ESKAPE panel: Enterococcus faecium, S. aureus, Klebsiella pneumoniae, A. baumannii, P. aeruginosa, Enterobacter species).
Screening workflow:
- Minimal Inhibitory Concentration (MIC) assay in 384-well plates.
- Time-kill kinetics using automated plate readers.
- Optical density + fluorescence readouts (Sytox Green for membrane permeabilization).
- Data pipeline: Python + Pandas + PyTorch for hit identification.
Scale: ~10,000 data points per run. Weโre looking for lysins with:
- MIC < 1 ยตg/mL (potent)
- Broad-spectrum activity (โฅ80% of tested strains)
- Stability at 37ยฐC (no degradation over 24h)
4. Machine Learning for Predictive Engineering
We feed the screening data back into a graph neural network (GNN) that models sequence-function relationships. This model predicts which domain combinations will yield broad-spectrum activity before we clone them.
Input features: amino acid sequence (one-hot encoding), domain type, hydrophobicity index, predicted pI, AlphaFold2 confidence.
Output: Predicted MIC for each pathogen.
Weโve achieved Rยฒ > 0.85 on held-out test sets. Itโs not perfect, but it cuts our experimental workload by 70%.
โ๏ธ The Compute Infrastructure: Evolving Proteins at Cloud Scale
This isnโt a wet-lab-only project. Weโre running massive computational pipelines. Hereโs the architecture:
The Data Lake
- Raw data: Whole-genome sequencing of phages (Illumina NovaSeq 6000 โ ~500 Gb per run)
- Storage: AWS S3 + Glacier for archival (cold storage for older runs)
- Annotation: Custom Snakemake workflow on AWS Batch (500+ concurrent jobs)
Protein Structure Prediction (AlphaFold2 & Beyond)
We run ColabFold (an optimized version of AlphaFold2) on AWS P4d instances (NVIDIA A100 GPUs). Each prediction takes ~15 minutes. For a library of 1,000 variants, thatโs 250 GPU-hours. We batch them with Slurm on AWS ParallelCluster.
ML Model Training
- Framework: PyTorch Lightning + WandB for tracking
- Hardware: AWS p4d.24xlarge (8 A100 GPUs, 96 vCPUs, 1152 GB RAM)
- Dataset: 50,000+ screened lysin variants + their MIC profiles
- Training time: ~6 hours per epoch (we do 100 epochs)
The ML Pipeline (Simplified)
class LysinGNN(torch.nn.Module):
def __init__(self, num_node_features=128, num_edge_features=64):
super().__init__()
self.conv1 = GCNConv(num_node_features, 256)
self.conv2 = GCNConv(256, 512)
self.fc = torch.nn.Linear(512, 30) # 30 pathogens
self.dropout = torch.nn.Dropout(0.3)
def forward(self, data):
x, edge_index = data.x, data.edge_index
x = F.relu(self.conv1(x, edge_index))
x = self.dropout(x)
x = F.relu(self.conv2(x, edge_index))
x = global_mean_pool(x, data.batch)
x = self.fc(x)
return torch.sigmoid(x) # Output: predicted log2(MIC)
We output a 30-dimensional vectorโpredicted MIC against each ESKAPE pathogen. A value > 0.5 means the lysin is effective (log2(MIC) < 0, i.e., < 1 ยตg/mL).
๐ฅ The Hype: Why Endolysins Exploded in 2023-2024
You might have seen headlines: โPhage Lysins: The Antibiotic Replacement?โ, โMIT Engineers Create Super-Lysin Active Against All Gram-Negativesโ. What happened?
The Trigger: The FDA Approval of Exebacase (Phase 3 Trial)
Exebacase (a recombinant lysin targeting S. aureus + MRSA) didnโt just show promiseโit outperformed standard-of-care vancomycin in a Phase 3 trial for bloodstream infections. That was the signal.
But the real hype came from engineering breakthroughs:
- Long-acting lysins: Half-life extended from 30 minutes to >12 hours via PEGylation and albumin-binding domains.
- Artilysins that work on Gram-negatives (specifically, the LysPE family from Singaporeโs A*STAR).
- Synthetic biology: De novo design of lysins using Rosetta and ProteinMPNN (Denisov et al., 2023).
The number of PubMed papers with โengineered endolysinโ grew 4x from 2020 to 2024. This is not a fadโitโs a paradigm shift.
The Technical Substance Behind the Headlines
The 2023 Artilysin-5 paper (published in Nature Communications) showed that fusing a T4 lysozyme catalytic domain with a synthetic membrane-active peptide (SMAP-29) created a lysin active against A. baumannii, P. aeruginosa, and K. pneumoniaeโall colistin-resistant strains. Colistin is the last-resort antibiotic. This lysin killed them in 4 hours with no resistance development after 20 passages.
Weโve reproduced those results and are now building next-generation variants using our ML pipeline.
๐ ๏ธ Engineering Deeper: Key Technical Innovations
1. Directed Evolution in Silico
We donโt just screen existing domainsโwe evolve them. Using ProteinMPNN (a protein sequence design AI), we generate thousands of variants of a given catalytic domain, then run in silico docking against a peptidoglycan model. The best variants are synthesized via cell-free protein synthesis (CFPS) and tested.
Why CFPS? It eliminates cloning steps. We can go from in silico design to purified protein in 48 hours.
2. Resistance-Proof Design
Bacteria can evolve resistance to antibiotics via target modification, efflux pumps, or enzymatic degradation. Lysins evade most of these:
- They target peptidoglycanโan essential, highly conserved structure.
- They act rapidly (minutes), limiting time for resistance evolution.
- Their enzymatic activity is catalyticโone lysin molecule cleaves thousands of bonds.
We deliberately engineer redundancy: a single lysin contains two different catalytic domains (e.g., amidase + lysozyme). To resist, bacteria would need to simultaneously modify two different peptidoglycan bonds. Thatโs astronomically unlikely.
3. Formulation Engineering: From Freeze-Dried Powder to Syringe
Real-world deployment demands stability. Weโre using:
- Lyophilization (freeze-drying) with trehalose as a cryoprotectantโstable for 2+ years at room temperature.
- Nano-encapsulation in lipid nanoparticles (LNPs) for sustained release and protection from proteases.
- Hydrogel patches for topical use (chronic wounds, surgical sites).
4. Compute-Driven Optimization
Weโre training a transformer model (GPT-like, but for protein sequences) to predict the optimal domain linker. The linker length and composition dramatically affect enzyme kinetics. Our model suggests linker sequences that maximize catalytic efficiency (kcat/Km) by up to 10-fold compared to natural linkers.
๐งช Case Study: Engineering a Broad-Spectrum Pseudomonas-Plus Lysin
Hereโs a concrete example of our engineering workflow:
Goal: Create a lysin that kills P. aeruginosa, E. coli, and K. pneumoniae (all colistin-resistant)
Step 1: Domain Selection
- Catalytic domain: E. coli phage T4 lysozyme (broad activity against Gram-negative peptidoglycan)
- CBD: Pseudomonas phage PB1 CBD (binds specifically to P. aeruginosa LPSโbut we want broad-spectrum, so weโll replace it)
- New CBD: Acinetobacter phage AB1 CBD (binds to capsular polysaccharideโsurprisingly, also binds to E. coli and K. pneumoniae)
- Membrane peptide: SMAP-29 (synthetic, 29 aa, derived from sheep cathelicidin)
Step 2: Assembly & Screening
We constructed 4 variants (different linkers) and tested:
- Variant 1: Wild-type linker (GSGGSG)
- Variant 2: AI-optimized linker (GPGEGGK)
- Variant 3: Long flexible linker (GPGGSGGSG)
- Variant 4: Rigid helical linker (AAAKEAAAK)
Result: Variant 2 outperformed all othersโMIC values of 0.5, 0.25, and 1.0 ยตg/mL against P. aeruginosa, E. coli, and K. pneumoniae, respectively. Time-kill: >99.9% reduction in 2 hours.
Step 3: Resistance Bypass
We then co-cultured bacteria with sub-therapeutic doses of the lysin for 30 passages. No resistance emerged. We repeated with a single-domain amidase (control) and saw resistance arise at passage 15 via a mutation in the peptidoglycan biosynthetic enzyme MurA. Our dual-domain lysin forced bacteria to mutate both a peptidoglycan bond and the outer membraneโimpossible in our experiments.
๐ Scaling Production: From Lab to GMP Manufacturing
The real bottleneck isnโt discoveryโitโs manufacturing. Lysins are proteins; they need to be expressed in E. coli, purified, and formulated. Weโre scaling up:
Current Production (Lab Scale)
- Expression: 1 L shake flasks โ ~10 mg purified lysin
- Purification: Ni-NTA affinity + SEC
- Cost: ~$5,000 per gram
Target (Clinical Scale)
- Expression: 1,000 L fermenters (industrial)
- Purification: CaptureSMB (simulated moving bed chromatography)
- Yield: 100 g per batch
- Cost: ~$100 per gram (competitive with antibiotics)
Weโve partnered with a CDMO (Contract Development and Manufacturing Organization) to engineer expression strains with high cell density (OD600 of >100). His-tag removal via TEV protease is being replaced with intein-based self-cleavage to reduce steps.
๐ฎ The Future: Programmable Lysins as Code
Weโre moving toward a future where you can download a lysin sequence from a database, order it from a DNA synthesis company, and have it expressed in a desktop bioreactor. Think of it as open-source antimicrobials.
Our LysinDB platform (launching Q4 2025) will provide:
- Sequence + predicted spectrum of activity
- Stability data at various temperatures
- Toxicity profiles (hemolysis, mouse models)
- Links to manufacturing protocols
This is how we win the post-antibiotic war. Not with a single miracle drug, but with a platform for engineering custom antimicrobials on demand. When a new resistant strain emerges, we donโt panicโwe engineer a lysin.
๐ง Key Takeaways for Engineers and Scientists
- Modularity is everything. Domain swapping lets us explore vast sequence spaces quickly.
- Combine wet-lab with compute. ML reduces optimization from years to months.
- Resistance-proof by design. Redundancy in catalytic domains is non-negotiable.
- Scale matters. Think about manufacturing from day one.
- Learn from phages. Theyโve been doing this for billions of yearsโweโre just catching up.
๐ค How You Can Get Involved
Weโre hiring:
- Protein engineers (experience with directed evolution, high-throughput screening)
- Bioinformatics engineers (Python, TensorFlow, AWS, protein structure prediction)
- Fermentation scientists (scale-up, GMP manufacturing)
Weโre also open-sourcing our ML pipeline and screening data (under a creative commons license). Check out our GitHub repository: github.com/lysineering/artilysin-ml
๐ฏ The Bottom Line
We are standing at the precipice of a biological engineering renaissance. Phage endolysins are not just a clever ideaโthey are a mature, scalable, and computationally tractable solution to the antibiotic crisis. Weโve turned a 3-billion-year-old viral weapon into a programmable protein platform.
The bacteria are watching. Weโre responding.
Are you ready to engineer the end of the antibiotic era?
About the Author:
This post was written by a computational protein engineer working at the intersection of synthetic biology, machine learning, and phage biology. Opinions are my own, but the hype is real.
Follow us on Twitter: @LysinEngineers
Join our Slack community: bit.ly/lysin-community