ferro-hgvs
A high-performance HGVS variant nomenclature parser and normalizer written in Rust.
WARNING: ALPHA SOFTWARE - USE AT YOUR OWN RISK
This software is currently in ALPHA. While we have extensively tested it across a wide variety of HGVS patterns, no guarantees are made regarding correctness or stability.
Features
- Full HGVS Parsing: All coordinate systems (g/c/n/r/p/m/o) and edit types
- Variant Normalization: 3' shifting per HGVS specification
- High Performance: ~5M variants/sec single-threaded parsing (>12M/s parallel), zero-copy with nom
- Type-Safe: Leverages Rust's type system for correctness
Installation
Python
pip install ferro-hgvs
Pre-built wheels are available for Linux (x86_64, aarch64), macOS (x86_64, Apple Silicon), and Windows (x86_64) on Python 3.10+.
Rust
Add to your Cargo.toml:
[dependencies]
ferro-hgvs = "0.1"
Or install the CLI:
cargo install ferro-hgvs
Quick Start
CLI
# Parse a variant
ferro parse "NM_000088.3:c.459A>G"
# Parse from file
ferro parse -i variants.txt -f json
# Prepare reference data (downloads RefSeq, genome, cdot — RefSeq-only by default)
ferro prepare --output-dir ferro-reference
# Verify reference data is ready
ferro check --reference ferro-reference
# (Optional) pre-build the on-disk cdot cache as a setup step, so the one-time
# cache build doesn't slow the start of a real (or timed/benchmarked) run.
ferro check --reference ferro-reference --build-cache
# Normalize with reference
ferro normalize "NM_000088.3:c.459del" --reference ferro-reference/
Read the warnings. Normalization sometimes repairs a description in a way the normalized string does not record — separately reported cis members merged into one
delins(MEMBERS_COALESCED_FROM_REPORTED_FORM), ains[100_110]reference-range payload replaced by the bases it denotes (INSERTED_SEQUENCE_EXPANDED), a stated reference base that contradicted the reference and was accepted anyway (REFSEQ_MISMATCH). Those are reported aswarning[CODE]: messageon stderr (and in thewarningsarray under--format json, thedetailcolumn under--format tsv), so a pipeline reading only stdout will not see them.--error-mode strictis not a substitute: it rejects a specific ladder of conditions and reports the rest exactly as lenient does.
Throughput tip: when normalizing many variants, feed them sorted by transcript accession (or by genomic position). ferro caches each resolved transcript, so consecutive variants on the same transcript skip the (dominant) cost of re-reading and re-building it from the reference. Sorted input keeps the relevant transcripts resident in the cache and is markedly faster on large batches — see Performance Comparison.
Optional reference data
A bare ferro prepare builds a RefSeq-only reference (accessions NM_/NR_/NP_/NG_). Two opt-in flags provision additional data — pass them at prepare time; they are what a fully-provisioned ("blessed") reference is built with:
# Add Ensembl support (accessions ENST/ENSG/ENSP). Downloads the Ensembl cdot
# metadata and cDNA FASTAs (~1 GB+); off by default. Without it, an ENST/ENSG/ENSP
# input reports "Reference not found" and the message points back at this flag.
ferro prepare --output-dir ferro-reference --ensembl
# Derive version-independent NG_ placements and the NG_→transcript-version map
# (ng_hosted_transcripts) for a curated list of RefSeqGene accessions. Required to
# resolve legacy gene-symbol selectors (NG_(GENE):c.…) and bare-NG_ hosted lookups.
ferro prepare --output-dir ferro-reference \
--derive-ng-placements path/to/ng_accessions.txt
# A fully-provisioned reference combines both in one run:
ferro prepare --output-dir ferro-reference --ensembl \
--derive-ng-placements path/to/ng_accessions.txt
Both flags are incremental: re-running ferro prepare over an existing reference adds the requested data and preserves already-provisioned artifacts.
Library
use ferro_hgvs::{parse_hgvs, HgvsVariant};
fn main() -> Result<(), ferro_hgvs::FerroError> {
let variant = parse_hgvs("NM_000088.3:c.459A>G")?;
match &variant {
HgvsVariant::Cds(v) => println!("CDS variant: {}", v),
HgvsVariant::Genome(v) => println!("Genomic variant: {}", v),
_ => println!("Other: {}", variant),
}
Ok(())
}
Python
import ferro_hgvs
# Parse a variant
variant = ferro_hgvs.parse("NM_000088.3:c.459A>G")
print(variant.variant_type) # "coding"
print(variant.reference) # "NM_000088.3"
print(str(variant)) # "NM_000088.3:c.459A>G"
# Normalize with reference data
normalizer = ferro_hgvs.Normalizer(reference_json="ferro-reference/cdot.json")
normalized = normalizer.normalize("NM_000088.3:c.459del")
# `normalize` returns only the string, so it cannot tell you that normalization
# repaired something. `normalize_with_warnings` returns the same string plus the
# diagnostics — as a free function, or as a Normalizer method.
result = normalizer.normalize_with_warnings("NM_000088.3:c.459del")
print(str(result.result)) # the same normalized string
print([(w.code, w.message) for w in result.warnings])
Normalization rules
ferro's normalizer follows four rules about its output, and three about how it handles the gaps.
The output contract
-
Conformant. Output follows the HGVS recommendations. Absolute — never traded. Scope: the
syntax.yamlgrammar, plus every prohibition, read from prose force rather than keyword casing — "not allowed", "not correct", "can not be used", "by definition", theclass="invalid"markup, and the setchecklist.mdenumerates. -
Recommended form. Where the spec prefers among conformant forms, ferro produces it. Best effort. Scope: "recommended", "preferred", lowercase "should", the 3' rule. A preference clause outranks maintainer judgment, but not rule 3: where it is not evaluable on what a normalizer holds, rule 3 governs.
-
Confluent. Inputs denoting one variant produce one output. Best effort. Every rule — rule 2 included — is evaluated over the resulting sequence, never over the input's spelling. Reference context counts as sequence: transcript model, exon boundaries, reading frame, strand and topology are functions of the accession, not of the description.
-
Deterministic. Same input, same output. Absolute. Note that 4 does not imply 3 — a deterministic normalizer can be arbitrarily non-confluent.
The procedure
-
Where the spec is silent, ambiguous, or self-contradictory: the issue is filed upstream first and cited, and only then does ferro ship a provisional choice.
- Self-contradictory — two clauses that cannot both hold — is a defect. Every conforming tool must pick a side and none of them can be right, so filing is a bug report and is not optional.
- Silent is merely incomplete. Ferro decides under rule 6 and violates nothing; filing is a feature request, worth making but never a reason to hold a release.
-
Among multiple conformant forms: the maintainers choose. There are no user options for normalization form. Error mode is an orthogonal axis and stays available. The 3'/5' shuffle direction was the one exception, and it is now removed from the public surface rather than excused: it is not orthogonal — it selects the frame every rule is evaluated in — so it was a user option for normalization form sitting inside this rule. ferro shifts 3', the only direction the HGVS recommendations describe, and no CLI flag, Python keyword or service config key selects otherwise. The 5' arm survives internally as a differential oracle over ferro's own test suite; an instrument is not a user option, and rules 2 and 3 are now claimed once rather than per direction.
-
Disclosure. Any change to these rules, and any different choice made under 5 or 6, is disclosed: in the changelog before v1, by a major version bump after. Output that violates rules 1-4 is a bug, not a disclosure.
Why 2 and 3 are best effort, and 1 and 4 are not
Rules 1 and 4 are always achievable. Conformance is checkable against the spec text, and determinism is a property of ferro's own code; nothing external can prevent us honouring them.
Rules 2 and 3 depend on the spec determining an answer, and sometimes it does not:
- No preference exists. The spec ranks substitution, deletion, inversion, duplication and
insertion, but says nothing about competing
delinsforms. - Two preferences disagree.
general.mdranks duplication above insertion;DNA/inversion.mdprefers an insertion for inverted copies. No single output satisfies both. - The same clause has two versions.
general.md's current text and its forthcoming NOTE give opposite answers for variants separated by one nucleotide. - The variant's decomposition is not recoverable. Recovering one means choosing an alignment,
and the spec does not say which, so there is no derivable form to converge on. Block length does
not settle it: an equal-length block can still carry a balanced del+ins pair, so its column
correspondence need not be unique —
CAG -> AGAis equal length with edit distance 2, not the position-wise 3. What decides whether a reference base is unchanged is whether every minimal alignment matches it, so the property to key on is edit distance against block length, never length alone. Seerulings[unchanged-is-read-over-every-minimal-alignment]. - The preference keys on information a normalizer does not hold. A "frequently occurring
variant" (
RNA/delins.md:41); a repeat "variable in the population" (RNA/repeated.md:33,protein/repeated.md:22); two variants "reported (or might occur) individually" (DNA/delins.md:83). The spec determines an answer; ferro cannot see what it keys on.
"Best effort" is bounded by the spec's determinacy and by what a normalizer's inputs can decide — not by ferro's implementation quality. A failure of rule 2 or 3 caused by ferro's code is a bug under rule 7; one caused by the spec not determining an answer triggers rule 5; one caused by a clause keying on provenance or population data is a declared deviation, and a permanent one — no upstream answer can put that information into a normalizer's hands.
Permanent is the only thing the last case adds, and it does not exempt the question from rule
5. The grain matters, because the two grains give opposite answers. Read on its own, such a
clause is not silent, ambiguous or self-contradictory — it determines an answer perfectly well, and
ferro is the one that cannot see what the answer keys on. Read against the spec's own
re-derivation mandate — general.md:157-160, which has a protein description derived by
comparing the variant and reference protein sequences and says knowledge of the underlying DNA
change "should not be used", with general.md:13 extending the method to RNA — it is one half of a
pair that cannot both hold. That is rule 5's self-contradiction limb exactly, and the ruling ledger
says so in those words. What the carve-out states is that rule 5's escalation cannot end
the matter here: a choice made under rule 5 is provisional pending an upstream ruling, and no
ruling upstream makes provenance visible, so the deviation outlives the filing.
Where it is recorded is worth stating precisely, because the obvious pointer does not resolve.
canonical-form-choice-when-both-legal has no deviates_from field: it carries all four
clauses in its rationale as the recorded counter-evidence to re-derivation, opens that paragraph
with "The spec contradicts itself here", and adopts re-derivation over them deliberately. The one
of the four that is recorded as a deviation is DNA/delins.md:83, through the
deviates_from: ["docs/recommendations/DNA/delins.md:79-84"] on
separation-is-a-property-of-the-spelling-not-of-the-variant — the record whose ruling the rule 3
example below turns on.
A worked example of reading force from prose
DNA/duplication.md says a variant that can be described as a duplication must be — but the
"must" is scoped by the preceding clause, which defines when a duplication can be used at all:
only when the additional copy is directly 3'-flanking the original. So the rule ranks the label
for one span; it does not require that a partition be chosen so as to produce a duplication.
Reading the force without the scope inverts the rule.
What rule 3 excludes
"Never over the input's spelling" is narrower than it sounds. Most of a description is context.
| Carried by the description | Treatment |
|---|---|
Accession, axis (g./c./n.), version |
Used — it is the reference context |
| Which bases end up different | Used — this is the variant |
Cis against trans ([a;b] against [a];[b]) |
Used — different variants, not two spellings of one |
Type label (dup against ins, inv against delins) |
Re-derived, then ranked by general.md |
| How the edit set is cut into members | Excluded — a property of who wrote the string |
| Which copy in a run of identical residues a member names | Excluded — the 3' rule assigns this "arbitrarily" (general.md:41) |
| Repeat unit and phase, where several are equivalent | Excluded |
So three rows read Excluded, and they are three spellings of the one thing the input does not get to decide: the partition, the run-position choice that feeds it, and — where several unit-and-phase pairs describe one tract equally well — which pair a repeat member names.
NC_000001.11:g.1001002_1001016 reads ATGAGGGGCCACTGT: a GGGG run at 1001006-1001009, a CC
run at 1001010-1001011, a lone C at 1001013. Two spellings, one denoted sequence
(ATGAGGGCATGT), because 1001010 and 1001011 are both C:
g.[1001009del;1001010del;1001013del] written gaps of 0 and 2
g.[1001009del;1001011del;1001013del] written gaps of 1 and 1
general.md:34's "two variants separated by one or more nucleotides should be described individually"
reads those gaps, so it answers twice for one variant. Rule 3 reads them off the partition ferro
derives instead: both give g.[1001009_1001010del;1001013del]. Rule 2 then keeps that over the
spanning g.1001009_1001013delinsCA, which merges across two unchanged nucleotides. Pinned in
tests/it/cis_confluence_adjudication.rs.
Known limitation
ferro cannot today guarantee that every input form is normalized according to these rules. They are enforced intent, not a claim of current completeness.
Rule 7's disclosure mechanism — the Representation-Change: trailer and how it reaches the
changelog — is documented in
CONTRIBUTING.md.
Where the individual decisions live
Rules 5 and 6 above say how a question is decided where the recommendations are silent, ambiguous or self-contradictory. What was decided, case by case, is recorded separately, as adjudication records — each naming the clauses in tension, which one governs, which is deviated from, and why. Those records are published in full, with their clause quotes, in docs/NORMALIZATION_CONTRACT.md.
That document is generated from the records and gated against them, so it cannot drift; it deliberately does not restate the seven rules above, which are stated only here.
The inverse index — for each stage of the normalizer, which record or clause governs it, and which decisions are governed by nothing — is docs/NORMALIZATION_STAGE_AUDIT.md. Read that one if what you want to know is whether a behaviour you are looking at was chosen or merely happened.
Deriving a description from sequences
If what you have is bases rather than a description — a window out of a BAM, a VCF row, an
aligner's output — from_sequences derives the description instead of asking you to spell one:
import ferro_hgvs
ferro_hgvs.from_sequences("NC_000001.11", 1000, "AGCGT", "AGT")
# NC_000001.11:g.1002_1003del
use ferro_hgvs::{from_sequences, FromSequencesOptions};
let variant = from_sequences("NC_000001.11", 1000, "AGCGT", "AGT",
&FromSequencesOptions::default())?;
The axis follows the accession: g., or m. on NC_012920 / NC_001807, which HGVS requires the
m. coordinate system for. Every other accession class — transcript, protein, UniProt — is refused
with a message naming it.
It reads no reference sequence. The output is a pure function of its arguments — the
accession, the position, the two sequences and the options — so the same bases give the same
description on any machine, against any reference build, with no hidden input. position is
1-based, and reference is taken on trust: verifying it would need the reference and would make
the provider a hidden input, costing exactly the determinism the function exists to provide.
That is five values, not four. max_grid_cells is not inert — it decides whether an answer is
produced at all — so the "four arguments" this section and the Rust docs both used to claim is
withdrawn. Purity is the property; the count was wrong. (FromSequencesOptions carries a
direction too, but it is not a caller-facing knob: it is #[doc(hidden)], always 3' on every
shipped path, and exists for the internal differential oracle described under rule 6.)
How to: one canonical description per variant
The job this exists for — a pipeline that aligns reads, post-processes a BAM, and wants one description per variant, decided by the observed bases and nothing else.
1. Get a window. From a pileup, a VCF row, or an aligner's output: the reference bases over
some interval, the observed bases over the same interval, and the 1-based position of the window's
first base. If what you hold is a description rather than bases, Normalizer::to_sequences
produces the same window — see Going the other way.
2. Derive, and read the flag.
d = ferro_hgvs.from_sequences_detailed("NC_000001.11", 1000, "AGCGT", "AGT")
d.variant # NC_000001.11:g.1002_1003del
d.placement_bounded_by_window # False — the bases settled the placement, not the window
# The same variant, read through a window that stops at it:
d = ferro_hgvs.from_sequences_detailed("NC_000001.11", 1000, "AGCG", "AG")
d.variant # NC_000001.11:g.1002_1003del — the same answer
d.placement_bounded_by_window # True — the deletion is flush with the window's 3' edge
The two rows are the flag's whole meaning: same description, different confidence that a wider
read would agree. The first window has a base to spare 3' of the deletion, so the placement is
settled by the bases; the second ends exactly where the deletion does, so the flag fires even
though the answer is unchanged. This example used to show only the second window while claiming
False, which inverted both the value and its explanation.
Prefer from_sequences_detailed to from_sequences in a pipeline. The flag is the only thing that
tells you the window may have decided the answer, and a bare from_sequences discards it.
3. Store it, or normalize first. What you have is already conformant (rule 1) and deterministic
(rule 4), so it is safe to store and to compare between runs and between machines. It is not
necessarily the recommended form, and it is not guaranteed to agree with a description derived from
a different window — those are rules 2 and 3, and both need the reference. If you want them, run
normalize on the result. That is the whole offer: derive now, normalize later, or never.
4. If the flag is set and you need the reference-anchored answer, either re-derive from a wider
window or run normalize. Do not treat a flagged result as wrong — see below.
How wide should the window be?
Wide enough to contain the whole interval over which the change could legally be placed. That is the exact condition, and it is what the cost section pins.
Operationally: pad on both sides by at least the length of the longest ambiguous run — a
homopolymer or tandem repeat — the variant might sit in. An insertion or duplication needs one
further base 5', since that is where a 5'-most insertion anchors. to_sequences pads by 128 on
each side, so its window is span + 2 * pad; that covers ordinary repeats comfortably, and is
worth raising if you work with long tracts.
Two things follow that are easy to get backwards:
- A window that cuts the interval does not give a wrong answer, it gives a bounded one. The description still denotes the same bases and carries the same canonical SPDI; it is simply placed at the window's edge rather than the run's. What you lose is the preferred spelling, not correctness.
placement_bounded_by_windowis conservative on purpose. It reports "this could have moved", not "this is wrong" — a window flush with a tract is flagged and is nonetheless the same answer a whole-sequence derivation gives. Distinguishing the two needs the reference, which this function does not read.
The refusals, and what to do about each
The policy is to refuse rather than quietly answer with a weaker rule, so each of these is actionable rather than fatal:
| refusal | why | what to do |
|---|---|---|
| the accession is not genomic | this surface emits g. (and m. on the two rCRS mitochondrial accessions) and nothing else; NM_…:g.9_10del would be well-formed and denote nothing |
pass the genomic accession, and project afterwards if you need a transcript axis |
| an inserted payload sits against the window's 5' edge | HGVS writes an insertion between two positions, so it would have to anchor at position - 1 — outside the window |
re-fetch with more 5' flank. How much is direction-dependent, so widen rather than adding a fixed one base |
the alignment grid exceeds max_grid_cells |
a cost bound — a cell is roughly 18 bytes, and the default admits a window of about 4 096 bases | raise max_grid_cells if you have the memory, or narrow the window. Real structural alleles are far past any sane budget: LRG_542:g.[101177_102434delins36;107248_127198delins21] spans 26 kb |
a symbol outside the IUPAC-IUBMB set, a zero position, an empty reference |
the input cannot denote anything | fix the input. X and - are refused deliberately (standards.md:39) — they are alignment symbols, not bases |
U in either sequence |
this surface's axis is DNA; a g./m. description naming U would be well-formed and wrong |
pass T, and project onto an r. axis afterwards if you need RNA |
Case is not a refusal: a soft-masked (lower-case) window derives exactly as its upper-case twin does, and both sequences are folded before anything reads them.
Which rules it delivers
This is the whole design, and it falls straight out of the four rules above:
| rules delivered | force | needs | |
|---|---|---|---|
from_sequences |
1 (conformant), 4 (deterministic) | both absolute | the caller's four arguments |
normalize, afterwards |
2 (recommended form), 3 (confluent) | both best effort | the reference |
Rules 1 and 4 are the two the section above calls always achievable, so a function that has only the caller's arguments can still deliver both in full. Rules 2 and 3 need the reference: rule 2's scope names the 3' rule explicitly, and a reference-anchored shift is precisely what a window-local function cannot perform.
So an output may be 3'-shiftable further than the window allowed, and that is not a defect.
Run normalize afterwards if you want it — Normalizer::from_sequences(..., normalize = true)
does both in one call.
Run it unless you have a reason not to. Over a 6,000-shape sweep, normalize moved 8.6% of
derived descriptions — in three classes: repeat notation (g.27_28insAAA → g.27A[4]),
reference-anchored member re-derivation, and an inversion spread across several members
(g.[17C>A;19T>A;21T>G] → g.17_21inv, which the alignment DAG partitions before anything can see
it, since it minimises edit distance and an inversion is not in that cost model). All three are
rule 2 and rule 3 — the recommended form and agreement with a wider view — which is exactly the
pair this design assigns to normalize. Rules 1 and 4 hold either way.
That figure is a claim about that sweep, not about the world: one synthetic contig, six shape generators, genomic axis only.
What you get for it
Two spellings of one variant, over one window, reach one description — because the derivation
never sees a spelling. Over the cis confluence corpus that is 5 636 classes with no divergence —
its genomic half, and all of what this surface can reach: the corpus is generated --axes g,c
at 11 272 classes, and the 5 636 c. classes are drawn against NM_TEST.1, which the g.-only
gate refuses, so not one of them enters the comparison. The exclusion is structural and is asserted
as such in tests/it/from_sequences_corpus.rs.
Over the nine externally-reported confluence pairs (#1419 / #1420 / #1421) it is nine of nine, in
both shuffle directions — where normalize, handed the same pairs as descriptions, currently
converges none of them.
Read "over one window" as load-bearing, not as hedging. It is what makes the claim arithmetic:
to_sequences computes its window from the denoted bases, so both spellings of a variant get
byte-identical (position, reference, alternate) triples, and a pure function of that triple can
only give one answer. It is also the exact limit — the claim is confluence over spellings, and
rule 3's scope is confluence over inputs. Two reads covering one variant differently are two
inputs, and the section below is what happens then.
Read the comparison with normalize as two functions answering different questions rather than as
one beating the other. A caller who has a description and wants it normalized still needs
normalize to converge; the pairs are simply the case where being handed a description is itself
the problem.
The cost, stated plainly
A window-local derivation is read-dependent. Nothing may shift outside the bases you supplied,
so a read that stops partway through an ambiguous run places the change at the end of the read
rather than the end of the run. One deletion from the AAAA at 12–15 of a test contig, seen
through three windows:
| window | reference | alternate | derived | placement_bounded_by_window |
|---|---|---|---|---|
| 10–16 | GCAAAAG |
GCAAAG |
g.15del |
false |
| 12–15 | AAAA |
AAA |
g.15del |
true |
| 10–14 | GCAAA |
GCAA |
g.14del |
true |
None of these is wrong. All three carry the same canonical SPDI (14:A:) and denote the same
bases — g.14del is a conformant description of exactly the same variant, it is simply not the
3'-most spelling. So what a truncating read costs you is the recommended form (rule 2) and
agreement with a wider read (rule 3): precisely the two rules this function never claimed,
because both need the reference. Rules 1 and 4 hold in every row. normalize closes the gap,
shifting to 15 regardless of what the read covered.
The boundary is exact, and pinned in tests/it/from_sequences_window_condition.rs:
Two windows that both contain the whole interval over which the change can be placed derive the same description. A window that cuts that interval places the change at its own edge instead.
Note that for an insertion or duplication that interval already reaches one base 5' of the tract, since that is where a 5'-most insertion anchors — so "contains the interval" subsumes the flank requirement rather than needing a separate clause.
placement_bounded_by_window is a "could move" flag, not a "is wrong" flag, and it is
conservative in that direction on purpose. Row 2 is flagged and already correct; row 3 is flagged
and merely non-preferred. Telling those apart requires knowing what lies outside the window — the
reference — which this function does not read, so it reports the uncertainty rather than resolving
it. Treat a true as "re-derive from a wider window, or run normalize, if you need a
reference-anchored answer".
Two refusals are worth knowing about in advance, both deliberate — the policy is to refuse rather than degrade to a weaker rule:
-
An alignment grid over budget. The default admits a window of about 4 096 bases; a cell costs roughly 18 bytes.
max_grid_cellsis the knob, and the refusal names it. Real structural alleles are well past it —LRG_542:g.[101177_102434delins36;107248_127198delins21]spans 26 kb.Do not read the multi-member census as a measure of this refusal. Of the 592 multi-member alleles harvested from ClinVar, CMRG and Paraphase, 443 windows were captured and 59 derive — but splitting the 384 refusals by message gives 384 accession refusals and 0 grid refusals, every one of them an
NM_transcript hitting theg.-only gate above. The structural rows are filtered out of the capture before the grid is ever consulted. That figure was quoted here as evidence for the grid bound and is not. -
An inserted payload against the window's 5' edge. HGVS writes an insertion between two positions, so such a payload can only be anchored at
position - 1— outside the window, and non-existent whenpositionis 1. Supply more 5' flank;Normalizer::to_sequencespads both sides for you.
Going the other way
Normalizer::to_sequences is the inverse, so a caller who already holds descriptions needs no new
plumbing to reach the derivation:
pair = normalizer.to_sequences(variant, pad=128)
derived = normalizer.from_sequences(pair.accession, pair.position, pair.reference, pair.alternate)
The pad is not decoration: dup typing reads the reference bases immediately 5' of an insertion
point (DNA/duplication.md:18), so a member flush with the window's 5' edge comes back as an ins
instead of a dup. It is applied to both sides — the window is span + 2 * pad — and the
bases come back upper-cased, so a soft-masked region does not produce a mixed-case pair.
Bounding a derivation to a region it must not leave
When a variant must stay inside a target region, an amplicon or a tiling window, anchor every raw pair to that region first. The derivation is a pure function of the window it is handed, so one window gives one answer:
pair = ferro_hgvs.SequencePair("chr1", 10, "GCAAAAG", "GCAAAG") # straight from a BAM
str(pair.derive().variant) # 'chr1:g.15del' — rolls to the run's end
bounded = pair.trim_to(end=14) # hold it at 14
str(bounded.derive().variant) # 'chr1:g.14del'
trim_to needs no reference and can only narrow. To widen, use Normalizer::reanchor, which
reads the padding bases from the reference:
anchored = normalizer.reanchor(pair, start=5, end=25) # 5' widened, 3' widened
str(anchored.derive().variant) # 'chr1:g.15del'
both = normalizer.reanchor(pair, start=5, end=14) # 5' widened, 3' narrowed
str(both.derive().variant) # 'chr1:g.14del'
reanchor moves a window's edges; it does not relocate the window. Each edge may go outwards
(padded from the reference) or inwards (trimmed), in any combination — but the window you ask for
must overlap the pair's own, and the overlap must still hold the bases the two sequences
disagree on. reanchor(pair, start=1000, end=1200) on the pair above is refused, not fetched: the
changed bases exist only in the pair, so there is nothing to carry to a region the pair does not
cover. So "anchor every raw pair to my target region" works exactly when every raw pair overlaps
that region — which is the case the feature is for, and is worth checking rather than assuming.
Prefer pair.derive() to re-spreading the four fields: a pair returned by trim_to or
reanchor carries its own position, and pairing a pre-trim position with post-trim bases is
the mistake the method exists to prevent.
Both take 1-based inclusive bounds, and None leaves that edge where it is.
Both refuse rather than clamp, in every case: a bound that would cut a base the two sequences
disagree on (naming the coordinate), a bound that would empty the reference, start past end,
and — for reanchor — a bound outside the sequence, or a window disjoint from the pair's. A window
silently pulled back to the contig would hide a bug upstream of the call.
Case is not a disagreement: a soft-masked reference against an upper-case alternate trims normally.
trim_to fetches nothing and so leaves your bases as you passed them; reanchor reads flank from
the provider and therefore returns the whole window upper-cased, exactly as to_sequences
does, rather than splicing provider bases onto caller bases and handing back a mixed-case pair.
Reach for this when the bound is a requirement, not to make heterogeneous inputs agree. For that,
Normalizer::from_sequences(..., normalize = true)and ato_sequencesround trip both already converge, and both reach the reference-anchored placement — which can shift as far as the sequence allows rather than as far as your window allows. Anchoring to a window that cuts an ambiguous run makes every caller using that window agree with each other and disagree with the reference. That is a legitimate contract and a poor default;placement_bounded_by_windowreports it either way.
Supported HGVS Syntax
| Type | Prefix | Example |
|---|---|---|
| Genomic | g. |
NC_000001.11:g.12345A>G |
| Coding DNA | c. |
NM_000088.3:c.459A>G |
| Non-coding | n. |
NR_000001.1:n.100A>G |
| RNA | r. |
NM_000088.3:r.459a>g |
| Protein | p. |
NP_000079.2:p.Val600Glu |
| Mitochondrial | m. |
NC_012920.1:m.3243A>G |
Edit Types
- Substitution:
A>G,Val600Glu - Deletion:
del,100_200del - Insertion:
100_101insATG - Deletion-Insertion:
100_102delinsATG - Duplication:
100_102dup - Inversion:
100_200inv - Repeat:
100CAG[20]
CLI Commands
The ferro CLI provides commands beyond parsing and normalization:
| Command | Description |
|---|---|
prepare |
Download and prepare reference data for normalization |
check |
Verify reference data setup |
parse |
Parse and validate HGVS variants |
normalize |
Normalize HGVS variants (3' shifting) |
explain |
Explain error/warning codes (e.g., ferro explain W1001) |
annotate-vcf |
Annotate VCF files with HGVS notation |
vcf-to-hgvs |
Convert VCF records to HGVS |
hgvs-to-vcf |
Convert HGVS to VCF format |
liftover |
Liftover coordinates between genome builds |
describe |
Generate HGVS from reference/observed sequences |
effect |
Predict protein effect from variant |
backtranslate |
Reverse translate protein to DNA variants |
convert-gff |
Convert GFF3/GTF to transcripts.json |
generate |
Generate HGVS descriptions from components |
extract-hgvs |
Extract HGVS from VEP-annotated VCFs |
Error Handling
ferro-hgvs provides configurable error handling with three modes:
| Mode | Behavior |
|---|---|
strict |
Reject non-conformant input (default) |
lenient |
Auto-correct with warnings |
silent |
Auto-correct silently |
# Use lenient mode to auto-correct common issues
ferro parse --error-mode lenient "p.val600glu" # Corrects to p.Val600Glu
# Ignore specific warnings
ferro parse --ignore W1001,W2001 "p.val600glu"
# Get help on any error/warning code
ferro explain W1001
ferro explain --list
Configuration File
Create .ferro.toml in your project directory:
[error-handling]
mode = "lenient"
ignore = ["W1001", "W2001"] # Silently correct these
reject = ["W3003"] # Always reject these
Comparing normalization rules (FERRO_PARTITION)
Unstable.
FERRO_PARTITIONis an evaluation switch, not a supported feature. It is not covered by semantic versioning, its values may change, and it is expected to be removed once the normalization rule is settled. Do not depend on it in production pipelines.
Normalization cuts each changed region of sequence into allele members. FERRO_PARTITION selects which rule does that cutting, so a candidate rule can be measured against the shipped one over a real corpus before anything changes for users.
| Value | Rule |
|---|---|
unset / empty / canonical-coalesced |
The shipped rule, and what every normal invocation uses. canonical, plus the delins.md:44-47 merge: a split whose payload realigns as one block is re-spelled as a single delins. Applied after the downstream passes rather than at partition time, so it cuts identically to canonical and differs only in what survives. |
live |
The rule shipped up to and including v0.14.0: a single-gap alignment search plus two narrow escapes. No longer the default — set it by name to reproduce pre-flip output. |
shadow |
Cut only at alignment steps common to every minimal alignment. |
canonical |
The member-count-minimal minimal alignment, without the merge above. |
With the variable unset — or set to the empty string — output is byte-identical to a build with no switch at all.
The default moved in v0.15.0, from
livetocanonical-coalesced. If you are comparing against a stored corpus normalized by v0.14.0 or earlier, the like-for-like arm is nowFERRO_PARTITION=live, not the unset one. The change is disclosed as a representation change inCHANGELOG.md; the ruling behind it is that a description is derived from the resulting sequence rather than preserved from the input's spelling, whichpartition_block—live's cutter — cannot do.
Running an A/B comparison
Run the same input twice and diff the normalized descriptions. In tsv format the columns are line, input, normalized, changed, status, detail, so column 3 is the normalized string:
# 1. a baseline arm, named explicitly. `live` is the pre-v0.15.0 rule, which is
# the one to use when the question is "what moved for my stored corpus";
# name the arm rather than relying on unset, which is now the NEW rule.
FERRO_PARTITION=live ferro normalize --input variants.txt --reference /path/to/reference \
--format tsv --error-mode lenient -j 10 > shipped.tsv
# 2. the candidate rule — here, the shipped default
ferro normalize --input variants.txt --reference /path/to/reference \
--format tsv --error-mode lenient -j 10 > candidate.tsv
# 3. what moved
diff <(cut -f3 shipped.tsv) <(cut -f3 candidate.tsv) | head
# 4. how many moved, counting only rows that succeeded on both sides
# (columns 3/5 are `normalized`/`status`; a row that failed carries no
# normalized string, so comparing column 3 alone would score two different
# failures as identical)
paste <(cut -f3,5 shipped.tsv) <(cut -f3,5 candidate.tsv) \
| awk -F'\t' '$2 == "ok" && $4 == "ok" && $1 != $3' | wc -l
# and, separately, rows whose status itself changed
paste <(cut -f5 shipped.tsv) <(cut -f5 candidate.tsv) | awk -F'\t' '$1 != $2' | wc -l
This works on a stock release build — the switch is not behind a build feature, so no special binary or wheel is needed.
Two traps worth knowing
A misspelled value is refused, loudly. FERRO_PARTITION=canonicl makes ferro exit with an error before it reads any input, naming the value you gave and the arms this build has:
FERRO_PARTITION="canonicl" is not a partitioner this build has. This build's arms
are: live, shadow, canonical, canonical-coalesced. Refusing rather than falling
back to `live`, because a bake-off served the shipped rule under a candidate's
name reports that the candidate changes nothing.
Naming this build's arms is the point: a value that exists on some other branch, or that used to exist, is reported as absent here rather than quietly answered as live.
The refusal comes from the CLI, not from the normalizer. Up to and including v0.14.0 it was a panic raised deep inside normalization, which meant a development-only switch could abort any process — a long-running service, or a Python caller, across the FFI boundary — that merely happened to have the variable set. A release build of the library now falls safe to live for a value that names no arm and keeps the refusal for its caller to report. Every binary and every example in this repository reports it — ferro, ferro-web, ferro-benchmark, both spec generators, and all 23 declared examples, which are the bake-off harnesses, the window extractors and the artifact generators — and that is pinned by a test whose denominator is Cargo.toml's own [[bin]] and [[example]] tables rather than by this sentence, so a target added later cannot quietly skip it. The one class of cargo target still outside that obligation is [[bench]]: criterion's criterion_main! generates the main, so there is no hand-written entry point to put the call in. If you embed ferro as a library and run bake-offs through it, read ferro_hgvs::normalize::partition_switch_startup_error() at startup and do the same.
Builds up to and including v0.13.1 fell back to live instead, and produced a clean, empty diff that read as "the candidate changes nothing". The fallback emitted a warning through the log facade, but the ferro CLI installs no logger, so that warning reached no stream and RUST_LOG could not surface it — there was no signal at all. If you are on an older build, treat every empty diff as unproven.
A positive control on an input known to differ is still worth running, because it catches the other way a comparison can be vacuous: a variable that never reached the process at all (a lost export, a sudo that scrubbed the environment, a container that did not forward it). That case is indistinguishable from unset, which is legitimately live, so no amount of validation inside ferro can catch it. On your own corpus a zero remains ambiguous between "the switch is not taking effect" and "this corpus has no affected variants".
These three inputs run against the built-in test data, so they need no --reference and no prepared reference directory. Between them they separate all four arms — every pair of arms disagrees on at least one row, so the control tells you which arm you got, not merely that something changed:
printf 'NM_001234.1:c.[5_6insAC;9del]\nNM_001234.1:c.2_6delinsGA\nNM_001234.1:c.4_10delinsAC\n' > control.txt
for arm in live shadow canonical canonical-coalesced; do
echo "== $arm"
if FERRO_PARTITION=$arm ferro normalize --input control.txt --format tsv \
--error-mode lenient > "control.$arm.tsv"; then
tail -n +2 "control.$arm.tsv" | cut -f3
else
echo " FAILED (exit $?) -- ferro did not produce this arm's column"
fi
done
The status check is not boilerplate. An unrecognised arm now aborts the process, and a pipeline reports the exit status of its last command — so ferro … | tail | cut reports cut's success and the loop prints an empty column under the arm's heading. An empty column and an aborted run look identical, which is the same "a broken measurement reads as a result" failure this whole section is about. Redirecting first and testing the status makes the abort say so.
| input | live |
shadow |
canonical |
canonical-coalesced (= unset) |
|---|---|---|---|---|
c.[5_6insAC;9del] |
c.[5_6insA;7_9delinsCAA] |
c.[5_6insAC;11del] |
c.[5_6insAC;11del] |
c.[5_6insAC;11del] |
c.2_6delinsGA |
c.2_6delinsGA |
c.2_6delinsGA |
c.[2del;4_6delinsA] |
c.2_6delinsGA |
c.4_10delinsAC |
c.4_10delinsAC |
c.4_10delinsAC |
c.[4C>A;6_10del] |
c.[4C>A;6_10del] |
All six pairs of arms are separated, which is what makes this tell you which arm you got rather than merely that something changed: row 1 separates live from the other three, row 2 isolates canonical (it is the only arm that does not merge that block), and row 3 separates {live, shadow} from {canonical, canonical-coalesced}. Rows 1 and 3 together separate live from canonical-coalesced; row 3 alone separates shadow from it.
Because canonical-coalesced is now the default, running with the variable unset must reproduce that last column exactly. If it reproduces the live column instead, you are on a pre-v0.15.0 build.
If the arm you selected does not produce its column above, the variable is not reaching ferro and any comparison you run is meaningless. Only once the control behaves is a zero on your own corpus informative.
This control has now been wrong twice, so check it rather than trusting it. The first version offered
c.[2del;9del],c.[3del;9del]andc.[2del;9dup]and claimedcanonicalanswersc.[2del;33del]; on those three inputs no arm differed fromliveat all. Its replacement —c.[5_6insAC;9del],c.[2del;5del],c.[2del;9del]— was also wrong in four of its twelve cells when re-measured:liverow 1 readc.[5_6insA;7_9delinsCAA]and notc.6_9delinsACCAA, and rows 2 and 3 separated nothing, every arm answeringc.[2del;6del]andc.[2del;11del]. Both failures share one cause:NM_001234.1is a G homopolymer fromc.9toc.33, so deletion pairs inside it shuffle to a common form on every arm instead of partitioning differently. A discriminating row has to be adelinswhose payload re-aligns, which is what the three above are. The table is measured, not composed.
From Python, it must be set before the first normalization. The value is read once per process and cached, so:
import os
os.environ["FERRO_PARTITION"] = "canonical" # must precede the first normalize call
import ferro_hgvs
Setting it after any variant has been normalized silently does nothing, and it cannot be changed within a running process. Comparing two rules therefore means two separate processes (or two CLI runs, as above), not two calls in one script.
Why ferro-hgvs?
ferro-hgvs provides the most comprehensive HGVS variant normalization across all pattern types, with performance orders of magnitude faster than alternatives.
Normalization Capabilities Comparison
| Pattern Type | ferro | mutalyzer | biocommons | hgvs-rs |
|---|---|---|---|---|
| Genomic (g.) | ✓ | ✓ | ✓ | ✓ |
| Coding (c.) exonic | ✓ | ✓ | ✓ | ✓ |
| Coding (c.) intronic | ✓ | ✓** | ✗ | ✗ |
| Non-coding (n.) | ✓ | ✓ | ✓ | ✓ |
| RNA (r.) | ✓ | ✓ | ✓ | ✓ |
| Protein (p.) | ✓ | Net* | ✗ | ✗ |
* mutalyzer protein normalization requires network access for NP_→NM_ lookups (cannot be cached locally). ** mutalyzer intronic support is enabled by default via genomic-context rewriting; disable with --no-rewrite-intronic.
Performance Comparison
All tools are benchmarked in ferro's offline configuration — best case for every tool. Reference data is preloaded locally (a local UTA database and SeqRepo) and the network is disabled, so the figures below measure parse/normalize compute, not I/O. Out of the box, hgvs-rs, biocommons/hgvs, and mutalyzer resolve each variant against a remote UTA/SeqRepo or the Mutalyzer web API — a network round-trip per variant (~100–1000 ms), i.e. roughly 1–10 variants/sec, hundreds to thousands of times slower than shown here (an order-of-magnitude estimate from per-call network latency, not separately benchmarked). That local, offline setup is exactly what ferro's prepare command builds; ferro needs no external service.
Median patterns/sec over 5 reps on an Apple M2 Max, local/offline. All tools draw from one stratified ClinVar population; per-tool sample sizes are calibrated so each tool is measured over a meaningful interval — fast cells (e.g. ferro/hgvs-rs parse) draw from millions of patterns, while slower cells (e.g. the per-tool normalize columns) draw from as few as tens to thousands. All tools exclude process/interpreter startup from the timed region — the mutalyzer/biocommons Python subprocesses are timed by their own internal startup-excluded timer, matching ferro/hgvs-rs. Only ferro parallelizes natively (rayon); the other tools are single-threaded libraries, so their normalize @8 workers figures come from the benchmark harness running 8 independent instances in parallel, while parsing is not sharded for them — hence the single-threaded label in their parse @8 workers column (mutalyzer normalize likewise shows no gain at 8 workers: per-call cache and IPC overhead dominate, so sharding does not help). Every tool runs fully offline against local reference data — a local UTA database and SeqRepo, with mutalyzer's network lookups disabled — the configuration ferro's prepare command enables; the figures therefore reflect compute throughput, not per-variant network latency. Reference-data load is excluded for all tools. ferro full-population peak: parse 20.0M/s, normalize 77.0k/s. See docs/BENCHMARK_RUNBOOK.md for the full method.
Parse
| Tool | Throughput @ 1 worker | Throughput @ 8 workers | ferro speedup @ 8w |
|---|---|---|---|
| ferro | 5.1M/s | 12.2M/s | — |
| mutalyzer | 352/s | single-threaded | 35,000× |
| biocommons | 3.9k/s | single-threaded | 3,100× |
| hgvs-rs | 3.6M/s | single-threaded | 3× |
Normalize
| Tool | Throughput @ 1 worker | Throughput @ 8 workers | ferro speedup @ 8w |
|---|---|---|---|
| ferro | 78.1k/s | 260.2k/s | — |
| mutalyzer | 4/s | 4/s | 73,000× |
| biocommons | 368/s | 818/s | 320× |
| hgvs-rs | 195/s | 1.3k/s | 200× |
ferro thread scaling
| Threads | 1 | 2 | 4 | 8 |
|---|---|---|---|---|
| ferro parse | 5.1M/s | 9.4M/s | 16.0M/s | 12.0M/s |
Input ordering matters for batch throughput. Resolving a transcript (reading its full sequence from the reference and rebuilding its CDS/exon metadata) dominates per-variant cost. ferro memoizes resolved transcripts in a bounded in-memory cache, so repeated lookups of the same transcript are near-free. Providing variants sorted by transcript accession — or by genomic position, which clusters variants onto the same transcripts — maximizes the cache hit rate and can speed up large batches by an order of magnitude versus randomly-ordered input. Ordering matters most when the number of distinct transcripts in the run exceeds the cache capacity (very large or genome-wide inputs); below that, the working set stays resident regardless of order.
Reference Data: What ferro Prepares
The ferro prepare command downloads and organizes all reference data needed for comprehensive normalization. This data is then shared with other tools (mutalyzer, biocommons, hgvs-rs) to enable their local operation.
| Data Type | Source | Size | Enables |
|---|---|---|---|
| RefSeq transcripts | NCBI | ~1GB | NM_/NR_/XM_ normalization |
| cdot metadata | MANE | ~200MB | Transcript-to-genome mappings |
| GRCh38 + GRCh37 genomes | NCBI | ~4GB | NC_ genomic normalization |
| RefSeqGene (sequences + genome alignments) | NCBI | ~600MB | NG_ gene-region normalization; projecting c./n. variants into an NG_ parent's own g. frame (via the RefSeqGene→genome alignment GFF3) |
| LRG sequences + XML | EBI | ~50MB | LRG_ stable-reference normalization; projecting c./n. variants into an LRG_ parent's own g. frame (via the LRG XML genomic mapping) |
| Protein sequences | Derived from CDS | ~200MB | NP_/XP_ protein normalization |
| Legacy transcript versions | NCBI | ~50MB | Historical ClinVar variants |
Key insight: Without ferro's reference preparation, other tools require network access for each variant lookup (adding 100-1000ms latency per variant). With ferro's cached reference data, all tools can operate fully offline with consistent, reproducible results.
Deriving version-independent NG_ placements (#728)
ferro prepare --derive-ng-placements <accessions.txt> derives genomic placements for the listed NG_ versions (one exact accession per line, e.g. NG_012337.3; blank lines and # comments ignored), writing derived_refseqgene_placements.json into the reference directory and wiring the manifest's derived_refseqgene_placements field. This fills version gaps the archived RefSeqGene→genome GFF3 snapshots do not cover. It needs cdot + the genome in the same prepare run and uses NCBI EFetch per accession; accessions that cannot be validated are skipped with a warning. The field is preserved across subsequent prepare runs.
Benchmark: Reference Data & Tool Comparison
The main ferro binary includes commands to prepare reference data (ferro prepare) and check its status (ferro check). The ferro-benchmark tool (build with --features benchmark) extends this for tool comparison benchmarks.
| Command | Description |
|---|---|
prepare <tool> |
Prepare reference data for a tool |
check <tool> |
Verify tool configuration and dependencies |
parse <tool> |
Parse HGVS patterns with specified tool |
normalize <tool> |
Normalize HGVS patterns with specified tool |
compare results |
Compare parse/normalize results between tools |
extract |
Extract patterns from ClinVar, VCFs, or create samples |
setup |
Set up UTA database, SeqRepo, and other services |
generate |
Generate summary reports and configs |
collate |
Aggregate sharded results |
Quick Start
# Prepare ferro reference (main binary - no special features needed)
ferro prepare --output-dir data/ferro
# Check reference data
ferro check --reference data/ferro
# Normalize with ferro
ferro normalize -i patterns.txt --reference data/ferro
# For tool comparison, build with benchmark support
cargo build --release --features benchmark
# Prepare other tools (uses ferro reference for transcript data)
ferro-benchmark prepare mutalyzer --ferro-reference data/ferro --output-dir data/mutalyzer
ferro-benchmark prepare biocommons --seqrepo-dir data/seqrepo --uta-dump uta_20210129b.pgd.gz --ferro-reference data/ferro
# Compare results between tools
ferro-benchmark normalize mutalyzer -i patterns.txt -o mutalyzer.json --mutalyzer-settings data/mutalyzer/mutalyzer_settings.conf
ferro-benchmark compare results normalize ferro.json mutalyzer.json -o comparison.json
Supported tools: ferro-hgvs, mutalyzer, biocommons/hgvs, hgvs-rs
Note: The
pixi.tomlandpixi.lockfiles in this repository define a pixi environment for the Python-based external tools (mutalyzer, biocommons/hgvs, seqrepo) used in benchmarking. Runpixi shellto activate it.
See docs/BENCHMARK_GUIDE.md for detailed usage.
Development
cargo build
cargo test # default features
cargo clippy -- -D warnings
The commands above use the default feature set, and CI keeps them compiling (see
the build job). They do not cover the whole suite — the feature-gated tests and
the integration tree need dev, which is what CI runs and what you want before
opening a PR:
cargo nextest run --features dev
cargo clippy --features dev --all-targets -- -D warnings
License
Licensed under the MIT License. See LICENSE for details.
Disclaimer
This software is under active development. While we make a best effort to test this software and to fix issues as they are reported, this software is provided as-is without any warranty (see the license for details). Please submit an issue, and better yet a pull request as well, if you discover a bug or identify a missing feature. Please contact Fulcrum Genomics if you are considering using this software or are interested in sponsoring its development.
Contributing
See CONTRIBUTING.md for guidelines.
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 ferro_hgvs-0.14.0.tar.gz.
File metadata
- Download URL: ferro_hgvs-0.14.0.tar.gz
- Upload date:
- Size: 6.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f6326f6bb6231b85390078d9a753a28d9f6e7611635829be6fe5dfa4db732b7
|
|
| MD5 |
40decab14056cb7e5dbc1334c0bfcd07
|
|
| BLAKE2b-256 |
b8f46bcc998bab7ef5e571ad9a911280fb09f750c09d5fba4e98baf97714ab95
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0.tar.gz:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0.tar.gz -
Subject digest:
8f6326f6bb6231b85390078d9a753a28d9f6e7611635829be6fe5dfa4db732b7 - Sigstore transparency entry: 2484330654
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 3.9 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 |
2b1b121da019d7e666f78a8ef54394db23f784e534ff625efd2f0ef267b7cadb
|
|
| MD5 |
2d73084a195b3af17c533f74850ddee4
|
|
| BLAKE2b-256 |
4e49654b0d2b04a22340051efc36bdb4fb781f79c48f4f58149198a64a213c0d
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-win_amd64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-win_amd64.whl -
Subject digest:
2b1b121da019d7e666f78a8ef54394db23f784e534ff625efd2f0ef267b7cadb - Sigstore transparency entry: 2484330658
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
102db3250974f1a4bbb6f2e77f636a2625fbd06d7476d75df1a5ab8a922fd73c
|
|
| MD5 |
b8178827656aa5d84f02d1178202db74
|
|
| BLAKE2b-256 |
37b472ea073c8d8967beb3b1dcc86ecd9c92ca54a9321cb228a5fbbd8218de81
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_x86_64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_x86_64.whl -
Subject digest:
102db3250974f1a4bbb6f2e77f636a2625fbd06d7476d75df1a5ab8a922fd73c - Sigstore transparency entry: 2484330664
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0e2784b078e0d8167452ed8f855abaad1069bf05b3d2cd773910e9e3e2175ea
|
|
| MD5 |
7ffb05f0fc9b26936a491248ee6a3888
|
|
| BLAKE2b-256 |
4ce759050008edbb30492c4e08705c11c670bc42f32b264ae6f071ecbf78939a
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_aarch64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-musllinux_1_2_aarch64.whl -
Subject digest:
f0e2784b078e0d8167452ed8f855abaad1069bf05b3d2cd773910e9e3e2175ea - Sigstore transparency entry: 2484330659
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9671d513a4297ca293dbba1cf4c5b46df2227365d8f72abe09da0c988759d649
|
|
| MD5 |
379de8a7a9ff23f623cb3683b6248fe9
|
|
| BLAKE2b-256 |
72e8c582155cc0c0bfe11df0602d582d6275c56af6cafd66d00cd787d56da3fb
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9671d513a4297ca293dbba1cf4c5b46df2227365d8f72abe09da0c988759d649 - Sigstore transparency entry: 2484330660
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a408d362c46f2fb88f9de00e2370ff6481a0f27b69c2d4ec9e9bd58adc584cc
|
|
| MD5 |
2969804e59e5ce6c7bfacdb21c0944ae
|
|
| BLAKE2b-256 |
407a5ed9d4a6098df0cd5a1745ed6fc771fb463c09dd9ed427bc71fa90f24147
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
4a408d362c46f2fb88f9de00e2370ff6481a0f27b69c2d4ec9e9bd58adc584cc - Sigstore transparency entry: 2484330671
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.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 |
26b9c58618f662185c15696058cd1b28f1dfeda5d3fef33626653d10567f4c97
|
|
| MD5 |
1e9c3c6df639ef30c75521f1c87ec72d
|
|
| BLAKE2b-256 |
cf7cef3a41963289053cf599c4bbb4e1e146cfe502fbf3d59f91c776bd318300
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-macosx_11_0_arm64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-macosx_11_0_arm64.whl -
Subject digest:
26b9c58618f662185c15696058cd1b28f1dfeda5d3fef33626653d10567f4c97 - Sigstore transparency entry: 2484330661
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ferro_hgvs-0.14.0-cp310-abi3-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ferro_hgvs-0.14.0-cp310-abi3-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10+, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
342d3b6696a9609b76ea3b119d8ed5c3bf13128580b668196c280bbf6a7897a8
|
|
| MD5 |
564a562d61f42acf97676b796ff8f3e2
|
|
| BLAKE2b-256 |
a1823df85892e3ff2dcc83a3a4b004a8810a0c2d28470426b34c2a07057f899b
|
Provenance
The following attestation bundles were made for ferro_hgvs-0.14.0-cp310-abi3-macosx_10_13_x86_64.whl:
Publisher:
release-wheels.yml on fulcrumgenomics/ferro-hgvs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ferro_hgvs-0.14.0-cp310-abi3-macosx_10_13_x86_64.whl -
Subject digest:
342d3b6696a9609b76ea3b119d8ed5c3bf13128580b668196c280bbf6a7897a8 - Sigstore transparency entry: 2484330666
- Sigstore integration time:
-
Permalink:
fulcrumgenomics/ferro-hgvs@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Branch / Tag:
refs/tags/v0.14.0 - Owner: https://github.com/fulcrumgenomics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-wheels.yml@e4c53fb2f0c7d451dcba53cf722e6b34aa2bc3a0 -
Trigger Event:
release
-
Statement type: