Fast fuzzy search over biological sequences (C++ core, Python bindings)
Project description
seqtree
Fast fuzzy search over biological sequences (amino-acid or nucleotide), as a C++ core with a minimal Python binding. Build an immutable index once, then search single queries or massive batches in parallel.
Two search engines over one trie:
seqtm— branch-and-bound enumeration. Exact per-type edit caps (max_subs/max_ins/max_dels) and a fast Hamming-only path. Best for small edit distances (UMI collapse, error correction, CDR3/epitope matching).seqtrie— full-width edit-distance DP carried down the trie. Honours themax_penaltyscore budget only; it ignores the per-type edit caps. Use it when the budget is the whole specification.
engine="auto" always picks seqtm, because it is the only engine that enforces
the caps you asked for. Results are payload-agnostic:
(ref_id, score, n_subs, n_ins, n_dels). Downstream libraries map ref_id back
to their own payloads (V gene, MHC, counts) and filter.
Beyond search, seqtree ships:
- Substitution matrices — built-in
identity,BLOSUM62,PAM250,PAM100, andstructural— a Miyazawa–Jernigan interaction-strength matrix: each residue's strengthq(a)=mean_b e(a,b)is read off the MJ contact potential, so substitutions between residues of like interaction strength are cheap. It separates strong (hydrophobicF W C L Y M I V) from weak (polar/chargedS Q D E K) interactors — the strong/weak-interactor axis of TCR-recognition models (Košmrlj et al., PNAS 2008; MJ contact energies from Miyazawa & Jernigan, J Mol Biol 1996) — letting dissimilar-but-chemically-equivalent loops align. Plus custom matrices viaSubstitutionMatrix.from_similarity(Gram penaltys(a,a)+s(b,b)−2·s(a,b)). - E-values / significance — calibrate hit counts against a background control repertoire
(
load_control+evalues), the TCRNET approach on a finite-sample footing. See the E-value guide. - Calibrated cutoffs —
threshold_for_evalueinverts the E-value into the score cutoff that achieves it, per query. A fixed cutoff is not a calibrated one: a control repertoire is dense near germline and sparse among rare junctions, so the same threshold buys a common query far more chance neighbours than a rare one. - Gap-block alignment —
gapblockrestricts alignment to one contiguous indel, which is the right model for a V(D)J junction and, measured against unrestricted affine alignment, is exactly optimal on 98.8% of genuinely related pairs at a calibratedgap_open. A gap prior (central_prior,profile_prior,frame_prior) chooses where the block goes — a sequence score alone cannot.score_matrixscores a whole query set against a whole reference set in one GIL-released C++ call (532 M pairs/s on 16 cores;numpy.asarraywraps the result with no copy), the shape a prototype-distance embedding needs. - Island profiles —
IslandProfile.fitbuilds a position weight matrix over a set of frame-aligned junctions (an island) and scores a query column by column against the island consensus, as a non-negative penalty that flows throughthreshold_for_evalueunchanged. At a repertoire-scale cutoff it recovers 48.5% of held-out members against 37.6% for min-over-members; at a loose cutoff the two are indistinguishable, so it earns its keep only where the cutoff is strict.
Install
pip install seqtree # prebuilt wheels for CPython 3.10–3.13
Prebuilt wheels cover Linux x86-64, macOS arm64 (Apple Silicon), and Windows x86-64. There are no Intel/x86-64 macOS wheels — Intel Macs build from source (see below), which just needs a C++17 compiler and CMake (pulled in automatically by the build).
Build from source
bash setup.sh # repo-local .venv + editable install
bash setup.sh --tests # + pytest
bash setup.sh --bench # + benchmark deps (huggingface_hub, psutil)
Quickstart
import seqtree
idx = seqtree.Index.build(["CASSLAPGATNEKLFF", "CASSLELGATNEKLFF"], alphabet="aa")
p = seqtree.SearchParams(max_subs=2, engine="seqtm")
for hit in idx.search("CASSLAPGATNEKLFF", p):
print(hit.ref_id, hit.score, hit.n_subs)
# parallel batch (releases the GIL)
results = idx.search_batch(queries, p, threads=0) # 0 = all cores
# matrix-weighted budget
pm = seqtree.SearchParams(matrix="BLOSUM62", max_penalty=12, engine="seqtrie")
top = idx.search_top("CASSLAPGATNEKLFF", pm, k=5)
# alignment on demand
aln = idx.align(0, "CASSLELGATNEKLFF", p)
print(aln.aligned_query, aln.aligned_ref, aln.ops)
# batch-vs-batch (auto-indexes the larger set)
pairs = seqtree.pairwise_batch(query_set, db_set, p, alphabet="aa")
# E-values against a background control repertoire (TCRNET-style significance)
control = seqtree.load_control("human_trb_aa", size=1_000_000)
target = seqtree.Index.build(vdjdb_cdr3s, alphabet="aa")
for q, r in zip(queries, seqtree.evalues(target, control, queries, p)):
if r["p_enrichment"] < 1e-3:
print(q, r["E"], r["n_target"], r["n_control"])
# ...and the cutoff that achieves a target E, per query (-1 = unreachable at this control size)
ceiling = seqtree.SearchParams(max_subs=14, max_penalty=50, matrix="BLOSUM62", engine="seqtm")
thetas = seqtree.threshold_for_evalue(target, control, queries, ceiling, e_target=0.05)
# one contiguous gap block, placed by a prior rather than by the score alone
from seqtree.gapblock import GapBlockIndex, central_prior, embed_in_frame
gbi = GapBlockIndex(cdr3s, "aa", d_max=2)
mat = seqtree.SubstitutionMatrix.blosum62()
for ref_id, score, block_len, block_pos in gbi.search(
"CASSLGQAYEQYF", 40, mat, gap_open=2 * mat.scale(),
gap_prior=central_prior(int(1.5 * mat.scale()))):
...
# a fixed frame column makes gap placement transitive -- and a column index, hence a PWM, possible
embed_in_frame("CASSGQAYEQYF", width=14, c=4) # 'CASS--GQAYEQYF'
# a whole query set vs a whole reference set, in one GIL-released C++ call
from seqtree.gapblock import score_matrix, IslandProfile
sm = score_matrix(clonotypes, prototypes, mat, gap_open=2 * mat.scale(), threads=0)
import numpy as np
distances = np.asarray(sm) # (len(clonotypes), len(prototypes)) int32, zero-copy
# a position weight matrix over an island, still a non-negative penalty (feeds threshold_for_evalue)
profile = IslandProfile.fit(island_members)
profile.score("CASSLGQAYEQYF") # 0 on the consensus, > 0 for deviations
Tests
cmake -S . -B build -G Ninja -DSEQTREE_TESTS=ON
cmake --build build
ctest --test-dir build # C++ unit tests
pytest tests/python # Python tests
Benchmarks
python bench/bench_gnuplot.py # throughput / scaling / matrix / collisions → SVG (needs gnuplot)
python bench/bench.py # recall vs ground truth (real VDJdb data)
python bench/bench_evalue.py # true E-value benchmark (target vs background control)
python bench/bench_evalue_matrix.py # significance across reference/control/query/scope grid
python bench/bench_epitope.py # epitope detection-complexity (GIL vs NLV)
python bench/bench_gapblock.py # the gap-freedom ladder: fixed centre → prior → flat → affine
python bench/bench_score_matrix.py # dense batch gap-block throughput (µs/pair, M pairs/s, RSS)
Figures (throughput, scaling, matrix-scoring overhead, collisions, E-value matrix, epitope
detection) and the full methodology are in the benchmarks docs.
Set RUN_BENCHMARK=1 for the large tiers.
Development
This repo follows git-flow:
master— stable, release-ready; CI + docs deploy run here.dev— integration branch for day-to-day work.- feature branches branch off
devand merge back via PR; releases mergedev→master.
Roadmap (affine gaps, position-specific matrices, succinct memory packing) lives in docs/roadmap.rst. Control-set E-values already ship — see the E-value guide.
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 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 seqtree-0.3.0.tar.gz.
File metadata
- Download URL: seqtree-0.3.0.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
320f5f2b17c24f09acdbd58d1c1860fa428af05aa01b486ef4cf6ba6e9e18691
|
|
| MD5 |
c5b56773a324e48090594910125954cb
|
|
| BLAKE2b-256 |
157be0bb7a89eead582319b57bade5b7cb4f4df4158915036f5311ec4b6090bc
|
Provenance
The following attestation bundles were made for seqtree-0.3.0.tar.gz:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0.tar.gz -
Subject digest:
320f5f2b17c24f09acdbd58d1c1860fa428af05aa01b486ef4cf6ba6e9e18691 - Sigstore transparency entry: 2137983481
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c467b0e70dcbce0691e097e9243d57ff6b1d64637329567ff583897c8faa8d6c
|
|
| MD5 |
b6505cf45f0bb3c3c7f3f963a3d9307d
|
|
| BLAKE2b-256 |
5ef45dc4604a52c7385178563432d684523e938b48276e79f03218b7edf0d6c2
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
c467b0e70dcbce0691e097e9243d57ff6b1d64637329567ff583897c8faa8d6c - Sigstore transparency entry: 2137983881
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5838341f3c50b847116c510903968ed284a06d2c27a2e72636dba7b61ced230f
|
|
| MD5 |
c2fe4d77d356f42506ba811f4bc655f9
|
|
| BLAKE2b-256 |
ae5d66d4842f51a67fc2cedf551e5717f6658067db8796bbf36f8a88fb4fd6de
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5838341f3c50b847116c510903968ed284a06d2c27a2e72636dba7b61ced230f - Sigstore transparency entry: 2137983546
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3f295310d0402b790fa0807410fc6d15e79c01d70a66ceab0063d88c48aa5a
|
|
| MD5 |
519f90d3aa69773fd639f49ea93a0395
|
|
| BLAKE2b-256 |
78d89a8d0d379431e53265ee2a4be153619eae1eabc19f18887a56274af3ac1a
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3e3f295310d0402b790fa0807410fc6d15e79c01d70a66ceab0063d88c48aa5a - Sigstore transparency entry: 2137983661
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f9d48825aec6635142805874dfca1c81ebb2f580551371b843b95c43192b44c
|
|
| MD5 |
9e28e44e86d6ea337d5cac1dfbc7b775
|
|
| BLAKE2b-256 |
1b468e1e0de3d137f387f6657300bda2e25474c6c873782cd1f1d11e6868af1a
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
4f9d48825aec6635142805874dfca1c81ebb2f580551371b843b95c43192b44c - Sigstore transparency entry: 2137983600
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56fd74bcf093f837cd6225456e06885a0a0130e6698d61bbab24783b5f12cdc1
|
|
| MD5 |
75d40986629fa7d44dc3a298d61c03b1
|
|
| BLAKE2b-256 |
8d0d67fedeea86f628c68aa280a82bf15d355048e76969bc431914365d1ca84a
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
56fd74bcf093f837cd6225456e06885a0a0130e6698d61bbab24783b5f12cdc1 - Sigstore transparency entry: 2137983821
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b84e2d517d8061d239f606e9675df8180d90e266a64c0a109ba86ff881effe
|
|
| MD5 |
a7d3960b5445b9feee4a267036f2560d
|
|
| BLAKE2b-256 |
c6a1c2c490eab3d1f22f89543b464447c7344db6bdb4aa6ad9c69cd434970b9d
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
53b84e2d517d8061d239f606e9675df8180d90e266a64c0a109ba86ff881effe - Sigstore transparency entry: 2137984196
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
488ec8fc02f0d2a0b12cf101ea2772cbd35831d2ddb92b08e02744b53b5e151d
|
|
| MD5 |
b38f5f1d1bb51048598b4f5f75f6135b
|
|
| BLAKE2b-256 |
560915f6289944a3390e0a47a2c7c97b5d1efb89e60d5833eac01953bd0991be
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
488ec8fc02f0d2a0b12cf101ea2772cbd35831d2ddb92b08e02744b53b5e151d - Sigstore transparency entry: 2137984166
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
882e43028f4a589f72270b85325e6b8e019484cb8fe89ddab69bebfe5f389d53
|
|
| MD5 |
c2b270410f57014b99ab7fa5364d9924
|
|
| BLAKE2b-256 |
a909cb75d09a28f16366c1d21564501fc424f01de0bc6acfde000fb45a5f5f4c
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
882e43028f4a589f72270b85325e6b8e019484cb8fe89ddab69bebfe5f389d53 - Sigstore transparency entry: 2137984019
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
958f34efb3f6d756d6c909bdd36f0c55db437d3f2fe748e45f37c3313cb84120
|
|
| MD5 |
7430a3146b52058193a545b533a69fec
|
|
| BLAKE2b-256 |
2a82f4fe403c37b5a2472aad3bdc2b661ea3c6f2ab2eab4adee0c4fcac4bfd8b
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
958f34efb3f6d756d6c909bdd36f0c55db437d3f2fe748e45f37c3313cb84120 - Sigstore transparency entry: 2137983768
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f403bcf825d444b933fc9f322c811ab663a2f21b1b020a97133f038f2573b38
|
|
| MD5 |
0938b4ff54d5cf5c08ba4deddaf3037b
|
|
| BLAKE2b-256 |
124425087972b1d88ed414aeb0bb71cd0664d07f986170346af7d254d9b7f094
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
5f403bcf825d444b933fc9f322c811ab663a2f21b1b020a97133f038f2573b38 - Sigstore transparency entry: 2137984097
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b80c2f2025ed6a6e1930474585c12e5b288e6439ccaa7c5fcb76779014d351
|
|
| MD5 |
8868b7f28ca2096ac95f83e0e1c14053
|
|
| BLAKE2b-256 |
38db756c6d207215e8abc886f356130f440c98866ecae097fadea7eaf0959e60
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
53b80c2f2025ed6a6e1930474585c12e5b288e6439ccaa7c5fcb76779014d351 - Sigstore transparency entry: 2137983941
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type:
File details
Details for the file seqtree-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: seqtree-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a5f17a6c8e8c7e8912aaa65ac8b8f3eff19763c554f0ba4832d5a6521ab3aa9
|
|
| MD5 |
7a713c2e02b63fac5944e96e36ade256
|
|
| BLAKE2b-256 |
9955cfcbca8a9a30510cdcd37a0210cda0270af71f4e6359e16099ee5180e696
|
Provenance
The following attestation bundles were made for seqtree-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/seqtree
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
seqtree-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
3a5f17a6c8e8c7e8912aaa65ac8b8f3eff19763c554f0ba4832d5a6521ab3aa9 - Sigstore transparency entry: 2137983707
- Sigstore integration time:
-
Permalink:
antigenomics/seqtree@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ec8813116fb25886d66d8c373c4bfb164ca2f0f9 -
Trigger Event:
release
-
Statement type: