Parse HELM strings into RDKit molecules
Project description
helmkit
A Python library for converting HELM (Hierarchical Editing Language for Macromolecules) notation to RDKit molecules.
Basic Usage
from helmkit import Molecule
# Create a molecule from a HELM string
helm_string = "PEPTIDE1{A.R.G}$$$"
molecule = Molecule(helm_string)
# Access the RDKit molecule object
rdkit_mol = molecule.mol
Quick Example
from helmkit import Molecule
from rdkit.Chem import AllChem, Draw
# Create a simple tripeptide (Ala-Arg-Gly)
molecule = Molecule("PEPTIDE1{A.R.G}$$$")
# Generate 2D coordinates for visualization
AllChem.Compute2DCoords(molecule.mol)
# Save the image
img = Draw.MolToImage(molecule.mol)
img.save("tripeptide.png")
Understanding HELM Notation
HELM (Hierarchical Editing Language for Macromolecules) is a notation for representing complex biomolecules. A basic HELM string has the following format:
PEPTIDE1{A.R.G}$PEPTIDE2{S.G.T}$PEPTIDE1,PEPTIDE2,1:R1-4:R3$$
Where:
PEPTIDE1{A.R.G}defines the first chain (a peptide with amino acids A, R, G)PEPTIDE2{S.G.T}defines the second chainPEPTIDE1,PEPTIDE2,1:R1-4:R3defines a connection between the chains (R1 of residue 1 in PEPTIDE1 connects to R3 of residue 4 in PEPTIDE2)$characters separate different sections of the HELM string
Using Custom Monomer Data
By default, helmkit uses the monomer data in helmkit/data/monomers.sdf. To use a custom SDF file:
from helmkit import Molecule, load_monomer_library
# Load your custom monomer data
custom_sdf_path = "/path/to/your/custom_monomers.sdf"
custom_monomers = load_monomer_library(custom_sdf_path)
# Create molecule with custom monomer data
molecule = Molecule("PEPTIDE1{A.R.G}$$$", monomer_df=custom_monomers)
SDF File Structure Requirements
The SDF file containing monomer data must have the following properties for each molecule:
Required Properties:
symbol: A unique identifier for the monomer (e.g., "A" for alanine)m_RgroupIdx: Comma-separated list of R-group atom indices (e.g., "1,2,None,None")
Optional Properties:
m_Rgroups: Comma-separated list of R-group types (e.g., "H,OH,None,None")m_type: Monomer type (e.g., "aa" for amino acid)m_subtype: Monomer subtypem_abbr: Monomer abbreviation
Example SDF Entry:
Your molecule atom data here...
...
> <symbol>
A
> <m_Rgroups>
H,OH,None,None
> <m_RgroupIdx>
1,2,None,None
> <m_type>
aa
> <m_subtype>
natural
> <m_abbr>
Ala
$$$$
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 helmkit-0.1.0.tar.gz.
File metadata
- Download URL: helmkit-0.1.0.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d813776e7e9c131007a86f772d78c51175fbe8b5749ca0013cde581d24657fc3
|
|
| MD5 |
fc75d5cae3e49dac4890c203d9fd4e9d
|
|
| BLAKE2b-256 |
0f0222cfbaa9b307b3f977f387fd320a2577d07f46bd3c6db5248390d40a1533
|
File details
Details for the file helmkit-0.1.0-py3-none-any.whl.
File metadata
- Download URL: helmkit-0.1.0-py3-none-any.whl
- Upload date:
- Size: 48.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5448c35fd3637ee55357dd4b47c2b6329f698a5a939e25fd05f1539a635f1768
|
|
| MD5 |
a8f44a0e2d68b2ac8508f8b9e223d4b7
|
|
| BLAKE2b-256 |
9af1b30a5a073cb85a2658e85eec9d3cd3cb107eec7e8386992354a631d188ae
|