Designing small-molecule-binding proteins, such as enzymes and biosensors, is crucial in protein biology and bioengineering. Generating the protein pocket—the area where the protein interacts with the ligand molecule—presents challenges due to the interactions between ligand molecules and proteins, the flexibility of ligand molecules, the chemistry of amino acid side chains, and multimodal sequence-structure dependencies.
We introduce PocketGen, a deep generative method for generating the residue sequence and the full-atom structure within the protein pocket region that leverages sequence-structure consistency. PocketGen consists of a bilevel graph transformer for structural encoding and a sequence refinement module that uses a protein language model (pLM) for sequence prediction. The bilevel graph transformer captures interactions at multiple granularities (atom-level and residue/ligand-level) and aspects (intra-protein and protein-ligand) with bilevel attention mechanisms.
Experiments and case studies indicate that PocketGen can efficiently generate protein pockets with higher binding affinity and validity than state-of-the-art methods. PocketGen is 10 times faster than physics-based methods and achieves a 95% success rate (the ratio of cases that generated pockets has higher binding affinity than the reference ones) with over 64% amino acid recovery rate on the Binding MOAD dataset.
Designing Full-Atom Ligand-Binding Protein Pockets
A primary method for modulating protein functions involves the interaction between proteins and small molecule ligands. These interactions play a critical role in biological processes, such as enzymatic catalysis, signal transduction, and regulatory mechanisms within cells. The binding of small molecules to specific sites on proteins can induce conformational changes, modulate activity, or inhibit functions. This mechanism serves as a valuable tool for studying protein functions and designing small molecule-binding proteins with customized properties for therapeutic and industrial applications, including designing enzymes to catalyze reactions that do not have natural catalysts and developing biosensors that can detect compounds in the environment by transducing signals which can be used for environmental monitoring, clinical diagnostics, pathogen detection, drug delivery systems, and applications in food industry.
These designs often involve modifying existing ligand-binding protein pockets to facilitate more precise interactions with specific ligands. The complexity of ligand molecule-protein interactions, ligand and side chain flexibility, and sequence-structure relationships, however, pose significant challenges for computational generation of high-validity, ligand-binding protein pockets.
Overview of PocketGen
PocketGen implements a co-design scheme, where the model concurrently predicts the sequence and structure of the protein pocket based on the ligand molecule and the protein scaffold (excluding the pocket). PocketGen comprises two modules: the bilevel graph transformer and the sequence refinement module.
To achieve end-to-end molecular generation, PocketGen models the protein-ligand complex as a geometric graph of blocks to handle variable atom counts across different residues and ligands. Initially, the pocket residues are assigned the maximum possible number of atoms (14 atoms) and later are mapped back to specific residue types post-generation. The bilevel graph transformer captures interactions at multiple granularities (atom-level and residue/ligand-level) and aspects (intra-protein and protein-ligand) using bilevel attention mechanisms. To account for the influence of the redesigned pocket on the ligand, the ligand structure is updated during refinement to reflect potential changes in binding pose.
To ensure consistency between protein sequence and structure domains and incorporate evolutionary information encoded in protein language models (the ESM series models), PocketGen implements a structural adapter into protein sequence updates. This adapter facilitates cross-attention between sequence and structure features, promoting information flow and achieving sequence-structure consistency. During training, only the adapter is fine-tuned, while the remaining layers of the protein language models remain unchanged.
Evaluations of PocketGen
We evaluated PocketGen on redesigning pockets of ligand-binding antibodies, enzymes, and biosensors for the following target ligand molecules:
- Antibodies: Cortisol (HCY) is a primary stress hormone that elevates glucose levels in the bloodstream and serves as a biomarker for stress and other conditions. We redesign the pocket of a cortisol-specific antibody (PDB ID 8cby) to potentially aid in the development of immunoassays.
- Enzymes: Apixaban (APX) is an oral anticoagulant approved by the FDA in 2012 for patients with non-valvular atrial fibrillation to reduce the risk of stroke and blood clots. Apixaban targets Factor Xa (fXa) (PDB ID 2p16), a crucial enzyme in blood coagulation that transforms prothrombin into thrombin for clot formation. Redesigning the pocket of fXa could therefore have therapeutic significance.
- Biosensors: Fentanyl (7V7) has become a widely abused drug contributing to the opioid crisis. Computational design of fentanyl-binding proteins (biosensors) can facilitate detection and neutralization of the toxin. For example, Baker et al. developed a biosensor (PDB ID 5tzo) for detecting fentanyl in plants.
PLIP is employed to describe the interactions between the designed protein pocket and ligands, comparing these predicted interactions to the original patterns. The pockets produced by PocketGen replicate most non-bonded interactions observed in experimentally measured protein-ligand complexes, and introduce additional physically plausible interaction patterns not present in the original complexes.
Publication
PocketGen: Generating Full-Atom Ligand-Binding Protein Pockets
Zaixi Zhang, Wanxiang Shen, Qi Liu, Marinka Zitnik
In Review 2024 [bioRxiv]
@article{zhang2024pocketgen,
title={PocketGen: Generating Full-Atom Ligand-Binding Protein Pockets},
author={Zhang, Zaixi and Shen, Wanxiang and Liu, Qi and Zitnik, Marinka},
journal={bioRxiv},
url={https://www.biorxiv.org/content/10.1101/2024.02.25.581968},
year={2024}
}
Code Availability
Pytorch implementation of PocketGen is available in the GitHub repository.