Fast approximate string searching using SIMD
Project description
Sassy Python Bindings
🐍 The python bindings for Sassy
Installation
Pip.
pip install sassy-rs
(as sassy was already taken we chose sassy-rs)
From source. In the root of the repository, run:
maturin develop --features python
You need Maturin for this, see maturin:
Usage
A simple usage is as follows:
import sassy
pattern = b"ATCGATCG"
text = b"GGGGATCGATCGTTTT"
# alphabet: ascii, dna, uipac
searcher = sassy.Searcher("dna")
matches = searcher.search(pattern, text, k=1)
for i, match in enumerate(matches):
print(f"Match {i+1}:")
print(f" Start: {match.text_start}")
print(f" End: {match.text_end}")
print(f" Cost: {match.cost}")
print(f" Strand: {match.strand}")
print(f" CIGAR: {match.cigar}")
This finds 3 matches:
Match 1:
Start: 4
End: 12
Cost: 0
Strand: +
CIGAR: 8=
Match 2:
Start: 6
End: 14
Cost: 1
Strand: -
CIGAR: 6=X=
Match 3:
Start: 2
End: 10
Cost: 1
Strand: -
CIGAR: X7=
Further options are sassy.Searcher(alpha=0.5) to allow overhang alignments,
and sassy.Searcher("dna", rc=False) to disable reverse complements for DNA
or IUPAC strings. searcher.search is the simple function to search one pattern
in one text, while searcher.search_many takes multiple patterns and multiple
texts and searches each pattern in each text, possibly in multiple threads.
See sassy/example.py for a larger example.
Type Hints
This package ships PEP 561 type stubs (sassy/py.typed + sassy/sassy.pyi) so that type checkers and IDEs can provide autocomplete and type checking out of the box.
See sassy/example_typed.py for a typed example that exercises all public APIs.
Running the example requires the sassy package be installed in your environment.
To install muatrin and the package in an isolated environment, then run the typed example you can use a single uv command:
uv run \
--with maturin \
sh -c 'maturin develop && python python/sassy/example_typed.py'
Running type checking on the type example requires mypy be installed in your environment.
To install mypy in an isolated environment then run type checking on the typed example you can use a single uv command:
uv run \
--with mypy \
sh -c 'mypy python/sassy/example_typed.py'
Note on auto-generation. The .pyi stubs are currently maintained by hand.
PyO3's type stub introspection is a work-in-progress and does not yet support the function-based #[pymodule] declaration used here.
Maturin does not generate stubs itself — it only packages them.
Until PyO3 introspection matures, the manual stubs are the most reliable approach and should be kept in sync with src/python.rs when the API changes.
Troubleshooting
1. I could install sassy-rc but no modules/functions are found.
When creating an issue please include the output of print(dir(sassy)) if you were able to install sassy-rs but no functions/modules were found.
Your output might look like:
['__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__']
Whereas it should look like:
['Searcher', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', 'features', 'sassy']
2. Other sassy issues.
If you were able to install sassy, but have other issues please also add the output of sassy.features().
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 Distributions
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 sassy_rs-0.2.1.tar.gz.
File metadata
- Download URL: sassy_rs-0.2.1.tar.gz
- Upload date:
- Size: 5.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f845beca7d5544d29d8b6b5a08d1139560d21293bfbf9cab593e71099c5e4988
|
|
| MD5 |
0cf10a6449f2feed3229e530f855c2e3
|
|
| BLAKE2b-256 |
c443a8529067ce8cf59e84ff25750c3bde8b275bd0134d788b5f6375961aa4fa
|
File details
Details for the file sassy_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sassy_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.8+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
628fc36f1d6afb563533bfd9235096cf0bb00eb5ac8ba3c17d975de01736e5c6
|
|
| MD5 |
4c162ad0953279bb1981eca97a79cbe1
|
|
| BLAKE2b-256 |
deefc87d9d5b186426fa5e71e672449884cc672f8c1a73996a4f48555a29e20e
|
File details
Details for the file sassy_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: sassy_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 474.6 kB
- Tags: CPython 3.8+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
644c3153946453c0674b92f34b4ccf439f0c3a5a73742e440e9d9fff2258b6f5
|
|
| MD5 |
1c9ff6bd1bf3b7a1f33b702ea043309f
|
|
| BLAKE2b-256 |
716991ef3fc405e71b3029fdbebe7b64f53fec0df9cfb072fb53920aac2d3e72
|