vdjtools — immune-repertoire analysis
TCR/BCR immune-repertoire analysis — a clean-room Python + C++ rewrite of the legacy Groovy/Java vdjtools, standardised on the AIRR schema and polars DataFrames with minimal object-orientation.
Built on the antigenomics ecosystem: seqtree (fuzzy search / e-value engine), vdjmatch (overlap + TCRnet), arda (AIRR annotation + markup repair).
Status:
v3.0.0— the native V(D)J model engine plus the full analytics suite (diversity, overlap/TCRnet, preprocessing, biomarkers, single-cell), longitudinal clonotype dynamics (paired expansion testing + the VDJtrack recapture model), CDR features, and legacy-format ingestion (MiXcr, MiGec, immunoSEQ, IMGT/HighV-QUEST, Vidjil, RTCR, TRUST4, arda). Clonotype columns follow the AIRR junction convention (junction_nt/junction_aa). The legacy v1.x tool lives on thelegacy-1.xbranch and its releases remain available under the repository tags (v0.0.1…1.2.1).
Install
pip install vdjtools
Prebuilt wheels ship for CPython 3.10–3.13 on Linux, macOS (Apple Silicon), and Windows; the
native _core C++ extension is bundled (the source distribution compiles it on install).
That one command gives you everything vdjtools advertises — no extras to opt into. The three antigenomics engines it delegates to are base dependencies:
| Engine | Powers |
|---|---|
| arda | the germline reference (V/D/J + CDR3 anchors), model engine, annotation |
| seqtree | fuzzy search / e-values → error correction, similarity overlap, TCRnet |
| vdjmatch | sample overlap, TCRnet, metaclonotypes |
So preprocess.correct(), overlap.tcrnet(), biomarker.metaclonotypes() and
model.reference.load_germline() all just work from a plain install — and downstream libraries
can depend on plain vdjtools and rely on them being there. All three are imported lazily, so
import vdjtools stays light; between them they add only requests on top of what vdjtools
already needs. arda fetches its IMGT reference once, on first use.
Two things are still optional, because each has a working alternative or is a side integration:
pip install "vdjtools[overlap]" # scikit-learn — only for cluster_samples(method="mds");
# method="hclust" works out of the box (scipy)
pip install "vdjtools[sc]" # single-cell extras: anndata (scverse bridge), pyyaml
MMseqs2 is needed only for arda's alignment/annotation path (model.stitch.annotate) — never
for germline lookup, Pgen, generation, or the analytics. Install it via conda/brew if you need it.
Development
Uses uv — one repo-local .venv, no conda:
uv venv && source .venv/bin/activate
uv pip install -e ".[dev,test]" # builds the _core C++ extension (scikit-build-core)
Or run the bootstrap script (portable across bash/zsh, uv-first with a python -m venv fallback):
bash setup.sh --dev-parents --tests # or: zsh setup.sh
You need a C++ toolchain (Xcode CLT on macOS, build-essential on Linux) for the native _core
extension. MMseqs2 is arda's aligner, needed only for the annotation path and the slow arda
round-trip tests — brew install mmseqs2, or use the optional environment.yml conda env which
bundles it.
Quickstart — recombination model engine
Precomputed models for all 7 human loci ship in the wheel — no OLGA or download needed:
from vdjtools.model import load_bundled, native
from vdjtools.model.generate import generate
model = load_bundled("TRB", source="olga") # or source="learned" (fit to real repertoires)
native.pgen_nt(model, "TGTGCCAGCAGC...") # nucleotide generation probability (native C++)
native.pgen_aa(model, "CASSLAPGATNEKLFF") # amino-acid Pgen (codon-marginalised)
native.pgen_aa(model, "CASSLAPGATNEKLFF", mismatches=1) # + the whole Hamming-1 ball
native.pgen_aa_batch(model, seqs, mismatches=1, threads=0) # Pgen over many CDR3s, thread-parallel (~11×)
generate(model, 1000, seed=1) # sample a repertoire -> polars DataFrame
# seed= is process-stable from 3.3.0
Where Pgen sums over recombination scenarios, model.viterbi takes the argmax — the single
most likely one, which is the V/D/J boundary markup:
from vdjtools.model import best_scenario
sc = best_scenario(model, "TGTGCCAGCAGCTTAGGGACAGGGGGCTACGAGCAGTACTTC",
v="TRBV19*01", j="TRBJ2-7*01") # ALLELE names, as the model's tables are
sc.v_end, sc.d_call, sc.d_start, sc.d_end, sc.j_start # 0-based, half-open, in CDR3-nt space
# -> 8, 'TRBD1*01', 15, 24, 26
It reuses the same tables and the same loops as pgen_nt, so the chosen D obeys P(D|J) — a
TRBD2–TRBJ1 pair is genomically impossible and cannot be called.
infer_nt goes the other way, reconstructing a nucleotide CDR3 from an amino-acid one — the
VDJdb case, where a record carries (V, J, CDR3aa) and no nucleotides:
from vdjtools.model import infer_nt
sc = infer_nt(model, "CASSLGQAYEQYF", v="TRBV5-1*01", j="TRBJ2-3*01")
sc.cdr3_nt, sc.pgen, sc.margin # sequence, its exact Pgen, and how far ahead of the runner-up
Germline positions are pinned to their segment; each free N-region position takes the nucleotide the insertion model prefers. It reproduces the exponential brute-force oracle exactly on every record the oracle can resolve (25/25 TRG, 19/19 TRA) — fixing the germline trim first and then picking the best codon per residue only manages 9/25 and 4/19, because a trim chosen before the codons pins a codon the true optimum would have trimmed away.
The search is native (the same Pi_L·Pi_R transfer matrix as pgen_aa, with max for the sums):
2.5 ms per human TRB CDR3, 0.5 ms per TRA — all 80k VDJdb records in about 3 minutes. v=/j=
take one allele, several (a list or the comma-separated string an ambiguous v_call carries), or
nothing at all, in which case the DP marginalizes over every gene at essentially no extra cost.
Matches OLGA's Pgen to machine precision across all 7 loci, and adds tandem-D (D-D) support that
OLGA/IGoR lack. Learn a model from your own non-functional reads (out-of-frame or stop-codon — both escaped
selection, which is all a generative model needs) with model.infer.infer_native.
Explore any model's recombination Bayes net interactively (entropy, mutual information, marginals):
pip install "vdjtools[examples]"
marimo edit examples/model_explorer.py
Interactive marimo notebooks (data auto-loads from HuggingFace, or a local ~/hf/ copy):
examples/vaccination_tracking.py— clonotype tracking + the recapture model across yellow-fever / influenza / TBE vaccination time courses (vdjtools.dynamics).examples/aging.py— cohort-streaming diversity, clone-size and spectratype vs age.examples/ankspond_motif.py— the ankylosing-spondylitis TRBV9 "AS27" motif: disease vs HLA-B27 carriage.examples/biomarker_explorer.py— Emerson public-TCR association + co-occurrence.
Command line
pip install vdjtools installs the vdjtools command — the model engine (OLGA/IGoR-style) and the
repertoire analytics (over sample files or a metadata table, like the legacy tool):
# recombination model engine — built-in models for all 7 loci (no download)
vdjtools models # list the bundled models
vdjtools generate -m TRB -n 1000 -o gen.tsv # sample sequences (cf. olga-generate_sequences)
vdjtools pgen seqs.tsv -m TRB -o pgen.tsv # Pgen per CDR3 (cf. olga-compute_pgen)
vdjtools pgen seqs.tsv -m TRB --mismatches 1 # + the Hamming-1 ball; --v-col/--j-col to condition
# model workshop — a model is a directory, or LOCUS[:source[:organism]]
vdjtools model check TRB:learned # audit vs its germline; exits 1 on an error
vdjtools model template --locus TRB -o tmpl/ # scaffold from arda, or your own --germline-v/-j
vdjtools model learn clones.tsv -t tmpl/ -o fitted/ # EM on your sequences (--init template = fine-tune)
vdjtools model log fitted/ # log-likelihood per iteration
vdjtools model diversity TRB:olga # entropy + total diversity estimate
vdjtools model compare TRB:olga TRB:learned --by gene --dot diff.pdf
vdjtools model loglik seqs.tsv TRB:learned # log-likelihood, free parameters, AIC, BIC
vdjtools model extend fitted/ --locus TRB -o bigger/ # add a larger allele library
vdjtools model export TRB:olga --long -o marginals.tsv
# data — convert any format to the canonical table (TSV, or Parquet by extension), preprocess
vdjtools convert mixcr.txt.gz -o clones.parquet # MiXcr/immunoSEQ/AIRR/… → canonical Parquet
vdjtools downsample clones.parquet 100000 -o ds.tsv
vdjtools filter clones.parquet --coding --min-freq 1e-4 -o coding.tsv
vdjtools pool s1.tsv s2.tsv s3.tsv --join --min-samples 2 -o joint.tsv
# repertoire analytics — sample files, or a cohort via -m/--metadata + --base-dir
vdjtools diversity sampleA.tsv sampleB.tsv -o diversity.tsv
vdjtools overlap *.tsv -o overlap.tsv
vdjtools segment-usage *.tsv --segment v -o usage.tsv
vdjtools spectratype *.tsv -o spectra.tsv
vdjtools diversity -m metadata.txt --base-dir samples/ --threads 8 -o div.tsv # parallel cohort
vdjtools spectratype --cohort cohort_parquet/ -o spectra.tsv # one streamed pass
# the portable signature — one fixed, named, positional feature vector per sample
vdjtools signature --preset classify -m metadata.txt --base-dir samples/ -o sig.tsv
vdjtools signature --preset compact *.tsv -t 0 -o vsig.parquet # -t 0 = every core
vdjtools presets # the named feature sets, ranked
vdjtools presets classify # what one preset is, and when to use it
vdjtools signature --describe --preset classify # the column dictionary; reads no input
# longitudinal — paired within-donor expansion test between two timepoints
vdjtools dynamics day0.tsv day15.tsv -o tracked.tsv
Native vdjtools, AIRR Rearrangement, Parquet, and third-party inputs are auto-detected; every
command writes to -o — TSV, or Parquet when the path ends in .parquet / .pq — or to stdout
(so it pipes). Cohort commands parallelise over samples with -t/--threads or stream a pre-ingested
Parquet cohort with --cohort. Run vdjtools <command> --help for options.
Analytics (Python API)
Every reader returns one canonical polars clonotype frame (AIRR junction columns), and every
analysis function takes and returns such frames — so results chain together and drop straight into
plotting. A tour of the analysis modules (full runnable walkthrough in the
User guide):
from vdjtools import io as vio, stats, features, overlap, preprocess
# load (auto-detects MiXcr / immunoSEQ / AIRR / native / … and converts), or a whole cohort:
sample = vio.read("clones.tsv")
cohort = vio.read_samples(vio.read_metadata("metadata.txt"), base_dir="samples/")
# diversity, rarefaction, segment usage, spectratype
stats.diversity_stats(sample) # observed, Chao1, Shannon, inverse-Simpson, d50, …
stats.inext(sample, q=(0, 1, 2)) # Hill-number rarefaction/extrapolation + bootstrap CIs
stats.segment_usage(sample, "v") # V (or "j") usage; stats.spectratype(sample)
# CDR3 physicochemistry & k-mers
features.physchem_profile(sample, region="all")
# repertoire overlap & TCRnet (fuzzy/similarity/TCRnet via the [overlap] engine)
overlap.overlap_metrics(sampleA, sampleB) # F / D / Jaccard / Morisita-Horn …
overlap.tcrnet(sample) # per-clonotype neighbourhood enrichment
# preprocessing: downsample to a common depth, error-correct, filter, pool
preprocess.downsample(sample, 100_000)
preprocess.correct(preprocess.filter_functional(sample))
# cross-batch V/J-usage bias: batch-correct usage, then resample the clonotype table
usage = preprocess.correct_vj_usage(cohort, batch_col="batch", transform="sigmoid") # Vlasova 2026
fixed = preprocess.apply_vj_correction(sampleA, usage, sample_id="A0")
The portable signature — one repertoire in, a fixed named positional feature vector out, on a
scale a downstream model can consume without fitting a scaler of its own. This is the statistics
half (vsig); the geometry half (rsig, features of the prototype-sum embedding) is
mirpy's mir.signature, and the two concatenate on
sample_id into one contract:
from vdjtools.signature import vsig, vsig_cohort, columns, describe
v = vsig({"TRB": sample}, tier="standard") # {column: value}, in frozen layout order
describe("standard") # the column dictionary
Every feature carries a variance-stabilising transform chosen from its support — Haldane–Anscombe
logit for a proportion, Anscombe arcsine for a share, CLR (k−1 parts) for a composition, log for
a count — so that a read count, an isotype fraction and a principal component can sit in one
matrix. core ⊂ standard ⊂ full are exact index subsets of one frozen column order. A locus
that was not sequenced is nan plus a mask: column, never a zero.
Longitudinal tracking — which clonotypes changed between two timepoints, and the VDJtrack recapture model (Pavlova, Zvyagin & Shugay 2024):
from vdjtools import dynamics
# paired within-donor test: emergent / expanded / persistent / contracted / vanishing
tracked = dynamics.test_pair(day0, day15) # depth handled per-pair (effective N)
grouped = dynamics.test_metaclonotypes(day0, day15, scope="1,0,0,1") # 1-Hamming CDR3 ball first
called = dynamics.expansion_test(day0, day15) # edgeR NB-exact caller (log2FC + p)
# VDJtrack size-bucket recapture model — recapture fraction per clone-size class (Beta bands);
# split by a group column + capture_test() for the group effect (see examples/vaccination_tracking.py)
rates = dynamics.capture_rates(pre, post)
Incidence-based clonotype association (Emerson 2017 / Howie 2015 / De Witt 2018 / Vlasova 2026) — a choice of test, condition, and co-occurrence — and single-cell paired-chain Pgen:
from vdjtools import biomarker, sc
from vdjtools.biomarker import association, condition
# feature vs condition: Fisher / chi2 / Bayesian / permutation; binary, per-HLA-allele, or CMH-stratified
association(cohort, condition.binary(meta, "cmv"), test=["fisher", "bayes_bf"])
association(cohort, condition.stratified(meta, "cmv", "hla"), stratum_col="_stratum") # CMV | HLA (CMH)
# feature vs feature: in-silico α-β pairing / same-chain co-specificity (θ lift + Fisher + FDR)
biomarker.cooccurrence(cohort, chain_a="TRA", chain_b="TRB", evalue=True)
sc.paired_pgen(sc.pair_chains(sc.read_10x("filtered_contig_annotations.csv"))) # pgen_alpha·pgen_beta
Performance
The Pgen / generation / EM / diversity hot paths are a native C++ (pybind11) core; everything else is polars. Amino-acid Pgen matches OLGA to machine precision (1e-15) across all 7 loci while being several times faster, and the built-in models keep the resident set small. Single thread, Apple M3 (arm64), bundled human TRB model:
| operation | throughput | vs OLGA |
|---|---|---|
| nucleotide Pgen (single-D VDJ) | ~0.5 ms/seq | 9× |
| amino-acid Pgen | ~0.6–0.9 ms/seq | 8.6× |
| Pgen + Hamming-1 ball (1 substitution) | ~15 ms/seq | 8.7× |
| sequence generation | ~32 000 seq/s | — |
Nucleotide Pgen (via the same transfer-matrix DP as the aa path — an in-frame CDR3 is an aa query with
one codon fixed per position) is exact vs OLGA across all loci. Batched Pgen / 1-mismatch over many
CDR3s parallelises over sequences (native.pgen_aa_batch, ~11× on 16 cores, bitwise-identical to
the serial result); the EM E-step parallelises over reads (~6.7× on 8 threads); diversity/rarefaction
run on a native iNEXT kernel (bootstrap + parallel batch). Memory
stays light — ~63 MB resident for import vdjtools plus one loaded model, ~123 MB with all
seven bundled models resident. Reproduce with ~/vcs/projects/2026-vdjtools-benchmark/bench/bench_pgen.py and the test_*_benchmark.py
suites (RUN_BENCHMARK=1).
Capabilities (see the User guide, the API reference, and ROADMAP.md)
- IO — canonical clonotype frame on AIRR junction columns (
junction_nt/junction_aa); readers for native vdjtools, AIRR Rearrangement TSV, and Parquet, plus format-detecting converters for MiXcr (v1/2 + v3/4, incl. C-gene / BCR isotype), MiGec, Adaptive immunoSEQ (v1/v2), IMGT/HighV-QUEST, Vidjil, RTCR, TRUST4, and arda AIRR output (vdjtools.io.convert); metadata-driven batch + hive-partitioned cohorts. - Model — native V(D)J recombination model: generation probability (Pgen — nt, aa,
1-mismatch, V/J-agnostic, thread-parallel batch), sequence generation, and EM inference, all in a
native (pybind11) core. Supersedes OLGA and IGoR: arda-driven scenario enumeration, polars marginal
tables, read-parallelised EM, and tandem-D (D-D) support. Concordant with OLGA across all 7 loci;
precomputed OLGA + real-data-learned models bundled (
load_bundled). - Model workshop (user guide) — build a model on
your own V(D)J germline library (
from_germline, FASTA + anchors) and fit it to your own sequences; export and re-import every marginal as tables; check a model against its germline (check_model— functional genes stuck at P=0, unreachable deletion mass, incomplete conditionals); read the EM training log and per-iteration likelihood; compare two models (per-event Jensen-Shannon / total variation, gene usage, a bnlearn-style comparison graph) and their Pgen distributions; compute log-likelihood, AIC and BIC of a clonotype set under a model; fine-tune it, extend it with a larger allele library, and re-weight V/J usage for protocol bias. Plus information content per recombination event and a total diversity estimate (human TRB: ~52 bits per rearrangement, ~45 bits per sequence, ~3·10¹³ effective sequences). - Stats — diversity (Chao1/Shannon/Simpson/…), spectratype, V/J/VJ usage.
- Features — CDR physicochemical profiles, k-mer / V+k-mer summaries.
- Overlap — sample overlap and TCRnet (via vdjmatch/seqtree), similarity-aware overlap, clustering.
- Preprocess — downsampling, error-correction, VJ-usage batch-effect correction, pooling/joining.
- Biomarker — incidence association (Fisher / χ² / Bayesian / permutation) vs binary / HLA-allele / CMH-stratified conditions; α-β & same-chain co-occurrence pairing; metaclonotypes.
- Dynamics — longitudinal clonotype tracking between timepoints: the paired within-donor
expansion test (emergent / expanded / persistent / contracted / vanishing), the VDJtrack
size-bucket recapture model, metaclonotype-grouped testing, and an edgeR NB-exact caller
(
vdjtools.dynamics). - Single-cell — AIRR Cell / 10x interoperability, chain pairing + QC, paired α/β Pgen, and a
to_anndatabridge into the scverse ecosystem (writes.h5ad/.zarrvia AnnData).
License
GPL-3.0-or-later.
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 vdjtools-3.7.0.tar.gz.
File metadata
- Download URL: vdjtools-3.7.0.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
718f3e71a33f9c1ebd6dd6007456d5c9264c4cf12a3d9736c956af2d4d937580
|
|
| MD5 |
8688092e3e87b5494844d6061fe76dab
|
|
| BLAKE2b-256 |
8dca1969b5d9dca02f72bd24cc7e5a4b2d3b6430499a9031eaa25784dbec2f3e
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0.tar.gz:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0.tar.gz -
Subject digest:
718f3e71a33f9c1ebd6dd6007456d5c9264c4cf12a3d9736c956af2d4d937580 - Sigstore transparency entry: 2464093551
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
947a6b6239c6bea5803451c0181bfe55de0cd85e29f0c345a954ab9cf558c5d8
|
|
| MD5 |
983598fd6b8060b6c5970d185217ea49
|
|
| BLAKE2b-256 |
87295db1e28f8aba82868fa627fe1e127ad8f172bb875c41a4fa5c0ccc9c8e38
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp313-cp313-win_amd64.whl -
Subject digest:
947a6b6239c6bea5803451c0181bfe55de0cd85e29f0c345a954ab9cf558c5d8 - Sigstore transparency entry: 2464094352
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e78e6dd2eb8883bc6b75e39688e24c26ff2eeffe3a2b1aa318d34edce377b13
|
|
| MD5 |
3f9775f33641176e40977b3d9978707f
|
|
| BLAKE2b-256 |
d51756c2d4e06bfe0e085317c6457c4ae9248d2f5d73b3df2b3d1bac6450c14f
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
8e78e6dd2eb8883bc6b75e39688e24c26ff2eeffe3a2b1aa318d34edce377b13 - Sigstore transparency entry: 2464094396
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95cc85d1c2b276155c6659d55b53d8f4bd997d7b446c6ebec54c64a63ba95ddd
|
|
| MD5 |
9113dce399dcfa27d9af774fa7b54f3f
|
|
| BLAKE2b-256 |
db76c92d35e5043124f90c6819f2a2de8ebd20d0a4611d7a8df5d29a8dbe107e
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
95cc85d1c2b276155c6659d55b53d8f4bd997d7b446c6ebec54c64a63ba95ddd - Sigstore transparency entry: 2464094270
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ad2c64b208d91202b001673ec18810510a09eb33b9866767b9a7994fec31b33
|
|
| MD5 |
79ece990fcfe3c2fd2193b16911ae211
|
|
| BLAKE2b-256 |
be3e9b0a4d3c8478f88917a5f70d26ddc2414096b8331b883f49f62f07c1824e
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp312-cp312-win_amd64.whl -
Subject digest:
1ad2c64b208d91202b001673ec18810510a09eb33b9866767b9a7994fec31b33 - Sigstore transparency entry: 2464094444
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ffd032e57ebfa0c6fffa25e4233b071ef9e78c078083b436927914f1b38d9b4
|
|
| MD5 |
3ba22c4887225b08c1ed4b320f9df8dc
|
|
| BLAKE2b-256 |
41e58268a4fe4b659c21e5f63429cd2824daa57b24253a43b7b1ebef8928b3c5
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
7ffd032e57ebfa0c6fffa25e4233b071ef9e78c078083b436927914f1b38d9b4 - Sigstore transparency entry: 2464093634
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb9bb317caac4fb33f7b28ff11ec3124ed7590528dca3495858001b23add453c
|
|
| MD5 |
f1ebcfd281c4dc1f0bacad797439a067
|
|
| BLAKE2b-256 |
0d7f43b573bd0a16f3d8bf20c2f32c6fae8231c18463ebe9fb7ed4fe37b7d079
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
cb9bb317caac4fb33f7b28ff11ec3124ed7590528dca3495858001b23add453c - Sigstore transparency entry: 2464094180
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b8855349f5b33054d623aa96ccb51896df1475e3cad6f31923d5477b0961997
|
|
| MD5 |
db5414197e27a9e06361627713c22620
|
|
| BLAKE2b-256 |
279bda104f425f02d4f36c6508e33ebda38884ccb467ae5d4c87be41b6cc8ba1
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp311-cp311-win_amd64.whl -
Subject digest:
5b8855349f5b33054d623aa96ccb51896df1475e3cad6f31923d5477b0961997 - Sigstore transparency entry: 2464094049
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e681abf47a679d9fd39eca9184f4edfb159c79574ab0871a662c6151f9372e93
|
|
| MD5 |
0ce6b68f077e505f4335a5abd3c529ba
|
|
| BLAKE2b-256 |
512e1f375654352c8dc09cba905cd994961e7a1e2a1eb538ec3a09d1c911a5cd
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e681abf47a679d9fd39eca9184f4edfb159c79574ab0871a662c6151f9372e93 - Sigstore transparency entry: 2464093875
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbde34ec31dd3977845b148c0fc3acaa91f829ae663e272b91cfc49f2d4a594a
|
|
| MD5 |
b6bc69afeb8ebdc3742329c125cca8ef
|
|
| BLAKE2b-256 |
4d71e536b3ccb8715df3278bd8adbcd882dd52f11350765b86c7bb7ea8c064ae
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
cbde34ec31dd3977845b148c0fc3acaa91f829ae663e272b91cfc49f2d4a594a - Sigstore transparency entry: 2464093748
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0b277313f553bf8561c27e84299689e77d823840a3539deb142f3e701269310
|
|
| MD5 |
bf7154fe7ed5798ccf3b74e141a3dc19
|
|
| BLAKE2b-256 |
be12d2949c8a1458dc3c1b58593210c1f6ef74b67d565bf145aac2ba9f46814e
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp310-cp310-win_amd64.whl -
Subject digest:
f0b277313f553bf8561c27e84299689e77d823840a3539deb142f3e701269310 - Sigstore transparency entry: 2464093795
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4eff61e60476b2b804146154d927f1e57b64e7794e503bf70e728b6475279d2
|
|
| MD5 |
fb3e318bd3798ecee0887ba603ac3436
|
|
| BLAKE2b-256 |
6d33006750397f0ecc43a4ee003a2b719bb0e78113fae57ddf6acc97c24b4f44
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c4eff61e60476b2b804146154d927f1e57b64e7794e503bf70e728b6475279d2 - Sigstore transparency entry: 2464094126
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type:
File details
Details for the file vdjtools-3.7.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: vdjtools-3.7.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dac2d13c144639abda74c2075320bb4cb6103a603efbf15544c8f93ed526c871
|
|
| MD5 |
abf4f977c643490cdb164a0d13205a4c
|
|
| BLAKE2b-256 |
e58aec899ccba2542adbc44e69c712f0488873d8bb49f091d0ca87e75a316d60
|
Provenance
The following attestation bundles were made for vdjtools-3.7.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on antigenomics/vdjtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vdjtools-3.7.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
dac2d13c144639abda74c2075320bb4cb6103a603efbf15544c8f93ed526c871 - Sigstore transparency entry: 2464093967
- Sigstore integration time:
-
Permalink:
antigenomics/vdjtools@f45995896b04398b659b08ef18132ede0b158f0f -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/antigenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f45995896b04398b659b08ef18132ede0b158f0f -
Trigger Event:
release
-
Statement type: