Skip to content

molecule-generator-collection/ChemTSv2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

ChemTSv2

ChemTSv21 is a refined and extended version of ChemTS2 and MPChemTS3. The original implementations are available at https://github.com/tsudalab/ChemTS and https://github.com/yoshizoe/mp-chemts, respectively.

ChemTSv2 provides:

  • easy-to-run interface by using only a configuration file
  • easy-to-define framework for users' any reward function, molecular filter, and tree policy
  • various usage examples in the GitHub repository

How to setup πŸ“Œ

Requirements πŸ“

Note

ARM architecture, e.g., Apple Silicon, is not currently supported

Click to show/hide requirements
  1. python: 3.11
  2. rdkit: 2023.9.1
  3. tensorflow: 2.14.1
  4. pyyaml
  5. pandas: 2.1.3
  6. joblib
  7. mpi4py: 3.1.5 (for massive parallel mode)

ChemTSv2 with single process mode πŸš—

Click to show/hide the instruction
cd YOUR_WORKSPACE
python3.11 -m venv .venv
source .venv/bin/activate
pip install --upgrade chemtsv2

ChemTSv2 with massive parallel mode ✈️

Click to show/hide the instruction NOTE: You need to run ChemTSv2-MP on a server where OpenMPI or MPICH is installed. If you can't find `mpiexec` command, please consult your server administrator to install such an MPI library.

If you can use/prepare a server with MPI environment, please follow the (a) instruction; otherwise, please follow the (b) instruction.

(a) Installation on a server WITH a MPI environment

cd YOUR_WORKSPACE
python3.11 -m venv .venv
source .venv/bin/activate
pip install --upgrade chemtsv2[mp]

(b) Installation on a server WITHOUT a MPI environment

conda create -n mpchem python=3.11 -c conda-forge
# swith to the `mpchem` environment
conda install -c conda-forge openmpi cxx-compiler mpi mpi4py=3.1.5
pip install --upgrade chemtsv2

How to run ChemTSv2 πŸ“Œ

1. Clone this repository and move into it

git clone [email protected]:molecule-generator-collection/ChemTSv2.git
cd ChemTSv2

2. Prepare a reward file

Please refer to reward/README.md. An example of reward definition for LogP maximization task is as follows.

from rdkit.Chem import Descriptors
import numpy as np
from chemtsv2.reward import Reward

class LogP_reward(Reward):
    def get_objective_functions(conf):
        def LogP(mol):
            return Descriptors.MolLogP(mol)
        return [LogP]
    
    def calc_reward_from_objective_values(objective_values, conf):
        logp = objective_values[0]
        return np.tanh(logp/10)

3. Prepare a config file

The explanation of options are described in the Support option/function section. The prepared reward file needs to be specified in reward_setting. For details, please refer to a sample file (config/setting.yaml). If you want to pass any value to calc_reward_from_objective_values (e.g., weights for each value), add it in the config file.

4. Generate molecules

ChemTSv2 with single process mode πŸš—

chemtsv2 -c config/setting.yaml

ChemTSv2 with massive parallel mode ✈️

mpiexec -n 4 chemtsv2-mp --config config/setting_mp.yaml

ChemTSv2 with Docker

docker build -t chemtsv2:1.0.0 .
docker run -u $(id -u):$(id -g) \
           --rm \
           --mount type=bind,source=./,target=/app/ \
           chemtsv2:1.0.0 \
           chemtsv2 -c config/setting.yaml

Example usage πŸ“Œ

Target Reward Config Additional requirement Ref.
LogP logP_reward.py setting.yaml - -
Jscore Jscore_reward.py setting_jscore.yaml - 2
Absorption wavelength chro_reward.py setting_chro.yaml Gaussian 164
via QCforever5
6
Absorption wavelength chro_gamess_reward.py setting_chro_gamess.yaml GAMESS 2022.27 via QCforever5
Upper-absorption & fluorescence
wavelength
fluor_reward.py setting_fluor.yaml Gaussian 164
via QCforever5
8
Kinase inhibitory activities dscore_reward.py setting_dscore.yaml LightGBM9 10
Docking score Vina_binary_reward.py setting_vina_binary.yaml AutoDock Vina11 12
Pharmacophore pharmacophore_reward.py setting_pharmacophore.yaml - 13
gnina docking gnina_singularity_reward.py setting_gnina_singularity.yaml - -
Linker generation Linker_logP_reward.py setting_linker.yaml - -

Support option/function πŸ“Œ

