A powerful codon optimization tool for phage display library generation and protein engineering.
Phagetrix helps researchers design optimal degenerate codon libraries for phage display, directed evolution, and synthetic biology applications. Maximize your library diversity while staying within experimental constraints.
- Key Features
- Use Cases
- The Library Diversity Problem
- Quick Start
- Installation
- Advanced Features
- Documentation & Support
- Citation
- Related Tools
- License
- Intelligent codon optimization - Automatically selects the best degenerate codons for your amino acid requirements
- Library statistics - Calculate theoretical diversity and material requirements
- Multi-vendor support - Compatible with IDT, Eurofins, and NEB degenerate codon sets
- Species-specific - Supports codon usage tables for multiple organisms
- Easy to use - Simple file format and command-line interface
- Python integration - Use as a library in your bioinformatics pipelines
- Phage display library design - Optimize antibody/peptide libraries
- Directed evolution - Design mutagenesis libraries for protein engineering
- Synthetic biology - Create diverse protein variants for screening
- Molecular biology research - Plan degenerate PCR experiments
When creating phage display libraries, you're limited by experimental constraints:
- 1 liter of phage solution ≈ 10¹² different sequences
- Random mutagenesis: 20⁹ ≈ 10¹² permutations (only ~9 variable positions)
- Smart degenerate codons: 6¹⁵ ≈ 10¹² permutations (~15 variable positions!)
Phagetrix maximizes your library diversity by intelligently selecting degenerate codons from manufacturers like IDT, Eurofins, and NEB, allowing you to target more positions with rational amino acid choices.
import phagetrix
# Optimize degenerate codons for your sequence
result = phagetrix.optimize_codons(
sequence="VLAYMVAQVQ",
variations={3: "AGVIL", 4: "YFW", 7: "AVIL"}
)
print("Optimized DNA sequence:", result["final_sequence"])
print("Efficiency per position:", result["efficiency"])Create a simple text file specifying your target sequence and desired variations:
VLAYMVAQVQ
A3AGVIL
Y4YFW
A7AVILRun Phagetrix:
phagetrix input.txt 1 2 3 4 5 6 7 8 9 10
V L A Y M V A Q V Q
GTT CTT VBA TDK ATG GTT VYA CAG GTT CAG degenerate codons
56 50 67 percentage on target
1V 1L 1V 1Y 1M 1V 1V 1Q 1V 1Q
1L 1W 1L
1I 1F 1I
1G -- 1A
1A 1L --
-- 1C 1T
2R 1* 1P
Final sequence: GTTCTTVBATDKATGGTTVYACAGGTTCAGOutput includes:
- Degenerate codons (VBA, TDK, etc.) optimized for your requirements
- Efficiency percentages showing on-target vs off-target products
- Amino acid breakdown for each position
- Ready-to-order sequence for DNA synthesis
pip install phagetrixgit clone https://github.com/retospect/phagetrix.git
cd phagetrix
poetry install
poetry run phagetrix --helpTry Phagetrix interactively in your browser with comprehensive examples!
Requirements: Python 3.10 or higher
import phagetrix
# Get available companies and species
companies = phagetrix.get_available_companies()
species = phagetrix.get_available_species()
# Parse existing Phagetrix files
seq, variations, config = phagetrix.parse_phagetrix_file("input.phagetrix")
# Calculate library statistics
stats = phagetrix.calculate_library_stats("ACDEF", {1: "AG", 3: "DEF"})
print(f"Library diversity: {stats['diversity']:,} variants")
# Compare different companies
for company in ["IDT", "Eurofins", "NEB"]:
result = phagetrix.optimize_codons("ACDEF", {1: "AG"}, company=company)
print(f"{company}: {result['final_sequence']}")# Process multiple sequences
sequences = [
("CDR1", "RASQSISSWLA", {4: "QE", 6: "ST"}),
("CDR2", "AASSLQS", {3: "ST", 5: "LI"}),
("CDR3", "QQSYSTPLT", {3: "ST", 7: "PT"})
]
for name, seq, vars in sequences:
result = phagetrix.optimize_codons(seq, vars)
print(f"{name}: {result['final_sequence']}")For complete examples, see Library Usage Guide and run:
python examples/library_examples.pyAdd position offsets for working with longer sequences:
# offset = 20
VLAYMVAQVQ
A23AGVIL # Position 23 in the full proteinChoose your preferred DNA synthesis company:
phagetrix --company IDT input.txt # Default
phagetrix --company Eurofins input.txt
phagetrix --company NEB input.txtOptimize for different organisms:
phagetrix --species e_coli input.txt # Default
phagetrix --species h_sapiens_9606 input.txt # Human
phagetrix --species s_cerevisiae_4932 input.txt # Yeast- Library Usage Guide - Complete Python library documentation
- Contributing Guidelines - Help improve Phagetrix
- Release Process - How to create releases
- GitHub Workflows - Automated CI/CD and release process
- Changelog - See what's new
- Examples - Code examples and tutorials
If you use Phagetrix in your research, please cite:
@software{phagetrix,
title = {Phagetrix: Codon optimization for phage display libraries},
author = {Stamm, Reto},
doi = {10.5281/zenodo.7676572},
url = {https://github.com/retospect/phagetrix}
}This package has been enhanced and maintained with assistance from Windsurf, an AI-powered development environment that helped implement modern development practices, comprehensive testing, type safety, security scanning, and automated CI/CD workflows.
This project is licensed under the GPL-3.0-or-later License - see the LICENSE file for details.