Skip to content

Plugins

vepyr supports external per-variant annotation databases as plugins: a raw source (TSV/CSV/Parquet) is converted into a frequency-tiered, per-chromosome Parquet cache whose values are emitted as extra VEP CSQ output fields. Five plugins are implemented today: CADD, SpliceAI, AlphaMissense, ClinVar and dbNSFP.

Plugin manifests live in the public vepyr-plugins repository and are selected by plugin name + git tag, so different plugins can be pinned to different releases.

Don't want to build one?

Prebuilt release-116 plugin caches for CADD, SpliceAI, AlphaMissense and ClinVar are published for download — see Plugin caches. dbNSFP is the exception: its licence forbids redistributing a converted cache, so that one must be built from your own registered download.

Building a plugin cache

import vepyr

vepyr.build_plugin_cache(
    plugin="alphamissense",          # dir in vepyr-plugins
    version="v0.2.0",                # git tag of vepyr-plugins for THIS plugin's manifest
    source_path="AlphaMissense_hg38.tsv.gz",  # the raw source DATA (not in vepyr-plugins)
    cache_dir="/data/115_GRCh38_merged",      # existing Ensembl variation cache (supplies tier)
    plugin_cache_root="/data/plugin_cache",   # output: plugin/<name>/chr*.parquet + manifest.json
    chroms=None,                     # None = all chroms present under <cache_dir>/variation/
    plugins_repo=None,               # optional local clone of vepyr-plugins for OFFLINE builds
    overwrite=False,                 # True replaces an existing plugin/<name>/ tree
)

source_path also accepts a dict[str, str] for a manifest whose [[source]] entries are split across several files, keyed by part name — those register as plugin_<name>_src_<part>. The call returns one (chrom, rows, warm, cold) tuple per chromosome written.

One call builds one plugin at one version. To combine plugins at different versions (e.g. AlphaMissense v0.2.0 + ClinVar v0.3.0), call build_plugin_cache once per plugin into the same plugin_cache_root.

The manifest is resolved from the public vepyr-plugins repo at version (cloned on demand), or from a local clone via plugins_repo for fully offline builds. Tiering (warm/cold) is inherited from the variation cache at cache_dir — plugins declare no tier policy of their own.

Annotating with plugins

Point annotate() at the built cache root; the plugin CSQ fields appear automatically (header + per-transcript body). plugin_cache_root=None (default) is byte-identical to a plugin-free run.

vepyr.annotate(
    "sample.vcf",
    "/data/115_GRCh38_merged",
    everything=True,
    reference_fasta="Homo_sapiens.GRCh38.dna.primary_assembly.fa",
    plugin_cache_root="/data/plugin_cache",
    output_vcf="sample.annotated.vcf",
)

In a LazyFrame, plugin values hide inside CSQ

Plugin fields are appended to the CSQ field, after the base fields, in (csq_rank, plugin_name) order. Writing a VCF gives you a header naming them. A LazyFrame has no header, and its default skip_csq=True drops the CSQ column outright — so plugins are applied and then silently discarded.

Pass skip_csq=False to keep them. The values are correct and identical to the VCF path, but unnamed — you have to count positions yourself, and the base field count varies (74–86, by cache type and everything), so the offsets are not fixed. A CADD-only subset on a merged cache at default flags appends CADD_PHRED then CADD_RAW at positions 80 and 81 of an 81-field CSQ; with everything=True the same two land at 87 and 88. Plugin values are not broken out as DataFrame columns.

Passing plugins without output_vcf and with skip_csq left at its default warns for this reason.

Choosing which plugins run

Selection is directory-shaped: every plugin under <plugin_cache_root>/plugin/ is applied. There is no per-call version argument — a plugin's version is fixed when build_plugin_cache writes it.

plugins narrows that set to a subset of the directories present:

vepyr.annotate(
    "sample.vcf",
    "/data/116_GRCh38_merged",
    plugin_cache_root="/data/plugin_cache",
    plugins=["clinvar", "cadd"],   # only these two
    output_vcf="sample.annotated.vcf",
)
plugins= Effect
omitted / None every plugin under the root — the default
["clinvar", "cadd"] only those two
[] none; equivalent to a plugin-free run
["nope"] ValueError, listing the plugins that are available

Order is irrelevant — the engine sorts discovered plugins by (csq_rank, plugin_name), so the CSQ layout does not depend on how you list them. plugins requires plugin_cache_root.

The three alternatives to plugins all still work, and are what you want when a selection is permanent rather than per-call: pass plugin_cache_root=None for no plugins, build separate roots for separate combinations, or add and remove plugin directories under an existing root.

How the subset is materialised

The engine has no plugin filter. Both the CSQ header and the per-transcript body discover <root>/plugin/ independently, so filtering one and not the other would leave the header advertising fields the body never fills, shifting every later value.

plugins therefore hands the engine a root that already contains only the selected plugins — a temporary directory whose files are hard-linked to the originals. The two discovery passes then cannot disagree, and nothing is copied.

Files are linked individually rather than the plugin directory being symlinked, because a directory symlink needs target_is_directory=True on Windows plus a privilege non-elevated sessions lack. Where hard links are unavailable — a temporary directory on a different volume — it falls back to per-file symlinks, then to an error naming TMPDIR.

The subset lives as long as it is needed: released when the annotation finishes for output_vcf, and tied to the LazyFrame otherwise, since a frame re-opens the cache on every collect().

Manifest structure

A plugin's plugins/<name>/<name>.source.toml declares how to ingest the raw source and map it to CSQ fields.

TOML ordering

Top-level scalar keys (plugin_name, coordinate_system, ingest_sql) MUST precede any [[table]] header, or TOML absorbs them into the preceding table.

Top level

Key Type Required Description
plugin_name string yes Plugin identifier; also the cache directory name.
coordinate_system 1-based | 0-based-half-open yes How ingest_sql reads positions. Drives the build-time shift to the variation cache's 1-based convention, and for vcf/bed sources it also sets the provider's own flag so both agree.
ingest_sql string yes SELECT over the raw source table(s). MUST project chrom, start, end, allele_string (ref/alt), plus any discriminator and value columns.
[[source]] table array yes, 1+ The raw file(s) — see below.
[[value_columns]] table array yes, 1+ The emitted CSQ fields — see below.
[[match_column]] table array no (default none) Per-transcript discriminator(s) — see below. Omit for per-variant plugins.
allele_match exact | minimised no (default exact) Which comparison the plugin's own Ensembl implementation uses. See Allele matching — it is a statement about upstream, not a tuning knob.
field_order declared | alphabetical no (default declared) Order of this plugin's fields in CSQ. declared mirrors Ensembl --custom, alphabetical mirrors --plugin.
csq_rank integer no (default 4294967295) Where this plugin's block sits relative to other plugins. Plugins are emitted sorted by (csq_rank, plugin_name), so an unset rank sorts last, by name.
assume_unique bool no (default false) Declare that the source never repeats a probe key, skipping the dedup pass. The build samples the data to check the claim rather than trusting it.

[[source]]

Key Type Required Description
provider csv | tsv | parquet | vcf | bed yes Reader for this file. All five work — see Table providers.
path string yes Placeholder; always overridden at build time by source_path.
part string no Names this source when a manifest declares several. Registers as plugin_<name>_src_<part>, and makes source_path take a {part: path} mapping.
index tabix no Random-access index. Explicit rather than inferred from a .gz suffix, because ordinary gzip is not seekable. On csv/tsv it requires compression = "gzip" (i.e. BGZF) — a plain gzip source with index = "tabix" is rejected at parse time.
record_layout bool no (default false) vcf sources only: carry the raw record layout through the provider.
[source.csv] table for csv/tsv Parsing options — see below. Not used by parquet/vcf/bed.

