Pure-Python and Hail-expression implementations of the echtvar var32 and kmer16 variant encodings
Project description
echtvar-hail
echtvar's variant encodings in Hail, and an export that writes them to Parquet instead of echtvar's zip container.
Two things live here:
var32/kmer16— Python ports ofsrc/lib/{var32,kmer16}.rs, each with anhl_*twin so the encodings run inside a Hail pipeline rather than by collecting rows to Python.parquet— an export in echtvar's per-(chrom, chunk)shape, as standard Parquet. The archive becomes a self-describing columnar file that DuckDB, Polars, pandas or Arrow can read without echtvar.
Install
pip install echtvar-hail
Python 3.12. Hail brings PySpark, which needs a JVM — Hail is built and tested against Java 11.
Quick start
import hail as hl
import pyarrow.parquet as pq
from echtvar_hail import var32
from echtvar_hail.parquet import Field, check_precisions, export_parquet, finalize_parquet
hl.init()
ht = hl.Table.parallelize(
[
{"locus": hl.Locus("chr1", 100, "GRCh38"), "alleles": ["A", "T"],
"af": 0.0031, "consequence": ["missense_variant", "splice_region_variant"]},
{"locus": hl.Locus("chr1", 200, "GRCh38"), "alleles": ["AC", "A"],
"af": 0.41, "consequence": ["intron_variant"]},
{"locus": hl.Locus("chr1", 300, "GRCh38"), "alleles": ["A", "ACGTACGT"],
"af": 0.0001, "consequence": ["frameshift_variant", "stop_gained"]},
],
hl.tstruct(locus=hl.tlocus("GRCh38"), alleles=hl.tarray(hl.tstr),
af=hl.tfloat64, consequence=hl.tarray(hl.tstr)),
)
fields = [
Field("af", precision=1e-6), # float -> integer, to a stated accuracy
Field("consequence", categorical=True), # array<str>, dictionary-encoded
]
# One aggregation pass. Checks each precision against the range it will be
# applied to, and reports what it will do.
for report in check_precisions(ht, fields):
print(report)
# {'column': 'af', 'multiplier': 1000000, 'min': 0.0001, 'max': 0.41, 'steps_used': 410000}
# Stage 1 (Hail + Spark, distributed): encode and partition.
short, long = export_parquet(ht, "/tmp/staging", fields=fields)
# Stage 2 (pyarrow, one node): choose encodings, consolidate.
finalize_parquet(short, "/tmp/echtvar/short", fields=fields)
finalize_parquet(long, "/tmp/echtvar/long", fields=fields)
Reading it back — a key plus its chrom/chunk is a whole variant:
t = pq.read_table("/tmp/echtvar/short/chr1.parquet")
print(t.schema.names)
# ['key', 'af', 'consequence', 'chrom', 'chunk']
for i in range(t.num_rows):
d = var32.decode(t["key"][i].as_py(), t["chrom"][i].as_py(), t["chunk"][i].as_py())
print(f"{d.chrom}:{d.position + 1} {d.reference}>{d.alternate}"
f" af={t['af'][i].as_py() / 1_000_000} csq={t['consequence'][i].as_py()}")
# chr1:100 A>T af=0.0031 csq=['missense_variant', 'splice_region_variant']
# chr1:200 AC>A af=0.41 csq=['intron_variant']
The third variant is missing from that output because A>ACGTACGT exceeds
var32's four-base budget, so it routed to the long table instead:
t = pq.read_table("/tmp/echtvar/long/chr1.parquet")
print(t.schema.field("key").type, t.num_rows)
# list<element: uint32> 1
Why two stages
No single tool can write this file. Hail and Spark are needed for the encoding and the shuffle, at scale. But Spark writes Parquet through parquet-mr, which cannot be told a column's encoding at all — it infers one from a writer version and a dictionary setting. The choices that make the format worth having are unavailable there.
stage 1 — export_parquet |
stage 2 — finalize_parquet |
|
|---|---|---|
| engine | Hail + Spark | pyarrow |
| runs | distributed | one node, streaming a chunk at a time |
| does | routes short/long, encodes keys, applies value transforms, partitions, sorts | picks encodings, narrows the key to uint32, writes the footer config, consolidates |
| output | staging/short/chrom=chr1/chunk=0/… |
out/short/chr1.parquet |
Stage 2 output is one file per chromosome, one row group per chunk, so a
chunk lookup is read_row_group(i) rather than opening a file. Measured over
400 chunks: same bytes to within 1%, and 2.9× faster on random chunk reads
locally — the gap widens on object storage, where opening a file is a round
trip.
API
Field
How one annotation is carried. Three shapes, and any of them may be array-valued — VEP-style annotations usually are, and an array stays an array rather than being flattened or joined into a delimited string.
Field("af") # carried as-is
Field("af", precision=1e-6) # float -> int, to a stated accuracy
Field("consequence", categorical=True) # dictionary-encoded (echtvar's string table)
Field("cadd_raw", alias="cadd", precision=0.01) # renamed on the way out
precision is an accuracy budget, not a performance knob. Quantization
shrinks a column by making values repeat, so what you keep is what you don't
save. On 300k gnomAD-like allele frequencies, against 1.09MB as float32:
| precision | size | vs float32 | distinct values |
|---|---|---|---|
| 1e-8 | 753KB | 1.45× | 112,963 |
| 1e-7 | 628KB | 1.74× | 58,461 |
| 1e-6 | 520KB | 2.10× | 12,943 |
| 1e-5 | 362KB | 3.02× | 1,338 |
| 1e-4 | 230KB | 4.75× | 135 |
An allele frequency is AC/AN, so it cannot mean anything below 1/AN — about
6.7e-7 at AN≈1.5M. Asking for finer spends bytes on the denominator wobbling
between sites.
check_precisions(ht, fields) -> list[dict]
One aggregation pass. Raises if a precision cannot span its field's range without reaching the missing sentinel; otherwise reports the multiplier, observed min/max, and steps used. Advisory — nothing forces you to call it, but a precision that overflows silently turns real values into missing ones.
export_parquet(ht, base_path, *, locus="locus", alleles="alleles", fields=(), mode="overwrite")
Stage 1. Returns (short_path, long_path). Routes each variant on
len(ref) + len(alt) > 4: short variants take a 32-bit var32 key, long ones a
kmer16 array. Multi-allelic rows contribute only their first alternate — split
them (hl.split_multi_hts) first.
finalize_parquet(staging_path, output_path, *, fields=(), filesystem=None)
Stage 2. Pass the same fields. On GCS, hand it a pyarrow.fs.GcsFileSystem
— pyarrow does not use Hadoop's GCS connector.
Decoding
var32.decode(key, chrom, chunk) and kmer16.decode(key, chrom) return a
PRA(chrom, chunk, position, reference, alternate), 0-based. A var32 key stores
position truncated to 20 bits, so it needs its chunk to reconstruct an
absolute coordinate — which is why chunk is a column.
Output layout
out/short/chr1.parquet key: uint32 row group i == chunk i
out/long/chr1.parquet key: list<uint32>
Columns are key, chrom, chunk, and one per field. Position and alleles are
not stored — the key plus chunk reconstructs them.
chunk is the index into the row groups. chrom identifies rows once several
files are read together (ds.dataset(root) concatenates them and does not
surface filenames). Both are constant over their scope, so RLE reduces them to
almost nothing.
Quantized columns are unreadable without their multiplier, so it is written to
the Parquet footer under the fields key:
import json
md = pq.ParquetFile("/tmp/echtvar/short/chr1.parquet").metadata
json.loads(md.metadata[b"fields"])
# [{'name': 'af', 'column': 'af', 'multiplier': 1000000, 'missing': 4294967295},
# {'name': 'consequence', 'column': 'consequence'}]
Dictionary encoding is deliberately not recorded there — Parquet already reports each column chunk's encoding, and a footer note would be the less reliable of the two.
Development
uv sync # dev tools are a PEP 735 dependency group
uv run pytest
uv run ruff check
The suite starts a real Hail/Spark session; it needs a JVM.
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 echtvar_hail-0.1.0.tar.gz.
File metadata
- Download URL: echtvar_hail-0.1.0.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
476f9d563b40bae1157e1b120b0d94c6f3fd77b4eee60339b0907e2823e35af7
|
|
| MD5 |
bccb6b678d6ee308d5e2d62b6ed9713f
|
|
| BLAKE2b-256 |
225e3e85e080ee3bf98d57f838ede210b6643dc23fffef1d578856755b80dfec
|
Provenance
The following attestation bundles were made for echtvar_hail-0.1.0.tar.gz:
Publisher:
publish.yml on broadinstitute/echtvar-hail
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
echtvar_hail-0.1.0.tar.gz -
Subject digest:
476f9d563b40bae1157e1b120b0d94c6f3fd77b4eee60339b0907e2823e35af7 - Sigstore transparency entry: 2278124028
- Sigstore integration time:
-
Permalink:
broadinstitute/echtvar-hail@b8cbedce30a28c4396d3ed696a647abcb97fcba2 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/broadinstitute
-
Access:
internal
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b8cbedce30a28c4396d3ed696a647abcb97fcba2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file echtvar_hail-0.1.0-py3-none-any.whl.
File metadata
- Download URL: echtvar_hail-0.1.0-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31d14a7746f93a6474332d9692c12fa628e689453f196ed5a441c41e8f3bf051
|
|
| MD5 |
efbdc5cf443801019c1a6bf1ca99396e
|
|
| BLAKE2b-256 |
24b4469899a2b168e1a029926986256ab00067ec8b1766abd4f0c2ea8d064689
|
Provenance
The following attestation bundles were made for echtvar_hail-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on broadinstitute/echtvar-hail
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
echtvar_hail-0.1.0-py3-none-any.whl -
Subject digest:
31d14a7746f93a6474332d9692c12fa628e689453f196ed5a441c41e8f3bf051 - Sigstore transparency entry: 2278124350
- Sigstore integration time:
-
Permalink:
broadinstitute/echtvar-hail@b8cbedce30a28c4396d3ed696a647abcb97fcba2 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/broadinstitute
-
Access:
internal
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b8cbedce30a28c4396d3ed696a647abcb97fcba2 -
Trigger Event:
push
-
Statement type: