ZINC22:Fine Tranching with RDKit using Heavy Atom Count and LogP: Difference between revisions

From DISI
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
=How to run=
=How to run=


==Source conda environment for RDKit==
==Create or source conda environment for RDKit==
If you are using our cluster, there is already a conda environment with RDKit available and you just need to source it using the following command.  You need to use bash.
If you are using our cluster, there is already a conda environment with RDKit available and you just need to source it using the following command.  You need to use bash.
     bash  
     bash  

Revision as of 21:11, 14 April 2020

Written by Jennifer Young on April 14, 2020

Introduction

These scripts perform fine tranching with RDKit to compute the heavy atom count and logP for each molecule and put it in a bucket of the form HxxPyyy for positive valued logp (i.e. 0 < logp) and HxxMyyy for negative valued logp (i.e. logp < 0). The scripts are located in

   /nfs/home/jyoung/code/fine_tranche_hlogp_scripts

How to run

Create or source conda environment for RDKit

If you are using our cluster, there is already a conda environment with RDKit available and you just need to source it using the following command. You need to use bash.

    bash 
   source /mnt/nfs/home/devtest/anaconda3/bin/activate my-rdkit-env

If you need to create a conda environment, follow the instructions at https://rdkit.org/docs/Install.html

Run Python script with the desired arguments

The smiles file and batch size are command line arguments. If you choose a batch size of 10,000, the output file will be written to after each batch of 10,000 molecules is processed.

   python /nfs/home/jyoung/code/fine_tranche_hlogp_scripts/rdkit_hlogp_batch.py <smiles_file> <batch_size>

Sample Bash script for running on many smiles files

If your smiles file is large, split into chunks of 1 million (or whatever your desired size).

   split -l 1000000 <your_smiles>

Then run the following script which is reproduced below.

   /nfs/home/jyoung/code/fine_tranche_hlogp_scripts/runall.sh 

Change the x?? to the desired pattern and change the batch size to the desired value.

   #!/usr/bin/env bash
   for i in x??;
   do
      source /mnt/nfs/home/devtest/anaconda3/bin/activate my-rdkit-env
      python /nfs/home/jyoung/code/fine_tranche_hlogp_scripts/rdkit_hlogp_batch.py $i 10000
   done