[source.csv]

Key Type Default Description
delimiter string "\t" Field separator.
has_header bool false Whether row 1 is a header.
comment string none Lines starting with this are skipped (e.g. "#").
compression string none "gzip" is the recognised value. gzip inputs are decompressed to a temp file first, since DataFusion is built without the compression feature.
schema array of {name, type} empty Ordered column list for headerless or explicitly typed input. type is Utf8, Float32 or Int32 — declaring everything Utf8 and casting in ingest_sql is the common pattern.

[[match_column]]

Key Type Required Description
column string yes The discriminator column stored in the shard.
template string yes Built at runtime from the engine-attribute namespace, e.g. {ref_aa}{Protein_position}{alt_aa}. If any attribute it references is absent for a consequence, the discriminator is empty and the plugin emits nothing on that line.

[[value_columns]]

Key Type Required Description
column string yes Column produced by ingest_sql.
csq_field string yes Output CSQ field name.
type Utf8 | Float32 | Int32 yes Stored Arrow type.
description string no Emitted as the ##<FIELD>=<description> header line, matching what Ensembl writes for plugin fields.

Declaration order is not necessarily output order — field_order decides that, and it is alphabetical for four of the five shipped plugins. See the note on emitted order.

Multi-part sources

A manifest may declare several [[source]] blocks, each with its own part. They register as plugin_<name>_src_<part> and are combined by the manifest's own ingest_sql, so the files need not be concatenated first — CADD's separate SNV and indel sources are the worked example:

vepyr.build_plugin_cache(
    "cadd", version,
    source_path={
        "snv": ".../whole_genome_SNVs.tsv.gz",
        "indel": ".../gnomad.genomes.r4.0.indel.tsv.gz",
    },
    ...
)

The mapping must cover every declared part and name no unknown one. A bare path against a multi-source manifest is rejected — one path cannot address two sources, and the unmapped ones would silently read their placeholders. A mapping is likewise rejected when a [[source]] declares no part, since there is then no key to address it by.

There is no [tier] block — tiering is inherited from the variation cache.

Allele matching: exact vs minimised

Ensembl's plugins do not agree on how a variant is compared to a row of their data file, so neither can vepyr. Getting this wrong is silent: the wrong setting either drops annotations Ensembl reports, or invents ones it does not.

Two rules are in use upstream:

rule what Ensembl does plugins
minimised calls get_matched_variant_alleles(), which runs trim_sequences() over both the variant and the data row before comparing CADD, AlphaMissense, ClinVar
exact compares position and allele strings verbatim SpliceAI, dbNSFP

Both rules compare the same three things — position, REF, ALT. The setting does not change the shape of the key, and it does not change the first lookup: every plugin is probed with the parser-level (start, allele_string). What minimised adds is a second lookup on a miss, against the fully reduced key. exact plugins get one probe and stop.

Because the fallback is only consulted after a miss, minimised can add hits but can never change one the primary probe already found.

The two keys

A key is the pair (start, allele_string) — two separate shard columns, and two separate arguments to the probe. allele_string holds only REF/ALT ("A/T", "GT/-"); it never carries the position. Below, A/T @ 26032805 is shorthand for that pair, not for the string itself.

primary key (start, allele_string) fully reduced (fallback key)
Built by vcf_to_vep_input_allele() plugin_probe_allele()
Mirrors Ensembl's VCF → VariationFeature parse Ensembl's trim_sequences()
Trims prefix one base only, the VCF anchor the whole shared prefix
Trims suffix never the whole shared suffix
Applies to indels only; SNV/MNV untouched every variant class
Moves position +1 when the anchor is stripped +1 per prefix base; suffix never moves it
Empty side - -
Used by every plugin, always minimised plugins, and only after a miss

The same variants through both:

