A Delta Score is the quantitative difference between a deep learning model's prediction score for a reference allele and its score for an alternate allele. It serves as a computational proxy for the functional consequence of a single-nucleotide variant, directly linking a change in the input sequence to a change in the model's output probability for a specific molecular phenotype, such as chromatin accessibility or transcription factor binding.
Glossary
Delta Scores

What is Delta Scores?
A metric quantifying the functional impact of a genetic variant by measuring the difference in a model's prediction between a reference and alternate allele.
In practice, a high absolute delta score indicates a significant predicted disruption, often used to prioritize non-coding variants in clinical reports. This method, central to in-silico mutagenesis, provides a base-pair resolution map of regulatory impact without requiring prior biological annotations, making it a foundational interpretability technique for genomic sequence models.
Key Characteristics of Delta Scores
Delta scores provide a quantitative framework for measuring the functional impact of genomic variants by computing the difference in a model's prediction between a reference and an alternate allele.
Computational Definition
A delta score is formally defined as the arithmetic difference between two prediction outputs: Δ = P(alt) - P(ref). For a binary classifier predicting regulatory activity, a delta score of +0.45 indicates the alternate allele increases the predicted probability by 45 percentage points. In regression tasks predicting gene expression, the delta represents the absolute change in predicted transcript abundance. The computation requires exactly two forward passes through the model—one with the reference sequence and one with the alternate—making it computationally efficient for genome-wide variant scanning.
Allelic Pairing Architecture
Delta scores rely on paired sequence design where the reference and alternate inputs differ only at the variant position. Key design considerations include:
- Flanking context length: Typically 500-1000bp surrounding the variant to capture regulatory elements
- Strand symmetry: Both forward and reverse complement sequences are often evaluated and averaged
- Padding strategy: Sequences shorter than the model's receptive field require zero-padding or dinucleotide shuffling
- Multi-allelic handling: For sites with more than two alleles, pairwise deltas are computed for each alternate against the reference
Sign and Magnitude Interpretation
The sign and magnitude of a delta score encode distinct biological hypotheses:
- Positive delta: The alternate allele increases the predicted molecular phenotype (e.g., stronger transcription factor binding)
- Negative delta: The alternate allele decreases or ablates function (e.g., loss-of-function variants)
- Near-zero delta: The variant is predicted to be functionally neutral
- Magnitude thresholds: Empirical cutoffs (e.g., |Δ| > 0.1) are often calibrated against Deep Mutational Scan (DMS) ground truth data to classify variants as functionally significant
Relationship to Attribution Methods
Delta scores are distinct from but complementary to feature attribution techniques:
- In-silico Mutagenesis (ISM) computes deltas for all possible single-nucleotide changes at every position, generating a mutation map
- Integrated Gradients and DeepLIFT attribute importance to reference nucleotides but do not directly quantify alternate allele effects
- SHAP values can approximate delta scores when the reference sequence serves as the background expectation
- Delta scores provide ground truth for attribution validation: A faithful attribution map should assign high importance to positions where mutations produce large deltas
Calibration and Benchmarking
Raw delta scores require calibration against experimental data to establish clinical or biological validity:
- Deep Mutational Scan (DMS) datasets provide high-throughput functional measurements for thousands of variants, serving as the gold standard benchmark
- ClinVar annotations enable calibration of delta score thresholds against pathogenic and benign classifications
- Population allele frequencies from gnomAD help distinguish tolerated common variants from rare deleterious ones
- Spearman correlation between delta scores and experimental measurements typically ranges from 0.4 to 0.7 for state-of-the-art genomic models
Genome-Wide Scalability
Computing delta scores across entire genomes requires optimized inference pipelines:
- Batched variant processing: Grouping variants by genomic region to reuse shared sequence context
- GPU-accelerated inference: Leveraging tensor parallelism for models with millions of parameters
- Pre-computed reference predictions: Caching reference allele scores to halve the required forward passes
- Variant Effect Predictors (VEPs) like Enformer and Basenji2 can score ~10,000 variants per second on modern hardware, enabling population-scale analyses
Frequently Asked Questions
Clear, technical answers to the most common questions about using delta scores for variant effect prediction and genomic model interpretability.
A delta score is the quantitative difference between a deep learning model's prediction score for a reference allele and its prediction score for an alternate allele at the same genomic position. It is computed as ΔS = S_alt - S_ref, where S_ref is the model's output (e.g., predicted binding affinity, expression level, or pathogenicity probability) for the reference sequence and S_alt is the output for the sequence containing the variant. A positive delta score indicates the variant increases the predicted molecular phenotype, while a negative score indicates a decrease. This simple yet powerful metric transforms a complex neural network into a variant effect predictor without requiring any task-specific fine-tuning.
Delta Scores vs. Other Variant Scoring Methods
A feature-level comparison of Delta Scores against other common variant effect prediction and attribution methodologies used in genomic model interpretability.
| Feature | Delta Scores | In-silico Mutagenesis (ISM) | SHAP |
|---|---|---|---|
Core Mechanism | Difference in prediction probability between reference and alternate allele | Systematic substitution of every nucleotide to measure prediction change | Game-theoretic Shapley values assigning credit to each feature |
Computational Cost | O(1) per variant | O(3N) per sequence of length N | O(2^N) exact; O(N*M) with KernelSHAP approximations |
Resolution | Variant-level | Nucleotide-level | Nucleotide-level |
Requires Reference Sequence | |||
Captures Epistatic Interactions | |||
Satisfies Completeness Axiom | |||
Primary Use Case | High-throughput clinical variant scoring | Saturation mutagenesis of regulatory elements | Regulatory compliance and model debugging |
Scalability to Whole-Genome |
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Delta scores are a core output of variant effect prediction, but they rely on a broader ecosystem of feature attribution and validation techniques. The following concepts are essential for understanding how delta scores are computed, interpreted, and trusted.
Feature Attribution
The foundational class of methods that assign a relevance score to each input nucleotide for a specific neural network prediction. Delta scores are a direct application of feature attribution, quantifying the difference in attribution between two alleles. Key approaches include gradient-based methods (Integrated Gradients, DeepLIFT), perturbation-based methods (in-silico mutagenesis), and Shapley value decompositions (SHAP). The choice of attribution method directly impacts the biological interpretability of the resulting delta score.
In-silico Mutagenesis (ISM)
A systematic perturbation technique that computationally mutates every nucleotide in a sequence to quantify its impact on model predictions. ISM is the most direct method for computing delta scores: the prediction change between the reference and alternate allele is the delta score. While computationally expensive—requiring a forward pass for every possible substitution—ISM provides a model-agnostic, assumption-free measure of variant impact that serves as a gold standard for validating faster approximation methods.
Faithfulness Metrics
Quantitative measures that evaluate how accurately an attribution map reflects the true decision-making logic of a genomic model. For delta scores to be trusted in clinical or regulatory contexts, the underlying attribution method must be faithful. Key metrics include:
- AOPC (Area Over the Perturbation Curve): measures prediction drop as salient nucleotides are removed
- ROAR (RemOve And Retrain): iteratively retrains the model after removing top-attributed features
- Infidelity Measure: quantifies the error between input perturbation and attribution perturbation
Deep Mutational Scan (DMS)
A high-throughput experimental method that assays the functional impact of thousands of genomic variants, often used as a ground-truth benchmark for validating delta scores. DMS data provides an empirical measurement of how each possible amino acid or nucleotide change affects a molecular phenotype—such as protein function or gene expression. Comparing computationally predicted delta scores against DMS measurements is the gold standard for assessing variant effect predictors.
Attribution Sanity Checks
A suite of tests designed to verify that an attribution method is sensitive to the learned parameters of the genomic model, not just the input data. The most critical test is model parameter randomization: if the model weights are scrambled but the attribution map remains unchanged, the method is not truly explaining the model. Delta scores derived from methods that fail sanity checks may reflect data artifacts rather than genuine learned biological signals.
Nucleotide-level Attribution
The assignment of an importance score to each individual base pair in a genomic sequence, providing the highest possible resolution for model interpretability. Delta scores for single-nucleotide variants depend on accurate nucleotide-level attribution. Methods like Integrated Gradients and DeepLIFT produce per-nucleotide scores, while coarser methods like Grad-CAM yield region-level attributions that may obscure the precise contribution of a single base change.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us