An implementation of Roger Sayle's SmiZip algorithm for compressing short strings
Project description
SmiZip is a compression method for short strings. It was developed in 1998 by Roger Sayle (while at Metaphorics LLC) to compress SMILES strings, and fully described at a Daylight Mug01 presentation in 2001: https://www.daylight.com/meetings/mug01/Sayle/SmiZip/index.htm
This repo is an implementation Noel O’Boyle of the SmiZip algorithm in Python. This work was presented at the 12th RDKit UGM in Mainz in Sep 2023: https://github.com/SoseiHeptares/presentations/blob/main/2023/2023-09-12thRDKitUGM_NoelOBoyle_SmiZip.pdf
Note that the more recent ‘smaz’ (https://github.com/antirez/smaz) short string compression algorithm (2009) is equivalent in concept, but favours a greedy approach over an optimal encoding. This was tweaked for SMILES by Andrew Dalke as ‘smilez’; a Python 3 port by David Lorenzana can be found at https://github.com/davidlorenzana/smilez. Another more recent paper describes ZSMILES (2024, https://arxiv.org/abs/2404.19391), which seems very similar.
Quick start
Install as follows:
pip install smizip
First, let’s download a set of n-grams trained on RDKit canonical SMILES from ChEMBL:
curl https://raw.githubusercontent.com/SoseiHeptares/smizip/main/example-ngrams/rdkit.slow.json -o rdkit.slow.json
Now let’s use this to compress and decompress a .smi file that contains canonical SMILES from RDKit:
smizip -i test.smi -o test.smiz -n rdkit.slow.json smizip -d -i test.smiz -o test.2.smi -n rdkit.slow.json
Note that the expected format of a .smi file is [SMILES][tab][TITLE]\n.
Other example sets of n-grams are available from the GitHub site (https://github.com/SoseiHeptares/smizip/tree/main/example-ngrams). To create your own JSON file of n-grams, you can train on a dataset (find_best_ngrams), or modify an existing JSON (add_char_to_json).
To use from Python:
import json
from smizip import SmiZip
json_file = "rdkit.slow.json"
with open(json_file) as inp:
ngrams = json.load(inp)['ngrams']
zipper = SmiZip(ngrams)
zipped = zipper.zip("c1ccccc1C(=O)Cl") # gives bytes
unzipped = zipper.unzip(zipped)
Note
You should include \n (carraige-return) as a single-character n-gram if you intend to store the zipped representation in a file with lines terminated by \n. Otherwise, the byte value of \n will be assigned to a multi-gram, and zipped SMILES will be generated containing \n.
A similar warning goes for any SMILES termination character in a file. If you expect to store zipped SMILES that terminate in a TAB or SPACE character, you should add these characters as single-character n-grams. Otherwise the zipped representation may contain these and you won’t know which TABs are terminations and which are part of the representation.
Changes
v2.0 (2025-01) : Python API: unchanged. find_best_ngrams.py: new option --non-printable to facilitate encoding into printable ASCII charactersr; --chars is now required (help text provides a reasonable starting point) to force the user to consider the list; if the end of the training .SMI file is reached, the script wraps around to the start; --cr corrected to --lf. compress.py: A better error message is generated if an attempt is made to encode a character not present in the JSON file; support added for .SMI files without titles. Thanks to Adriano Rutz (@adafede) and Charles Tapley Hoyt (@cthoyt) for feedback.
Project details
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 smizip-2.0.0.tar.gz.
File metadata
- Download URL: smizip-2.0.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3db899b01b5c785be0ad9867c959fb8601f3537d0bed7f6e8dd72e7b889d6f7c
|
|
| MD5 |
7c7134477224737d9b38dba4f678bafa
|
|
| BLAKE2b-256 |
69c7d3da85b1d5971759b410c3d046cf84403ae730352bab413aba2719c26214
|
File details
Details for the file smizip-2.0.0-py3-none-any.whl.
File metadata
- Download URL: smizip-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92fa0a44110934fd1222ef35bf0123e85180660d38ff814f87617aebe9d5fe89
|
|
| MD5 |
214f9ff733aab1d4dba3b48ccf349dcb
|
|
| BLAKE2b-256 |
2585e6087abf8a8d9bea2f063b3d69a1a528280b84ec7aee8a4c3f07e499d989
|