VCF record primary (start, allele_string) fully reduced differ?
100 A/G A/G @ 100 A/G @ 100 no
200 CA/C A/- @ 201 A/- @ 201 no
26032805 AAT/TAT AAT/TAT @ 26032805 A/T @ 26032805 yes
13973877 TTGTGTGTGTGTG/GTGTGTGTGTGTG unchanged @ 13973877 T/G @ 13973877 yes
26062230 AAC/ACAC AC/CAC @ 26062231 -/C @ 26062231 yes
13836148 CGTGTGT/CGTGT GTGTGT/GTGT @ 13836149 GT/- @ 13836153 yes

Which key each rule reaches for:

probes the primary key probes the fully reduced key
exact — SpliceAI, dbNSFP yes never
minimised — CADD, AlphaMissense, ClinVar yes only if the first missed and the two keys differ

The first two rows are the common case: the keys are identical, so minimised does a single lookup exactly like exact — it costs nothing on well-formed input. The rest are equal-length MNVs and bcftools norm -m -both leftovers, where the parser keeps a shared suffix it never trims. That is the class where the rule decides the answer.

Why MNVs dominate these examples

The parser suffix-trims indels only, never same-length substitutions. So an untrimmed MNV keeps its entire shared suffix in allele_string, and the reduced key is genuinely a different lookup.

A locus where both rules fire

chr21:26032805 AAT>TAT — a real HG002 record that bcftools norm -m -both left un-trimmed. It is really an A>T SNV: trimming the shared trailing AT gives A/T, and since nothing is trimmed from the front the position does not move.

Both plugins are probed with the same primary key and both miss; only the rule differs after that:

primary probe (26032805, AAT/TAT) fallback (26032805, A/T) emitted
CADDminimised miss hitCADD_PHRED=0.239, CADD_RAW=-0.380109 the scores
SpliceAIexact miss not attempted — a row does exist there (ds_ag=0.00, symbol=APP) nothing

Ensembl VEP 116 emits exactly this at that locus: CADD_PHRED=0.239, CADD_RAW=-0.380109, and empty SpliceAI fields.

That SpliceAI row is the point. The data is present and the reduced key would reach it — exact is what stops vepyr from claiming it, because Ensembl's SpliceAI.pm never reduces. Flipping SpliceAI to minimised turns loci like this one into annotations VEP does not emit — 68 of them on chr21.

ClinVar is minimised, despite being loaded with --custom ...,exact. The exact there names the overlap mode, not the allele rule — core still minimises the alleles first, then requires exact overlap. The golden VEP 116 reference settles it: chr1:65364614 GT>TT is annotated ClinVar=1258041, whose source record is the 1 bp SNV G>T at the same position. Reaching it from GT/TT needs the shared trailing T trimmed, so this is full trim_sequences() behaviour — a suffix trim, not just the narrower leading-anchor-base shift. A verbatim comparison would emit nothing, and a 1 bp feature could not have exactly overlapped the 2 bp unminimised variant either.

The distinction bites whenever a record is not in minimal form. bcftools norm -m -both splits a multi-allelic record without re-trimming its halves, so this is routine rather than exotic:

chr21:13973877  REF=TTGTGTGTGTGTG  ALT=GTGTGTGTGTGTG   # really just T>G
chr21:26062230  REF=AAC            ALT=ACAC            # really just an inserted C

CADD keys the first as T/G in its per-base file. Under minimised Ensembl reduces the variant and matches; under exact it would not. SpliceAI is also empty here, but for an unrelated reason — it carries no rows anywhere near chr21:13973877, since it only covers splice regions. For a locus where the rule is what separates the two, see the worked example above.

Trim order is load-bearing

trim_sequences() can trim prefix-first or suffix-first, and for a non-minimal indel the two orders land on different coordinates — and therefore different variants. Ensembl's VCF parser builds the VariationFeature prefix-first (left-first), so that is the only order that reproduces its output:

