skills/chemoinformatics/protac-degraders

stars:0
forks:0
watches:0
last updated:N/A

Version Compatibility

Reference examples tested with: PRosettaC (web service), DeepTernary 1.0+, AlphaFold3 (constraints-enabled), Boltz-1 / Boltz-2, RDKit 2024.09+, OpenMM 8.1+ (for ternary MD).

Before using code patterns, verify installed versions match. If versions differ:

  • Python: pip show <package> then help(module.function) to check signatures

If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying.

PROTAC and Bivalent Degrader Design

Design bifunctional molecules (PROTACs) that recruit an E3 ubiquitin ligase to a target protein, inducing target ubiquitination and proteasomal degradation. PROTACs differ from traditional drugs: a stable ternary complex (target + PROTAC + E3) is required, not just target binding. The PROTAC field exploded post-2020 with clinical successes (ARV-471 estrogen-receptor degrader, ARV-110 androgen-receptor degrader). Postdoc-grade PROTAC design balances target ligand binding, E3 ligand binding, linker geometry (length, rigidity, chemistry), cooperativity (positive = ternary stable; negative = hook effect), and cell permeability (PROTACs are 800-1500 Da, often Lipinski-violating).

For target ligand design, see chemoinformatics/virtual-screening and chemoinformatics/admet-prediction. For linker-only enumeration, see chemoinformatics/reaction-enumeration. For generative linker design, see chemoinformatics/generative-design.

E3 Ligase Choice

E3 ligaseLigand seriesBest atLimitations
VHLVL-269Surface-exposed targetsTissue-restricted expression
CRBN (cereblon)thalidomide, pomalidomideBroad tissue expressionOff-target neosubstrates (IKZF1, SALL4)
IAP (XIAP, cIAP1)SMAC mimetics (LCL161)Apoptotic / IAP targetsLimited target scope
MDM2nutlin / idasanutlinTP53 pathwayLimited target diversity
KEAP1DDB1-DCAF15-Keap1NRF2 pathwaySpecialized use
RNF114EN450Newer; under explorationLimited tooling

Decision: For first-generation PROTAC, CRBN (cereblon) is the most-developed. VHL is second-most-developed (more selective; tissue-restricted).

Linker Design Principles

PropertyRangeEffect
Linker length8-30 atomsCritical; geometry-dependent
Linker rigidityFlexible (PEG) vs rigid (piperazine)Higher rigidity reduces entropy penalty
Linker chemistryPEG, alkyl, piperazine, triazole, ether, amidePEG common; rigid for tighter binding
Click chemistry compatibilityTriazole compatibleEasy synthesis
MW rangePROTAC 800-1500 DaLipinski-violating but accepted
Polar atoms1-5 per linkerPermeability vs solubility balance
"
Critical: "Goldilocks linker length" is target-specific. Too short = ternary clash; too long = ternary entropy too high. Typically 12-20 atoms for surface-exposed targets.

Decision Tree by Scenario

GoalE3 / linkerTools
First-generation PROTAC, surface-exposed targetCRBN + PEG linker (10-15 atoms)PRosettaC for ternary prediction
Selective degrader (avoid off-target)VHL + rigid linkerPRosettaC + cellular validation
BTK / IAP family targetsIAP-based PROTACStandard pipelines
Novel target, no crypticMultiple E3 / linker variantsCombinatorial design + PRosettaC
Molecular glue (non-PROTAC)CRBN-basedDistinct mechanism

Ternary Complex Prediction Tools

ToolApproachStrengthFails when
PRosettaCRosetta-based protein-protein dockingIndustry standardSlow; needs crystal structures
DeepTernaryML-basedFast; no crystal requiredLimited accuracy for new targets
AlphaFold3 (with constraints)Foundation modelExcellent when co-crystal of binary availableAPI-restricted
Boltz-1 / Boltz-2Foundation modelOpen source; multimer supportLarger than AF3 in some benchmarks
MOECommercialGUI + scriptableLicense cost
# Conceptual PRosettaC workflow
# prc -target target.pdb -e3 crbn.pdb -linker-protac protac.smi \
#     -output ternary.pdb

Cooperativity (Alpha)

Cooperativity measures whether the PROTAC binds target+E3 more tightly than the sum of binary bindings:

alpha = Kd(binary) / Kd(ternary) * 1
alphaInterpretationAction
> 10Strong cooperativityExcellent candidate
1-10ModerateIterative optimization
< 1Negative (anticooperative)Re-design

Cooperativity > 5 is desirable for cellular activity. Negative cooperativity suggests linker too long or attachment geometry wrong.

DC50 / Dmax Characterization

  • DC50: concentration for 50% target degradation
  • Dmax: maximum degradation achievable (0-100%)
  • Hook effect: PROTAC activity drops at high concentration (binary complexes dominate over ternary)
# Cellular degradation assay (Western blot or reporter)
# Measure DC50 (e.g. 10 nM) and Dmax (e.g. 90% at 1 uM)
# If Dmax plateaus < 80% at high conc, check hook effect

PROTAC Databases

DatabaseURLCompounds
PROTAC-DBhttp://protacdb.weizmann.ac.il/~5000 published PROTACs
EU-OPENSCREENVariousCurated

Per-Tool Failure Modes

Hook effect at clinical dose

Trigger: Bell-shaped degradation curve in cellular assay.

Mechanism: At high PROTAC concentration, binary complexes dominate over ternary; productive degradation only happens at moderate concentration.

Symptom: Dmax falls at high PROTAC; therapeutic window narrow.

Fix: Reduce dose; or re-design linker to favor ternary.

Negative cooperativity

Trigger: PROTAC binds target with similar Kd to parent ligand, but ternary unstable.

Mechanism: Linker geometry puts target and E3 in unfavorable orientation.

Symptom: Cellular degradation absent despite binary binding.

Fix: PRosettaC-driven linker re-design; consider rigid linker.

Cellular permeability poor

Trigger: PROTAC active in lysate but not in cells.

Mechanism: MW > 1000 Da often violates cellular permeability rules.

Symptom: Cellular DC50 >> biochemical Kd.

Fix: Reduce MW; switch to rigid linker (smaller); use "PROTAC-to-drug" libraries optimized for permeability.

References

  • Békés et al. -- PROTAC review.
  • Gadd et al. -- BRD4 degraders.
  • Bondeson et al. -- CRBN-based PROTACs.

Related Skills

  • chemoinformatics/virtual-screening - Target ligand design
  • chemoinformatics/retrosynthesis - Synthesizability
  • chemoinformatics/generative-design - Generative linker design
  • chemoinformatics/covalent-design - Covalent E3 ligands
    Good AI Tools