Option Single process Massive parallel Description
c_val βœ… βœ… Exploration parameter to balance the trade-off between exploration and exploitation. A larger value (e.g., 1.0) prioritizes exploration, and a smaller value (e.g., 0.1) prioritizes exploitation.
threshold_type βœ… βœ”οΈ Threshold type to select how long (hours) or how many (generation_num) molecule generation to perform. Massive parallel mode currently supports only the how long (hours) option.
hours βœ… βœ… Time for molecule generation in hours
generation_num βœ… ⬜ Number of molecules to be generated. Please note that the specified number is usually exceeded.
expansion_threshold βœ… ⬜ (Advanced) Expansion threshold of the cumulative probability. The default is set to 0.995.
simulation_num βœ… ⬜ (Advanced) Number of rollout runs in one cycle of MCTS. The default is set to 3.
flush_threshold βœ… ⬜ Threshold for saving the progress of a molecule generation. If the number of generated molecules exceeds the threshold value, the result is saved. The default is set to -1, and this represents no progress is to be saved.
Molecule filter βœ… βœ… Molecule filter to skip reward calculation of unfavorable generated molecules. Please refer to filter/README.md for details.
RNN model replacement βœ… βœ… Users can switch RNN models used in expansion and rollout steps of ChemTSv2. The model needs to be trained using Tensorflow. model_json specifies the JSON file that contains the architecture of the RNN model, and model_weight specifies the file in H5 format that contains a set of the values of the weights. token specifies the pickle file that contains the token list used when training an RNN model.
Reward replacement βœ… βœ… Users can use any reward function as long as they follow the reward base class (reward/reward.py). Please refer to reward/README.md for details.
Policy replacement βœ… ⬜ (Advanced) Users can use any policy function as long as they follow the policy base class (policy/policy.py). Please refer to policy/README.md for details.
Restart πŸ”° πŸ”° Users can save the checkpoint file and restart from the file. If users want to save a checkpoint file, (SP mode) set save_checkpoint to True and specify the file name in checkpoint_file. If users want to restart from the checkpoint, set restart to True and specify the checkpoint file in checkpoint_file. (MP mode) under development.
  • βœ… indicates that the option/function is supported.
  • βœ”οΈ indicates that the option/function is partially supported.
  • πŸ”° indicates that the option/function is beta version.
  • ⬜ indicates that the option/function is NOT supported.

Filter functions are described in filter/README.md.

Advanced usage πŸ“Œ

Extend user-specified SMILES

You can extend the SMILES string you input. In this case, you need to put the atom you want to extend at the end of the string and run ChemTS with --input_smiles argument as follows.

chemtsv2 -c config/setting.yaml --input_smiles 'C1=C(C)N=CC(N)=C1C'

Specify the last atom of SMILES string using OpenBabel

OpenBabel can be used to rearrange a SMILES string so that the specified atom comes last. For example, if you want to rearrange Br in NC1=CC(Br)=CC=C1 to the last position, run the following command:

# obabel -:"<SMILES>" -osmi -xl <atom no.>
# Atom numbers correspond to the order of atoms in an input SMILES string.
# In this example, `Br` appears fifth, so we specify `5` as a <atom no.>.
obabel -:"NC1=CC(Br)=CC=C1" -osmi -xl 5
# output: Nc1cc(ccc1)Br

Please refer to the official documentation for detailed usage.

Train RNN models using your own dataset

If you want to use the RNN models trained on your own datasets, use train_model/train_RNN.py and train_model/model_setting.yaml to train the models. You need to prepare a dataset that only contains SMILES string and modify the path in dataset key in model_setting.yaml. And then, run the following command:

cd train_model/
python train_RNN.py -c model_setting.yaml

Please note that the current version of ChemTSv2 does not support the change for RNN model structures, and users can only change the parameters described in model_setting.yaml.

Once you train the RNN model, specify the path to the checkpoint and token files in model_setting and token keys in ChemTSv2 config files to run ChemTSv2 with your own RNN model.

GPU acceleration

If you want to use GPU, run ChemTS with --gpu GPU_ID argument as follows.

chemtsv2 -c config/setting.yaml --gpu 0

If you want to use GPU only for reward calculations, run ChemTSv2 with --gpu and --use_gpu_only_reward arguments as follows.

chemtsv2 -c config/setting_gnina_singularity.yaml --gpu 0 --use_gpu_only_reward

How to cite