Reduction runs on the anchor-trimmed pair the VCF parser produces, not on the raw record — a leading base shared by REF and ALT is already gone, and the position already advanced, before any of this. Quoting a raw record against a post-trim coordinate is how you get an off-by-one:

chr21 VCF record parser hands over left-first (Ensembl) right-first
13836148 CGTGTGT/CGTGT 13836149 GTGTGT/GTGT GT/- at 13836153 — no row there, so empty, as VEP reports GT/- at 13836149 — a different variant's score
26062230 AAC/ACAC 26062231 AC/CAC -/C at 26062231 — the row VEP reports same

Only the prefix loop moves the coordinate; the suffix loop trims bases without touching it. That is the whole reason the two orders disagree: trimming the suffix first consumes bases the prefix loop would otherwise have consumed while advancing start, so the position ends up short.

Getting this backwards is silent and produces confident wrong answers: on chr21 a right-first reduction invented 5,288 CADD scores VEP does not emit, and regressed ClinVar and SpliceAI from clean.

Never set minimised to gain hits

Reducing alleles for an exact plugin produces annotations Ensembl does not emit — SpliceAI gained 68 spurious hits on chr21 that way. The setting is a statement about what upstream does, not a tuning knob.

To decide the setting for a new plugin, read its .pm: if run() calls get_matched_variant_alleles, use minimised; if it compares $vf->{start} and the allele strings with ==/eq, use exact.

Ensembl's fetch window

get_matched_variant_alleles is not the whole story upstream. CADD.pm first fetches [VF.start - 2, VF.end] from the tabix file, so a row whose file position falls outside that window is never even considered — which is why VEP reports nothing for CGTGTGT/CGTGT even though a GT/- row exists nearby. Left-first reduction happens to land outside that row's reach too, so vepyr agrees without emulating the window; if a future mismatch traces back here, this is the mechanism to check.

Example: AlphaMissense (per-transcript)

plugin_name       = "alphamissense"
coordinate_system = "1-based"
ingest_sql = """
SELECT chrom,
       CAST(pos AS INT) AS start,
       CAST(pos AS INT) AS end,
       concat(ref, '/', alt) AS allele_string,
       protein_variant AS protein_variant,
       CAST(am_pathogenicity AS FLOAT) AS am_pathogenicity,
       am_class AS am_class
FROM plugin_alphamissense_src
"""

[[source]]
provider = "tsv"
path = "AlphaMissense_hg38.tsv.gz"
  [source.csv]
  delimiter   = "\t"
  has_header  = false
  comment     = "#"
  compression = "gzip"
  schema = [
    { name = "chrom",            type = "Utf8" },
    { name = "pos",              type = "Utf8" },
    { name = "ref",              type = "Utf8" },
    { name = "alt",              type = "Utf8" },
    { name = "genome",           type = "Utf8" },
    { name = "uniprot_id",       type = "Utf8" },
    { name = "transcript_id",    type = "Utf8" },
    { name = "protein_variant",  type = "Utf8" },
    { name = "am_pathogenicity", type = "Utf8" },
    { name = "am_class",         type = "Utf8" },
  ]

[[match_column]]
column   = "protein_variant"
template = "{ref_aa}{Protein_position}{alt_aa}"

[[value_columns]]
column = "am_class"
csq_field = "am_class"
type = "Utf8"

[[value_columns]]
column = "am_pathogenicity"
csq_field = "am_pathogenicity"
type = "Float32"

Example: a per-variant plugin (no discriminator)

plugin_name       = "demo_score"
coordinate_system = "1-based"
ingest_sql = """
SELECT chrom, CAST(pos AS INT) AS start, CAST(pos AS INT) AS end,
       concat(ref, '/', alt) AS allele_string, CAST(score AS FLOAT) AS demo_score
FROM plugin_demo_score_src
"""

