Examples Gallery
Browse inspiring examples and copy-paste commands to get started quickly.
Basic Structures
Alpha Helix
The most common secondary structure in proteins.
Features: - 3.6 residues per turn - 5.4 Γ pitch - Hydrogen bonds between i and i+4 residues
Beta Sheet
Extended conformation with characteristic pleated structure.
Features: - Extended backbone (phi β -120Β°, psi β +120Β°) - 3.3 Γ between residues - Parallel or antiparallel arrangements
Random Coil
Disordered structure with diverse conformations.
Features: - Ramachandran angles sampled from allowed regions - No regular secondary structure - Useful for testing flexibility
Biologically-Inspired Structures
Leucine Zipper
Classic coiled-coil motif with hydrophobic interface.
Scientific Context: - Heptad repeat pattern (a-b-c-d-e-f-g) - Leucines at 'a' and 'd' positions form hydrophobic core - Found in transcription factors (e.g., GCN4, c-Fos, c-Jun)
Zinc Finger
DNA-binding motif coordinating ZnΒ²βΊ ion.
synth-pdb --sequence "CPHCGKSFSQKSDLVKHQRT" \
--structure "1-10:beta,11-20:alpha" \
--metal-ions auto \
--minimize \
--visualize
Scientific Context: - CysβHisβ coordination of ZnΒ²βΊ - Beta-hairpin + alpha-helix architecture - Found in transcription factors (e.g., TFIIIA, Sp1)
Collagen Triple Helix
Unique left-handed helix with Gly-X-Y repeats.
synth-pdb --sequence "GPPGPPGPPGPPGPPGPPGPP" \
--conformation polyproline \
--minimize \
--visualize
Scientific Context: - Gly-Pro-Pro repeat pattern - Left-handed helix (opposite of alpha helix) - Three chains intertwine to form triple helix
Silk Fibroin
Beta-sheet-rich structure with Ala-Gly repeats.
Scientific Context: - Alanine-glycine repeats - Antiparallel beta sheets - High tensile strength
Advanced Features
Cyclic Peptide
Head-to-tail cyclized structure.
Applications: - Drug design (improved stability) - Examples: Cyclosporine A, Oxytocin
Disulfide Bonds
Covalent cross-links between cysteine residues.
Features: - Automatic detection of Cys pairs within 2.0-2.2 Γ - Stabilizes protein structure - Common in extracellular proteins
Mixed Secondary Structures
Helix-turn-helix motif.
synth-pdb --sequence "ACDEFGHIKLMNPQRSTVWY" \
--structure "1-7:alpha,8-13:random,14-20:alpha" \
--minimize \
--visualize
Features: - Multiple secondary structure regions - Realistic protein architecture - Useful for testing fold recognition
D-Amino Acids
Mirror-image amino acids for peptide design.
Applications: - Protease resistance - Drug design - Retro-inverso peptides
NMR Data Generation
Chemical Shifts
Generate structure with predicted NMR chemical shifts.
Output: NEF file with ΒΉH, ΒΉΒ³C, ΒΉβ΅N chemical shifts
Relaxation Rates
Generate structure with NMR relaxation data.
Output: NEF file with Rβ, Rβ, NOE values
NOE Restraints
Generate distance restraints for structure calculation.
Output: NEF file with NOE distance restraints
Dataset Generation
Bulk Generation
Generate 1,000 diverse structures for ML training.
synth-pdb --mode dataset \
--num-samples 1000 \
--min-length 10 \
--max-length 50 \
--output ./training_data
Output Structure:
training_data/
βββ dataset_manifest.csv
βββ train/ (800 structures)
βββ test/ (200 structures)
Hard Decoys
Generate challenging negative samples.
synth-pdb --mode decoys \
--sequence ACDEFGHIKLMNPQRSTVWY \
--drift 5.0 \
--num-samples 100 \
--output ./decoys
Use Cases: - Training robust AI models - Testing structure validation tools - Benchmarking scoring functions
Next Steps
- Biologically-Inspired Examples - More detailed biological examples
- Visualization Examples - Advanced visualization techniques
- Advanced Features - Expert-level usage
- User Guides - Comprehensive guides for different users