Gypsum-DL converts SMILES and 2D SDF into 3D models
Project description
Gypsum-DL 1.2.1
Gypsum-DL is a free, open-source program for preparing 3D small-molecule
models. Beyond simply assigning atomic coordinates, Gypsum-DL accounts for
alternate ionization, tautomeric, chiral, cis/trans isomeric, and
ring-conformational forms. It is released under the Apache License, Version
2.0 (see LICENSE.txt).
Citation
If you use Gypsum-DL in your research, please cite:
Ropp, Patrick J., Jacob O. Spiegel, Jennifer L. Walker, Harrison Green, Guillermo A. Morales, Katherine A. Milliken, John J. Ringe, and Jacob D. Durrant. (2019) "Gypsum-DL: An Open-source Program for Preparing Small-molecule Libraries for Structure-based Virtual Screening." Journal of Cheminformatics 11:1. doi:10.1186/s13321-019-0358-3.
Ropp PJ, Kaminsky JC, Yablonski S, Durrant JD (2019) Dimorphite-DL: An open-source program for enumerating the ionization states of drug-like small molecules. J Cheminform 11:14. doi:10.1186/s13321-019-0336-9.
Installation
$ pip install gypsum_dl
Getting Started
from gypsum_dl import MolStates
for smiles in [
'Oc1ccccc1',
'CCC=O',
'ClC(C[C@@](Cl)(C)F)(F)C(C(C)C)=O',
'FC(C(I)=C(CC(I)(Cl)C)CC)=C(Cl)C',
'CC(CC)=C(C/C(I)=C(C)/F)Cl',
'CC([C@@H]1CC[C@H](C(C)(C)C)CC1)(C)C',
]:
print(f"example {smiles}")
st = MolStates(smiles)
for i, smiles in enumerate(st, start=1):
print(f" [{i}] {smiles}")
print()
example Oc1ccccc1
[1] [O-]c1ccccc1
[2] Oc1ccccc1
example CCC=O
[1] C/C=C/O
[2] C/C=C\O
[3] CCC=O
example ClC(C[C@@](Cl)(C)F)(F)C(C(C)C)=O
[1] CC(C)=C(O)[C@@](F)(Cl)C[C@@](C)(F)Cl
[2] CC(C)C(=O)[C@](F)(Cl)C[C@@](C)(F)Cl
[3] CC(C)=C(O)[C@](F)(Cl)C[C@@](C)(F)Cl
[4] CC(C)C(=O)[C@@](F)(Cl)C[C@@](C)(F)Cl
example FC(C(I)=C(CC(I)(Cl)C)CC)=C(Cl)C
[1] CC/C(C[C@](C)(Cl)I)=C(I)/C(F)=C(/C)Cl
[2] CC/C(C[C@@](C)(Cl)I)=C(I)\C(F)=C(\C)Cl
[3] CC/C(C[C@@](C)(Cl)I)=C(I)/C(F)=C(\C)Cl
[4] CC/C(C[C@](C)(Cl)I)=C(I)\C(F)=C(\C)Cl
[5] CC/C(C[C@](C)(Cl)I)=C(I)/C(F)=C(\C)Cl
example CC(CC)=C(C/C(I)=C(C)/F)Cl
[1] CC/C(C)=C(\Cl)C/C(I)=C(\C)F
[2] CC/C(C)=C(/Cl)C/C(I)=C(\C)F
example CC([C@@H]1CC[C@H](C(C)(C)C)CC1)(C)C
[1] CC(C)(C)[C@H]1CC[C@@H](C(C)(C)C)CC1
Command-line interface (CLI)
$ run-gypsum-dl
Gypsum-DL accepts the following command-line parameters:
-h, --help show this help message and exit
--json param.json, -j param.json
Name of a json file containing all parameters.
Overrides all other arguments specified at the
commandline.
--source input.smi, -s input.smi
Name of the source file (e.g., input.smi). Note:
support for SMI (SMILES) files is better than support
for SDF files, though Gypsum-DL can handle both.
--output_folder OUTPUT_FOLDER, -o OUTPUT_FOLDER
The path to an existing folder where the Gypsum-DL
output file(s) will be saved.
--job_manager {mpi,multiprocessing,serial}
Determine what style of multiprocessing to use: mpi,
multiprocessing, or serial. Serial will override the
num_processors flag, forcing it to be one. MPI mode
requires mpi4py 2.1.0 or higher and should be executed
as: mpirun -n $NTASKS python -m mpi4py
run_gypsum_dl.py ...-settings...
--num_processors N, -p N
Number of processors to use for parallel calculations.
--max_variants_per_compound V, -m V
The maximum number of variants to create per input
molecule.
--thoroughness THOROUGHNESS, -t THOROUGHNESS
How widely to search for low-energy conformers. Larger
values increase run times but can produce better
results.
--separate_output_files
Indicates that the outputs should be split between
files. If true, each output .sdf file will correspond
to a single input file, but different 3D conformers
will still be stored in the same file.
--add_pdb_output Indicates that the outputs should also be written in
the .pdb format. Creates one PDB file for each
molecular variant.
--add_html_output Indicates that the outputs should also be written in
the .html format, for debugging. Attempts to open a
browser for viewing.
--min_ph MIN Minimum pH to consider.
--max_ph MAX Maximum pH to consider.
--pka_precision D Size of pH substructure ranges. See Dimorphite-DL
publication for details.
--skip_optimize_geometry
Skips the optimization step.
--skip_alternate_ring_conformations
Skips the non-aromatic ring-conformation generation
step.
--skip_adding_hydrogen
Skips the ionization step.
--skip_making_tautomers
Skips tautomer-generation step.
--skip_enumerate_chiral_mol
Skips the ennumeration of unspecified chiral centers.
--skip_enumerate_double_bonds
Skips the ennumeration of double bonds.
--let_tautomers_change_chirality
Allow tautomers that change the total number of chiral
centers (see README.md for further explanation).
--use_durrant_lab_filters
Use substructure filters to remove molecular variants
that, though technically possible, were judged
improbable by members of the Durrant lab. See
README.md for more details.
--2d_output_only Skips the generate-3D-models step.
--cache_prerun, -c Run this before running Gypsum-DL in mpi mode.
--test Tests Gypsum-DL to check for programming bugs.
Examples of Use
Prepare a virtual library and save all 3D models to a single SDF file in the present directory:
$ run-gypsum-dl --source ./examples/sample_molecules.smi
Instead save all 3D models to a different, existing folder:
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--output_folder /my/folder/
Additionally save the models associated with each input molecule to separate files:
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--output_folder /my/folder/ --separate_output_files
In addition to saving a 3D SDF file, also save 3D PDB files and an HTML file with 2D structures (for debugging).
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--output_folder /my/folder/ --add_pdb_output --add_html_output
Save at most two variants per input molecule:
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--output_folder /my/folder/ --max_variants_per_compound 2
Control how Gypsum-DL ionizes the input molecules:
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--output_folder /my/folder/ --min_ph 12 --max_ph 14 --pka_precision 1
Run Gypsum-DL in serial mode (using only one processor):
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--job_manager serial
Run Gypsum-DL in multiprocessing mode, using 4 processors:
$ run-gypsum-dl --source ./examples/sample_molecules.smi \
--job_manager multiprocessing --num_processors 4
Run Gypsum-DL in mpi mode using all available processors:
$ mpirun -n $NTASKS python -m mpi4py run_gypsum_dl.py --source ./examples/sample_molecules.smi \
--job_manager mpi --num_processors -1
Gypsum-DL can also take parameters from a JSON file:
$ run-gypsum-dl --json myparams.json
Where myparams.json might look like:
{
"source": "./examples/sample_molecules.smi",
"separate_output_files": true,
"job_manager": "multiprocessing",
"output_folder": "/my/folder/",
"add_pdb_output": true,
"add_html_output": true,
"num_processors": -1
}
Important Caveats
Large Molecules
Gypsum-DL is designed to process drug-like molecules. Generating 3D structures
for larger molecules takes a very long time. For example, in our tests it
takes Gypsum-DL a very long time to process this molecule:
CCCC[C@@H](C(N[C@H]1CC(NCCCC[C@H](NC([C@@H](NC([C@@H](NC([C@@H](NC([C@@H]2CCCN2C1=O)=O)Cc3ccccc3)=O)CCCNC(N)=N)=O)Cc(c[nH]4)c5c4cccc5)=O)C(N6CCC[C@H]6C(N[C@@H](C(C)C)C(N)=O)=O)=O)=O)=O)NC(C)=O
You may wish to run your compounds through a drug-like filter before processing them with Gypsum-DL.
Tautomers
Gypsum-DL uses MolVS to generate tautomers. While MolVS is effective, we have
noticed that it sometimes generates inappropriate tautomers that change the
total number of chiral centers, e.g. O=C(c1ccc(CN)cc1)N to
N=Cc1ccc(C(O)N)cc1. But some legitimate tautomers also change the number of
chiral centers, e.g., C[C@@H](C(C)=O)F to C/C(F)=C(C)\O.
To compensate for this MolVS bug, by default Gypsum-DL rejects all tautomers
that change the total number of chiral centers. Use the
--let_tautomers_change_chirality flag if you would like to retain these
tautomers instead. As always, be sure to examine the structures that Gypsum-DL
outputs to ensure they are chemically feasible.
Durrant-Lab Filters
In looking over many Gypsum-DL-generated variants, we have identified a number of substructures that, though technically possible, strike us as improbable or otherwise poorly suited for virtual screening. Here are some examples:
C=[N-][N-]C=[N+][nH+]c[n-][#7+]~[#7+][#7-]~[#7-][!#7]~[#7+]~[#7-]~[!#7][#5](boron)O=[PH](=O)([#8])([#8])N=c1cc[#7]c[#7]1[$([NX2H1]),$([NX3H2])]=C[$([OH]),$([O-])]- Metals
If you'd like to discard molecular variants with substructures such as these,
use the --use_durrant_lab_filters flag.
Highly Constrained Ring Systems
Some users have reported that Gypsum-DL fails to produce 3D models when
processing molecules with highly constrained ring systems, such as amantadine
compounds (e.g., this molecule from ChemBridge:
CC1=CC=CN2N=CC(C(=O)NC34CC5CC(C3)CC(C5)(C4)N3C=NC=N3)=C12). Increasing the
thoroughness parameter may help in these cases.
Memory Considerations
When processing large libraries, Gypsum-DL requires substantial memory. Some users have reported that the program suddenly stops in these situations. To correct the problem, either increase the available memory, or divide your library into several smaller files and processes them sequentially.
Advanced Methods for Eliminating Problematic Compounds
Gypsum-DL aims to enumerate many possible variant forms, including forms that are not necessarily probable. Beyond applying Durrant-Lab filters, several methods allow users to exclude other potentially problematic forms:
- Identify the steps Gypsum-DL takes to generate a given problematic form
(see the "Genealogy" field of every output SDF file). Then use parameters
such as
--skip_optimize_geometry,--skip_alternate_ring_conformations,--skip_adding_hydrogen,--skip_making_tautomers,--skip_enumerate_chiral_mol, or--skip_enumerate_double_bondsto skip the problem-causing step. This fix is easy, but it may unexpectedly impact unrelated compounds. - Consider adjusting the
--min_ph,--max_ph, or--pka_precisionparameters if Gypsum-DL is producing compounds with undesired protonation states. Alternatively, you can delete specific protonation rules by modifying thegypsum_dl/Steps/SMILES/dimorphite_dl/site_substructures.smartsfile. - Add to the Durrant-Lab filters if there is a specific substructure you
would like to avoid (e.g., imidic acid due to amide/imidic-acid
tautomerization). Simplify modify the
gypsum_dl/Steps/SMILES/DurrantLabFilter.pyfile.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gypsum_dl-1.2.3.tar.gz.
File metadata
- Download URL: gypsum_dl-1.2.3.tar.gz
- Upload date:
- Size: 110.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22faf17c30d4ead8ef78cbbca1ac9dfe2e774ce6a67f8faec2610161f70425d3
|
|
| MD5 |
697d897d1a58a2d61dbdbf06e6d4227c
|
|
| BLAKE2b-256 |
7672eea162532410139f1638fc60dd4fd6b5c16fb5cbb8cdc75f85b2a64777eb
|
File details
Details for the file gypsum_dl-1.2.3-py3-none-any.whl.
File metadata
- Download URL: gypsum_dl-1.2.3-py3-none-any.whl
- Upload date:
- Size: 140.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e765b1600bccaa115ad6c39bbfe581ef23200f9d8ce095bebf93153146512c57
|
|
| MD5 |
8f1274715f864df2b41c0792bd3b9355
|
|
| BLAKE2b-256 |
61f898e2d18a74d5d6aec32f3c52af9e30bf2f343095a67d5c01e89fc24d2eaa
|