[[source]]
provider = "tsv"
path = "demo.tsv.gz"
  [source.csv]
  delimiter = "\t"
  has_header = false
  compression = "gzip"
  schema = [
    { name = "chrom", type = "Utf8" }, { name = "pos", type = "Utf8" },
    { name = "ref", type = "Utf8" }, { name = "alt", type = "Utf8" },
    { name = "score", type = "Utf8" },
  ]

[[value_columns]]
column = "demo_score"
csq_field = "DEMO_SCORE"
type = "Float32"

Engine-attribute namespace

A [[match_column]].template may reference these per-consequence attributes (the values the transcript engine computes for CSQ output). Each is optional: if any attribute a template references is absent, the discriminator is empty and the plugin emits no value for that transcript line — this is how missense-only gating works (a non-missense consequence has no amino-acid change).

Attribute Description
Consequence Consequence type(s) for the transcript (e.g. missense_variant).
Gene Ensembl gene stable ID.
SYMBOL Gene symbol (e.g. APP) — SpliceAI's discriminator.
Feature_type Feature type (e.g. Transcript).
Feature Transcript stable ID — the transcript-id discriminator (e.g. dbNSFP).
BIOTYPE Transcript biotype (e.g. protein_coding).
HGVSc HGVS coding-sequence notation.
HGVSp HGVS protein notation.
cDNA_position Position in cDNA.
CDS_position Position in the CDS.
Protein_position 1-based amino-acid position.
Amino_acids Reference/alternate amino acids as ref/alt (e.g. W/R); single value when unchanged.
Codons Reference/alternate codons.
ref_aa Reference amino acid (left of / in Amino_acids).
alt_aa Alternate amino acid (right of / in Amino_acids).
ref VCF reference allele.
alt VCF alternate allele.

Examples: AlphaMissense (amino-acid change) template = "{ref_aa}{Protein_position}{alt_aa}"W320R; a transcript-keyed plugin template = "{Feature}".

A new attribute is added upstream only when a plugin needs a value not already listed here — the common discriminators are all present, so most plugins are manifest-only.

Cache format & lookup internals

A plugin cache is a set of per-chromosome Parquet shards (plugin/<name>/chr*.parquet) plus a manifest.json. The shards use the same point-lookup-optimized layout as the Ensembl variation cache, so a lookup reads only the handful of pages that could contain the queried positions — never the whole file.

Shard schema

Columns, in order: the key columns chrom (Utf8), start / end (UInt32, 1-based), allele_string (Utf8, ref/alt); then any match-discriminator column(s) (e.g. protein_variant); then the value columns (the CSQ fields); then a derived tier column (Int8: 0 = warm, 1 = cold). The variation frequency columns used to compute the tier are not stored — only the tier survives.

Every cache — the Ensembl variation/transcript/… entities and the custom plugin caches — uses the same point-lookup-optimized Parquet layout, so a lookup reads only the handful of pages that could contain the queried positions rather than scanning the whole file.

Parquet storage

The writer properties are tuned for random point lookups, not scans:

Property Value Why
Compression ZSTD, level 3 Good ratio; fast enough to decode per page.
Dictionary encoding disabled Avoids a per-take dictionary load; ZSTD recovers the ratio (the no-dict file is actually smaller).
Data page size ≤ 4 KiB Small pages → fine-grained page index → a lookup touches minimal bytes.
Data page row count ≤ 512 rows Bounds how many rows a single page decode yields.
Statistics Page-level Emits ColumnIndex + OffsetIndex in the footer — the read-side position→page directory.
Row group size 1,000,000 rows Large groups keep footer/metadata overhead low; the page index gives intra-group resolution.
Sorting columns (tier, start) Physical clustering — see Sorting within a shard.

Sorting within a shard

