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.70.2.tar.gz
(205.4 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.70.2-py3-none-any.whl
(214.3 kB
view details)
File details
Details for the file rdworks-0.70.2.tar.gz.
File metadata
- Download URL: rdworks-0.70.2.tar.gz
- Upload date:
- Size: 205.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22c2abe2f86f67e45a0271a62dae198f4dc45289bc7509afb79e45b7840b4228
|
|
| MD5 |
49a87eaf8bc04dd49d725000c9edef99
|
|
| BLAKE2b-256 |
b2849e38df0c9fda2caa2079144b41959659088cd625ae65648c47865df39951
|
File details
Details for the file rdworks-0.70.2-py3-none-any.whl.
File metadata
- Download URL: rdworks-0.70.2-py3-none-any.whl
- Upload date:
- Size: 214.3 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 |
5ba9941e1eb3898e5a9eda36bb3808535562af789aef91abc57194dccc73d9c5
|
|
| MD5 |
c66fcb985ef353173cf0fe1a1aafd177
|
|
| BLAKE2b-256 |
717ba0442ec9f017e3beae6444af5505c47836d7cb4d349a915eca26bba94920
|