3D-MCTS: A Flexible Data-Free Framework for Structure-Based De Novo Drug Design with Reinforcement Learning.
We present a novel search-based framework, 3D-MCTS, for structure-based de novo drug design. Distinct from prevailing atom-centric methods, 3D-MCTS employs a fragment-based molecular editing strategy. The fragments decomposed from small-molecule drugs are recombined under predefined retrosynthetic rules, offering improved drug-likeness and synthesizability, overcoming the inherent limitations of atom-based approaches. The integration of multi-threaded parallel simulations and real-time energy constraint-based pruning strategy equips 3D-MCTS with the capability to efficiently generate molecules with superior binding affinity (-2.0 kcal/mol better than state-of-the-art (SOTA) methods, yet at a comparable computational cost) and more reliable binding conformations (with a 43.6 % higher success rate than SOTAs). 3D-MCTS is capable of achieving thirty times more hits with high binding affinity than traditional virtual screening methods, which demonstrates the superior ability of 3D-MCTS to explore chemical space.
The main data for benchmark is CrossDock2020, which is utilized by most of the methods. You can download the processed data from this link. This is the processed version of original files, which is processed by Shitong Luo.
# software
gnina ## https://github.com/gnina/gnina
ADFR ## https://ccsb.scripps.edu/adfr/
# python
python >= 3.7 ##
openbabel >= 3.1.1 ## conda install openbabel -c openbabel
rdkit >= 2022.03.2 ## conda install rdkit -c rdkit
func-timeout >= 4.3.5 ## pip install func-timeout
The GNINA we used was binary version built by the authors on Mar 6, 2021. It can be downloaded here.
file 1. The protein structure file, pdb
format. (Without ligand atoms)
file 2. The ligand file, sdf
format. (To determine the position of binding site.)
file 3. The pocket file, pdb
format. (To speed the calculation. It can be replaced by file 1.)
We provide a fragment library comes from small molecule drugs: frags/fragment.txt
. We recommend users to modify it according specific needs.
We also provide a script to help users transform their customized fragments to building blocks needed by 3D-MCTS using prepare_building_blocks.py
:
python prepare_building_blocks.py --frag customized_frags.smi --o customized_building_blocks.smi
We provide three initial fragments in the directory init/
. Users can prepare other starting fragments (sdf format
) according to their needs.
python 3D-MCTS.py --num_sims 100000 --ligand ./ligand.sdf \
--protein ./2v3r.pdb --pocket ./pocket.pdb --score -7 \
--start 1 \ # Use the start fragment '1.sdf' in init directory
--frag_lib 'frags/fragment.txt' \ # Specify the path of fragment library
--qed 0.3 --processor 48 \
--gnina '/home/hongyan/software/gnina' \
--adfr '/home/hongyan/software/ADFR/bin'
Molecules that meet the criteria are saved in record/
.
@Article{D3SC04091G,
author ="Du, Hongyan and Jiang, Dejun and Zhang, Odin and Wu, Zhenxing and Gao, Junbo and Zhang, Xujun and Wang, Xiaorui and Deng, Yafeng and Kang, Yu and Li, Dan and Pan, Peichen and Hsieh, Chang-Yu and Hou, Tingjun",
title ="A flexible data-free framework for structure-based de novo drug design with reinforcement learning",
journal ="Chem. Sci.",
year ="2023",
volume ="14",
issue ="43",
pages ="12166-12181",
publisher ="The Royal Society of Chemistry",
doi ="10.1039/D3SC04091G",
url ="http://dx.doi.org/10.1039/D3SC04091G",
}