@article{Ishida2023,
  doi = {10.1002/wcms.1680},
  url = {https://doi.org/10.1002/wcms.1680},
  year = {2023},
  month = jul,
  publisher = {Wiley},
  author = {Shoichi Ishida and Tanuj Aasawat and Masato Sumita and Michio Katouda and Tatsuya Yoshizawa and Kazuki Yoshizoe and Koji Tsuda and Kei Terayama},
  title = {ChemTSv2: Functional molecular design using de novo molecule generator},
  journal = {{WIREs} Computational Molecular Science}
}

License πŸ“Œ

This package is distributed under the MIT License.

Contact πŸ“Œ

Footnotes

  1. Ishida, S. and Aasawat, T. and Sumita, M. and Katouda, M. and Yoshizawa, T. and Yoshizoe, K. and Tsuda, K. and Terayama, K. (2023). ChemTSv2: Functional molecular design using de novo molecule generator. WIREs Computational Molecular Science https://wires.onlinelibrary.wiley.com/doi/10.1002/wcms.1680 ↩

  2. Yang, X., Zhang, J., Yoshizoe, K., Terayama, K., & Tsuda, K. (2017). ChemTS: an efficient python library for de novo molecular generation. Science and Technology of Advanced Materials, 18(1), 972–976. https://doi.org/10.1080/14686996.2017.1401424 ↩ ↩2

  3. Yang, X., Aasawat, T., & Yoshizoe, K. (2021). Practical Massively Parallel Monte-Carlo Tree Search Applied to Molecular Design. In International Conference on Learning Representations. https://openreview.net/forum?id=6k7VdojAIK ↩

  4. Frisch, M. J. et al. Gaussian 16 Revision C.01. 2016; Gaussian Inc. Wallingford CT. ↩ ↩2

  5. Sumita, M., Terayama, K., Tamura, R., & Tsuda, K. (2022). QCforever: A Quantum Chemistry Wrapper for Everyone to Use in Black-Box Optimization. Journal of Chemical Information and Modeling, 62(18), 4427–4434. https://doi.org/10.1021/acs.jcim.2c00812 ↩ ↩2 ↩3

  6. Sumita, M., Yang, X., Ishihara, S., Tamura, R., & Tsuda, K. (2018). Hunting for Organic Molecules with Artificial Intelligence: Molecules Optimized for Desired Excitation Energies. ACS Central Science, 4(9), 1126–1133. https://doi.org/10.1021/acscentsci.8b00213 ↩

  7. Barca, Giuseppe M. J. et al. (2020). Recent developments in the general atomic and molecular electronic structure system. The Journal of Chemical Physics, 152(15), 154102. https://doi.org/10.1063/5.0005188 ↩

  8. Sumita, M., Terayama, K., Suzuki, N., Ishihara, S., Tamura, R., Chahal, M. K., Payne, D. T., Yoshizoe, K., & Tsuda, K. (2022). De novo creation of a naked eye–detectable fluorescent molecule based on quantum chemical computation and machine learning. Science Advances, 8(10). https://doi.org/10.1126/sciadv.abj3906 ↩

  9. Ke, G., Meng, Q., Finley, T., Wang, T., Chen, W., Ma, W., … Liu, T.-Y. (2017). Lightgbm: A highly efficient gradient boosting decision tree. Advances in Neural Information Processing Systems, 30, 3146–3154. ↩

  10. Yoshizawa, T., Ishida, S., Sato, T., Ohta, M., Honma, T., & Terayama, K. (2022). Selective Inhibitor Design for Kinase Homologs Using Multiobjective Monte Carlo Tree Search. Journal of Chemical Information and Modeling, 62(22), 5351–5360. https://doi.org/10.1021/acs.jcim.2c00787 ↩

  11. Eberhardt, J., Santos-Martins, D., Tillack, A. F., & Forli, S. (2021). AutoDock Vina 1.2.0: New Docking Methods, Expanded Force Field, and Python Bindings. Journal of Chemical Information and Modeling, 61(8), 3891–3898. https://doi.org/10.1021/acs.jcim.1c00203 ↩

  12. Ma, B., Terayama, K., Matsumoto, S., Isaka, Y., Sasakura, Y., Iwata, H., Araki, M., & Okuno, Y. (2021). Structure-Based de Novo Molecular Generator Combined with Artificial Intelligence and Docking Simulations. Journal of Chemical Information and Modeling, 61(7), 3304–3313. https://doi.org/10.1021/acs.jcim.1c00679 ↩

  13. ηŸ³η”°η₯₯δΈ€, ε‰ζΎ€η«œε“‰, ε―Ίε±±ζ…§ (2023). ζ·±ε±€ε­¦ηΏ’γ¨ζœ¨ζŽ’η΄’γ«εŸΊγ₯くde novoεˆ†ε­θ¨­θ¨ˆ, SAR News, 44. ↩