Rows within each shard are physically sorted by (tier, start) and written in that order, and the sort is recorded in the Parquet SortingColumn metadata:

  1. By tier first — all warm rows (tier 0) are written before all cold rows (tier 1). This clusters common variants into a contiguous run of pages, so a buffer of common-variant lookups touches a small, dense region instead of pages scattered across the file.
  2. By start within each tier — each tier's run is ascending by genomic start. Ascending, non-overlapping start ranges per page are what make the ColumnIndex (per-page min/max of start) an effective pruning directory: resolving a query position to its candidate page(s) is a binary-search-like metadata lookup, and coalescing adjacent pages into one read is cheap.

Because the file is split into a warm block then a cold block (each independently start-sorted), a single start value can appear in both blocks; the lookup resolves candidate pages across both. Writing warm-first keeps the hot working set contiguous — the whole point of the tier.

Page index → the PageDir

Since page-level statistics are enabled, each shard's footer carries a ColumnIndex (per-page min/max of start) and an OffsetIndex (per-page byte offset + row range). At open time the reader builds a PageDir over the start leaf column from these indexes. Resolving a set of query positions to the minimal set of candidate page row-ranges is then a metadata-only operation — no column data is read until the ranges are known.

Row groups

Shards use 1,000,000-row row groups. Row groups bound the footer metadata size; within a group the small (≤ 512-row) pages plus the page index provide the actual point-lookup resolution. A whole chromosome is typically one or a few row groups.

Runtime lookup — async reader + monotonic cursor, in batches

Annotation runs in position-ordered buffers. For each buffer the runtime does one page-scoped, three-phase take per shard, reading only that buffer's candidate pages:

  1. Resolve — the buffer's sorted, de-duplicated start positions are mapped through the PageDir to candidate page row-ranges. Metadata only; no data read.
  2. Locate — a start-only projected read over just those pages (a RowSelection built from the ranges) streams start values back in batches through a CoalescingAsyncReader — an async Parquet reader that merges nearby page byte-ranges (within a 512 KiB gap) into single I/O calls. A monotonic row-offset cursor advances exactly one step per streamed row, staying in lockstep with the selection, and records the exact file offset of every row whose start is in the buffer's probe set. The cursor only moves forward, so there is no back-seeking.
  3. Take — a final projected read at those exact offsets pulls just the payload columns for the matched rows into one compact RecordBatch.

Tiering — how warm/cold is calculated

Tiering clusters common variants together on disk so a batch of nearby query positions touches fewer, denser pages. The tier is inherited from the Ensembl variation cache, not recomputed per plugin:

  • The variation cache marks a genomic start warm (tier 0) when its maximum global allele frequency is ≥ 0.01 (WARM_AF_THRESHOLD), within a ±1 position radius (WARM_POSITION_RADIUS); otherwise cold (tier 1).
  • At build time the plugin rows are LEFT JOIN-ed onto the variation shard on (chrom, start, allele_string) and take COALESCE(v.tier, 1) — i.e. a plugin row inherits the variation record's tier, and any position with no variation match is cold. (Saturation predictors like AlphaMissense are therefore almost entirely cold, since most possible substitutions are not common variants.)
  • The shard is written warm rows first, then cold, each pass sorted by start, matching the (tier, start) physical sort.

Plugins declare no tier policy of their own — there is no [tier] block in the manifest.

Build pipeline — table providers, tables & views

