Skip to main content

rna-structure-audit

Three-rung benchmark for whether RNA and DNA foundation models encode base-pairing structure or nucleotide composition.

State of the panel. Four of the 52 curated families carried wrong annotations and five were withdrawn on review, leaving 47 that the benchmark scores. The whole panel was then re-run under pinned numerics, and results/repaired_panel_v3/ is that run: one commit per cell, each file stamped with the commit, panel hash and library versions that produced it. docs/OPEN_DEFECTS.md registers every defect found during the audit, each with a detector.

The withdrawn families still ship, so a result computed before the review can be reproduced, and load_families(include_withdrawn=True) returns them.

The as-submitted branch reconstructs the state the submitted manuscript's numbers were computed from. main is the corrected line.

Open Quickstart in Colab Open BYOM Tutorial in Colab

Install

pip install rna-structure-audit

For pre-built adapters (ERNIE-RNA, RiNALMo, RNA-FM, and 7 more):

pip install rna-structure-audit[all-models]

Quick start

from rna_structure_audit.adapters import ERNIERNAAdapter
from rna_structure_audit.evaluate import evaluate

results = evaluate(ERNIERNAAdapter(), device="cuda")
print(results["report"]["grade"])  # A

Pre-built adapters

Adapter Model Params Grade
ERNIERNAAdapter ERNIE-RNA 86M A
RiNALMoAdapter RiNALMo 650M A
NTAdapter Nucleotide Transformer v2 56M B
HyenaDNAAdapter HyenaDNA 0.45M B
EvoAdapter Evo 7B B
CaduceusAdapter Caduceus 7.7M C
SpliceBERTAdapter SpliceBERT 19M D
UTRLMAdapter UTR-LM 1.2M D
RNAFMAdapter RNA-FM 99M D
DNABERT2Adapter DNABERT-2 117M D

Parameter counts are the loaded checkpoint's, except Evo and DNABERT-2 where they are the authors' designation. Grades are _grade() applied to the 47-family panel; a B means families survive the dinucleotide null, which is a weaker claim than partner specificity and is not evidence that a model resolves pairing.

Bring your own model

Write an adapter for your model:

from rna_structure_audit.adapter import ModelAdapter
import torch

class MyModelAdapter(ModelAdapter):
    name = "my-model"
    d_model = 640
    n_layers = 12

    def load(self):
        # Load your model
        ...

    def tokenize(self, sequence: str) -> torch.Tensor:
        # Return input_ids tensor
        ...

    def get_all_layer_embeddings(self, tokens: torch.Tensor) -> list[torch.Tensor]:
        # Return list of (seq_len, d_model) tensors, one per layer
        ...

Then run from the command line:

rna-structure-audit --adapter my_adapter.py --device cuda -o results.json

Or from Python:

from rna_structure_audit.evaluate import evaluate

adapter = MyModelAdapter()
results = evaluate(adapter, device="cuda")
print(results["report"]["grade"])  # A, B, C, or D

See the Bring Your Own Model tutorial for a full walkthrough.

Grading

Grade Meaning
A Partner-specific: encodes which position pairs with which
B Structure-aware beyond composition: survives dinucleotide controls
C Composition-sensitive: stem/loop signal absorbed by nucleotide null
D No detectable structure signal

The three rungs

  1. Mutation sensitivity — Do stems respond differently than loops to complement mutations? Controlled by nucleotide-stratified permutation null.
  2. Dinucleotide null — Of families passing Rung 1, how many survive when the null is stratified by dinucleotide context?
  3. Partner specificity — When position i is mutated, is perturbation at its base-pairing partner j greater than at j's stem-adjacent neighbors? Controlled by within-stem derangement null.

The paper and its verification

The manuscript is the highest-numbered paper/rna-structure-audit_vNN.tex. Every table it prints is written from results/ by a generator in scripts/ rather than entered by hand, so the paper can be checked against the data without re-running a model:

for s in verify_paper_rung12_figures verify_paper_phase6_figures \
         verify_artifact_regenerates audit_attention_rho check_freeze_order; do
    uv run --no-project --with numpy --with scipy --with tqdm --python 3.12 \
        python "scripts/$s.py"
done
Script What it checks
verify_paper_rung12_figures.py every mean ratio, interval, exceedance count and retention rate in Tables 1 and 2, against results/bootstrap_cis.json
verify_paper_phase6_figures.py Table 5 and the Rung 3 prose figures, recomputed from the per-family values with the two quarantined families excluded
verify_artifact_regenerates.py the deposited artifact against the per-family inputs, leaf by leaf
audit_attention_rho.py each attention correlation in Table 1 against the run that produced it
check_freeze_order.py that no run is dated before the preregistration it is reported against

The three scripts that read the manuscript resolve the highest-numbered paper/paper_vN.tex, so they cannot silently keep checking a superseded version; the two verify_paper_* scripts also accept an explicit path.

verify_artifact_regenerates.py re-runs the bootstrap over the per-family result files and compares 269 leaf values against the deposited results/bootstrap_cis.json. docs/provenance.md records what was measured, what changed, and which file settled it. The preregistrations are at the repository root and in preregistration/; docs/sha_map.md maps the commit ids frozen documents quote to their present-day equivalents.

Citation

Tower, E. (2026). A Graded Evaluation of RNA Structure Awareness in Foundation Models: From Stem-Loop Discrimination to Partner Specificity. Zenodo. https://doi.org/10.5281/zenodo.21362717

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rna_structure_audit-0.2.1.tar.gz (49.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rna_structure_audit-0.2.1-py3-none-any.whl (50.0 kB view details)

Uploaded Python 3

File details

Details for the file rna_structure_audit-0.2.1.tar.gz.

File metadata

  • Download URL: rna_structure_audit-0.2.1.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rna_structure_audit-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0a47b9055dba932f5f67cb136c74066e050afc85a86a77d1c4f1a6009afdd12e
MD5 96d4e6665470365ee084e389e23a7271
BLAKE2b-256 3a1a6d7d2fbf7b08ba87cdc1f613cfce7363795a2eb9709e9387daa6e76d2e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rna_structure_audit-0.2.1.tar.gz:

Publisher: publish.yml on elliottower/rna-structure-audit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rna_structure_audit-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for rna_structure_audit-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 05a1aa82a72e396490f27b2b7a3363ae29cbbf5e803deda73753f9f208f1f11b
MD5 24272f463345e658ec832008f0e523f7
BLAKE2b-256 c201f2387b852b960a5f0ab79ebbb17bd65ebff1b7110fe1a02f5d825dc86598

See more details on using hashes here.

Provenance

The following attestation bundles were made for rna_structure_audit-0.2.1-py3-none-any.whl:

Publisher: publish.yml on elliottower/rna-structure-audit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.1 This release

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page