A multithreaded python wrapper for rust bindings of minimap2.
Project description
Mappy-rs
A multi-threaded minimap2 aligner for python. Built for readfish compatibility.
Heavily leaning on and inspired by Joeseph Guhlin's minimap2-rs repository. They also have a more heavily featured python client, which also provides multithreaded alignment. This client provides a more simple streaming interface for use in pipelines.
pip install mappy-rs
Developers
Start with some Docs on Py03 - https://pyo3.rs/latest/
If you wish to contribute, have a look at CONTRIBUTING.md
In order to build an importable module:
python -m venv .env
source -m .env/bin/activate
pip install ".[tests]"
To run the tests:
# Python
pytest
# Rust
cargo t --no-default-features
Then in your python shell of choice:
import mappy_rs
aligner = mappy_rs.Aligner("resources/test/test.mmi")
The current iteration of mappy-rs
serves as a drop in for mappy
, implementing all the same methods. However if this is the use case, you may well be better off using mappy
, as the extra level of Rust between your python and C++ may well add slightly slower performance.
Multithreading
In order to use multi threading, one must first enable it.
import mappy_rs
aligner = mappy_rs.Aligner("resources/test/test.mmi")
# Use 10 threads
aligner.enable_threading(10)
Enabling threading makes the map_batch
method available.
This method requires a list or iterable of dictionaries, which can have any number of keys and depth, but must contain the key seq
with a string value in the top-level dictionary.
Currently, the maximum batch size to be iterated in one call is 20000.
For example:
import mappy_rs
aligner = mappy_rs.Aligner("resources/test/test.mmi")
aligner.enable_threading(10)
seqs = [
{"seq": "ACGTAGCATCGAGACTACGA", "Other_random_key": "banter"},
{"seq": "ACGTAGCATCGAGACTACGA", "Other_random_key": "banter"},
]
for (mapping, data) in aligner.map_batch(seqs):
print(list(mapping))
print(data)
Benchmarks
A simple benchmark against classic mappy, and mappy_rs with incrementing numbers of threads, run on a 2018 Macbook.
Device
Property | Value |
---|---|
Model Name | MacBook Pro |
Model Identifier | MacBookPro15,2 |
Processor Name | Quad-Core Intel Core i7 |
Processor Speed | 2.7 GHz |
Number of Processors | 1 |
Total Number of Cores | 4 |
L2 Cache (per Core) | 256 KB |
L3 Cache | 8 MB |
Hyper-Threading Technology | Enabled |
Memory | 16 GB |
Results
Name (time in s) | Min | Max | Mean | StdDev | Median | IQR | Outliers | OPS | Rounds | Iterations |
---|---|---|---|---|---|---|---|---|---|---|
test_benchmark_multi[5] | 26.8900 (1.0) | 30.0969 (1.0) | 28.0622 (1.0) | 1.2614 (1.0) | 27.9017 (1.0) | 1.6081 (1.35) | 1;0 | 0.0356 (1.0) | 5 | 1 |
test_benchmark_multi[4] | 28.5573 (1.06) | 43.4543 (1.44) | 32.3371 (1.15) | 6.2815 (4.98) | 29.7480 (1.07) | 5.2148 (4.37) | 1;1 | 0.0309 (0.87) | 5 | 1 |
test_benchmark_multi[3] | 31.6497 (1.18) | 36.9986 (1.23) | 33.5103 (1.19) | 2.0542 (1.63) | 32.8415 (1.18) | 1.9576 (1.64) | 1;0 | 0.0298 (0.84) | 5 | 1 |
test_benchmark_multi[2] | 43.2616 (1.61) | 86.3859 (2.87) | 53.8572 (1.92) | 18.3339 (14.53) | 45.9328 (1.65) | 14.6382 (12.26) | 1;1 | 0.0186 (0.52) | 5 | 1 |
test_classic_mappy[mappy_al] | 78.5566 (2.92) | 82.8876 (2.75) | 79.6177 (2.84) | 1.8343 (1.45) | 78.8350 (2.83) | 1.1938 (1.0) | 1;1 | 0.0126 (0.35) | 5 | 1 |
test_classic_mappy[mappy_al_rs] | 83.7239 (3.11) | 87.9675 (2.92) | 85.4424 (3.04) | 1.6806 (1.33) | 85.6335 (3.07) | 2.3310 (1.95) | 2;0 | 0.0117 (0.33) | 5 | 1 |
test_benchmark_multi[1] | 84.8418 (3.16) | 94.0907 (3.13) | 86.7404 (3.09) | 4.1096 (3.26) | 84.8749 (3.04) | 2.4310 (2.04) | 1;1 | 0.0115 (0.32) | 5 | 1 |
Changelog
0.0.6
- Lowered backoff time for
map_batch
to 50 milliseconds, with 6 attempts. Each attempt will double the previous back off time. - Improved error handling for
map_batch
, now will raise aRuntimeError
if the backoff time is exceeded. Also prevented loggingInternal error returning data, the receiver iterator has finished. sending on a disconnected channel 2870
to stderr excessively. - Added tests for mapping more than 50000 reads, using
back_off=True
andback_off=False
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
Hashes for mappy_rs-0.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c37917ee80260a8062a1d61676ad7f09441a09bf07045788d9db7e9b8a38f0a |
|
MD5 | 07e8d9a487dbe4be2e438fe21791f719 |
|
BLAKE2b-256 | 2ab96b9e25887591d4d5b078eac52321525b99d0c9357c6b0625e47f082276e1 |
Hashes for mappy_rs-0.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eca9b0835b340bbb94efd61a48c85f8ab0f2d4e335df834e4ad0ef94eb5098af |
|
MD5 | 6d188a06e88ba4f1b13d7ba258dbae06 |
|
BLAKE2b-256 | 533e7459b6744a7ed0013ed6250b51c6f46064a74465bc95239a8007f03ed058 |
Hashes for mappy_rs-0.0.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7b9042228a900fd71fc5f1e3d79cbf667e9867c3fea2d59cce85fddc080e619 |
|
MD5 | a01a28c869f459d3d63ad40c652db4ab |
|
BLAKE2b-256 | 8878d59844f351366fa830d4e282d31f91978e7cb411e1390a148c277cf3234a |
Hashes for mappy_rs-0.0.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 671fc718c54ecb6e7387a834ce2160efe32c19d70b7c266429fe658d87328f7d |
|
MD5 | 74f5fc96623fceb43976a65531e2641c |
|
BLAKE2b-256 | 9ff49edd86c9231576b207cdb55f4fd718f5ddc742dd8b63b0c952e84c87c1e7 |
Hashes for mappy_rs-0.0.6-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0d8cd4c4a29d9cfb6ac70dc63159bbd8f83538b9eecd8b0ecf7d5c12f3150bf |
|
MD5 | c5bbb808d5771ecee750e05b90225c14 |
|
BLAKE2b-256 | 869169857878c888499fb5f8de85ffcf17fce9092ae28d01b52d303c89cc75be |
Hashes for mappy_rs-0.0.6-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3edf51f4dd2456c42b7bad8915cde6fd0a849e0ccfd13cc3531beae4436ebe09 |
|
MD5 | fbe8573c40d63472e466aaf3bb867f2f |
|
BLAKE2b-256 | 540bb9d03416a2d44cd87f4aeab282807a8526428cd9ad27a431d1a6146e0334 |