The per-chromosome build registers the raw source and then transforms it through a short chain of SQL objects:

  1. Table — the raw source file is registered as a DataFusion table plugin_<name>_src (or plugin_<name>_src_<part> for multi-file sources) via the matching provider (below).
  2. Ingest viewplugin_<name>_ingest, a CREATE OR REPLACE VIEW wrapping the manifest's ingest_sql (maps raw columns → the key/discriminator/value columns).
  3. Normalized viewplugin_<name>_norm, which applies the canonical_contig UDF and the coordinate shift (to the variation cache's 1-based convention) and filters to the target chromosome.
  4. The normalized view is tier-joined against the variation shard and the result is written to the Parquet shard.

Table providers ([[source]].provider):

Provider Notes
csv Built-in DataFusion CSV reader.
tsv CSV reader with tab delimiter. gzip inputs are decompressed to a temp file first (DataFusion is built without the compression feature, so register_csv can't read .gz directly).
parquet Built-in DataFusion Parquet reader.
vcf VcfTableProvider from bio-formats. Every INFO field the header declares is exposed and ingest_sql projects down to what it needs; set record_layout on the source to carry the raw record through.
bed BedTableProvider from bio-formats, BED4 only — chrom, start, end, name, whatever the file's variant.

All five are implemented. vcf and bed take their zero/one-based interpretation from the manifest's coordinate_system rather than the file's own convention, so ingest_sql always sees the system the manifest declares.

Supported plugins

All five plugins below are implemented and validated against the golden Ensembl VEP 116 reference. Four have a prebuilt cache published on Hugging Face — see Plugin caches for the download commands.

Plugin CSQ fields Discriminator Allele match Prebuilt cache Source
CADD v1.7 2 — (per variant) minimised …plugin_cadd cadd.gs.washington.edu
SpliceAI 9 {SYMBOL} exact …plugin_spliceai Illumina/SpliceAI
AlphaMissense 2 {ref_aa}{Protein_position}{alt_aa} minimised …plugin_alphamissense Zenodo
ClinVar 6 — (per variant) minimised …plugin_clinvar ncbi.nlm.nih.gov/clinvar
dbNSFP 19 {ref_aa}/{alt_aa} exact not published — build locally dbNSFP

The CSQ fields each plugin emits, in emitted order:

Plugin Fields
CADD CADD_PHRED, CADD_RAW
SpliceAI SpliceAI_pred_DP_AG, SpliceAI_pred_DP_AL, SpliceAI_pred_DP_DG, SpliceAI_pred_DP_DL, SpliceAI_pred_DS_AG, SpliceAI_pred_DS_AL, SpliceAI_pred_DS_DG, SpliceAI_pred_DS_DL, SpliceAI_pred_SYMBOL
AlphaMissense am_class, am_pathogenicity
ClinVar ClinVar, ClinVar_CLNSIG, ClinVar_CLNREVSTAT, ClinVar_CLNDN, ClinVar_CLNVC, ClinVar_CLNVI
dbNSFP CADD_phred, CADD_raw, GERP++_RS, MetaLR_pred, MetaLR_score, MetaSVM_pred, MetaSVM_score, MutationTaster_pred, MutationTaster_score, PROVEAN_pred, PROVEAN_score, Polyphen2_HDIV_score, Polyphen2_HVAR_score, REVEL_score, SIFT4G_pred, SIFT4G_score, VEST4_score, phastCons100way_vertebrate, phyloP100way_vertebrate

Emitted order is not manifest order

A manifest's field_order decides this, and it is not the order the [[value_columns]] happen to be written in:

field_order Emits Mirrors
declared (default) manifest declaration order Ensembl --custom
alphabetical sorted by CSQ field name Ensembl --plugin

Four of the five are alphabetical, because Ensembl loads them with --plugin. ClinVar is declared, because it is loaded with --custom — which is why it is the one plugin whose emitted order matches how its manifest reads. dbNSFP carries its own CADD_phred/CADD_raw, distinct from the CADD plugin's upper-case CADD_PHRED/CADD_RAW.

dbNSFP is supported but cannot be mirrored

The dbNSFP licence permits academic use of the data but not redistribution of a converted copy, so no prebuilt cache is published. Register for and download the source yourself, then build the cache with build_plugin_cache as above — the manifest in vepyr-plugins is public.

Licence terms differ per plugin

CADD, SpliceAI and AlphaMissense restrict use to academic / non-profit research; commercial use needs a licence from the respective provider. ClinVar is unrestricted (NCBI public domain). Each Hugging Face dataset card carries the specific terms.