For chained workflows built on RDKit
Project description
Rdworks - routine tasks made easy
Rdworks is designed to perform routine cheminformatics tasks easily. It is built on RDKit and other tools.
Install
$ pip install rdworks
Getting started
from rdworks import Mol
version = rdworks.__version__
mol = Mol('CC(=O)Nc1ccc(O)cc1', 'acetaminophen')
mol = mol.make_confs(n=5)
mol.to_sdf('acetaminophen.sdf')
torsion_dict = mol.torsion_atoms()
# torsion_dict = {0: (5,4,3,1)}
mol = mol.torsion_energies(calculator='MMFF94', simplify=True)
mol.plot_torsion_energies(0, figsize=(6,4))
mol.to_png(300, 300, atom_index=True, highlight_atoms=torsion_dict.get(0))
serialized = mol.serialize(compress=True)
mol2 = Mol().deserialize(serialized, compress=True)
mol3 = mol.copy()
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
rdworks-0.72.0.tar.gz
(209.1 kB
view details)
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
rdworks-0.72.0-py3-none-any.whl
(218.0 kB
view details)
File details
Details for the file rdworks-0.72.0.tar.gz.
File metadata
- Download URL: rdworks-0.72.0.tar.gz
- Upload date:
- Size: 209.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3050cd01592c4901d73ce0c6bf5d58a037f0e1a7a862d9f97df3077a9e25a59
|
|
| MD5 |
f390198baa1c565cba64ae5f050ca6dc
|
|
| BLAKE2b-256 |
23ba894cebdb76e6c7f805ad1c110c22fe406404fbcd1ca4a85aa8c09f36a3a2
|
File details
Details for the file rdworks-0.72.0-py3-none-any.whl.
File metadata
- Download URL: rdworks-0.72.0-py3-none-any.whl
- Upload date:
- Size: 218.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e36c954bc4a3dc04835bb0cbb8f4d58498f8487cf16842fe03f2fa76a717965
|
|
| MD5 |
78caa0582987443fed96669f9b0aa565
|
|
| BLAKE2b-256 |
fc893d7961b4fb68688ef9cfdf4a43c37e493f669495f7ac536333d5e62039de
|