AlphaGenome Atlas: what DeepMind's map of 9 billion DNA variants does

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited September 11, 2026

Expert Verified
Abstract DNA double helix dissolving into a grid of scored data points in indigo blue

What AlphaGenome Atlas actually is

AlphaGenome Atlas is a database, not a chatbot. DeepMind took its AlphaGenome model and ran it exhaustively across the human genome, then stored every result. The output is what they call "the most comprehensive catalogue of how genetic mutations affect molecular biology," and it's big: about 1 petabyte of predictions, more than 30 times the size of the AlphaFold Database.

DeepMind's AlphaGenome Atlas announcement visual, as taken from Google DeepMind
DeepMind's AlphaGenome Atlas announcement visual, as taken from Google DeepMind

The scale is the point. For each variant, the Atlas holds thousands of molecular-effect predictions spanning hundreds of human and mouse cell types and tissues. DeepMind's Demis Hassabis framed the ambition directly:

"With AlphaFold we mapped the protein universe - now with AlphaGenome Atlas we're charting the human genome..."

Two people to attach names to: the work is credited to Pushmeet Kohli, DeepMind's VP of Science, and Žiga Avsec, who leads its genomics work.

The problem it's built for: the 98% we couldn't read

Here's the context that makes this matter. Only about 2% of the human genome codes for proteins. The other ~98% is non-coding DNA, the part that decides when, where, and how strongly genes switch on and off.

That's a problem because most disease-linked variants that genome-wide association studies turn up sit in exactly that non-coding space, where the effect was historically a mystery. A variant like that gets a frustrating label: a "variant of uncertain significance." You can see it, you just can't say what it does. Before the Atlas, resolving one meant running the model yourself or doing slow, expensive lab work.

The pitch is that you can now rank variants by predicted impact instead of testing them all. Julia Zeitlinger of the Stowers Institute described the effect well:

"gives us a searchable dictionary for non-coding DNA"

The AVI score: one number for any variant

The thing you actually read off the Atlas is the AlphaGenome Variant Impact (AVI) score, a single number describing how much a given change is predicted to matter. Its clever move is that it combines two models: AlphaGenome for regulatory (non-coding) effects and AlphaMissense for protein-altering (coding) effects. That means a coding variant and a non-coding variant come back on the same scale, so you can compare them directly.

How the AVI score merges coding and non-coding predictions into one comparable number
How the AVI score merges coding and non-coding predictions into one comparable number

The scale is logarithmic, which is easy to misread, so here's the plain version:

AVI scoreRoughly what it means
10Among the top 10% most impactful variants in the genome
30Among the strongest ~1 in 1,000 variants

And it isn't just a black-box number. Each AVI score breaks down into additive contributions from interpretable categories like chromatin accessibility, splicing, and conservation, so you can see which molecular process a variant is predicted to disrupt, not only that it disrupts something. DeepMind reports the score gives "best-in-class performance across many variant pathogenicity and rare-disease benchmarks."

Under the hood: how AlphaGenome reads DNA

The Atlas is a lookup table, but the thing that filled it is the AlphaGenome model, first released in June 2025. It's worth understanding how it reads a genome, because that's what the scores rest on.

How AlphaGenome processes a long DNA sequence into gene-regulation predictions
How AlphaGenome processes a long DNA sequence into gene-regulation predictions

The model takes a 1 million base-pair stretch of DNA at a time and runs it through a U-Net-style architecture with a central Transformer tower, an encoder-then-decoder shape borrowed in part from AlphaFold. The long context is what lets it connect a regulatory switch to a gene sitting far away on the strand, and it produces predictions down to single base-pair resolution. From that one pass it predicts across 11 functional genomic modalities, including gene expression, RNA splicing, chromatin accessibility, and genome folding. Alongside the variant scores, the Atlas also catalogues more than 2,500 recurrent DNA motifs with their genomic locations.

Atlas vs running the model yourself

If AlphaGenome already existed, why build the Atlas? Speed and access. Running a model this size live, one variant at a time, is fine for a handful of lookups and hopeless for genome-scale work. Testing all 9 billion possible changes that way simply isn't feasible.

Running the model live versus looking up a precomputed score in the Atlas
Running the model live versus looking up a precomputed score in the Atlas

So DeepMind precomputed the answers. That single decision is what turns a research model into something a biologist can use on a Tuesday afternoon. Jonathan Sebat, a psychiatric geneticist at UC San Diego, put the day-to-day impact plainly:

"Our own workflows in the lab can be streamlined quite a bit because we don't actually have to compute anything. We literally can just look up everything."

That look-it-up shift has already shown up in real work. A team at the Broad Institute, working with the GREGoR Consortium, used AVI scores to prioritize a non-coding variant as a candidate cause of severe epilepsy in a patient. In a related case, the prediction even pointed at the mechanism: a variant that created an incorrect splice site.

How to actually use it

There are three ways in, depending on who you are.

Access pathWho it's for / costBest for
No-code web portalAcademic, freeLooking up a variant with zero code
AlphaGenome API (GitHub)Non-commercial, free (Apache 2.0)Custom, small-to-medium-scale analyses
Google Cloud Model GardenCommercial licenseCompanies, drug discovery

For most researchers, the portal is the story: type a variant into a website and read the AVI score plus the per-modality breakdown, no coding skills required. If you want to script it, the API is a Python package (dna_client, with predict_variant and score_variant calls) that's free for non-commercial use. Access clearly matters to the field already: DeepMind says around 9,000 researchers had used AlphaGenome through the API even before the Atlas made it point-and-click.

Where it stops

This is the part a lot of the launch-day coverage skated over, and it's the most important section for anyone deciding how much to trust a score.

DeepMind is upfront that the Atlas is not approved for any clinical use and is not a substitute for professional diagnosis. It's a prioritization tool. And it's a less accurate one than its famous sibling: experts note the Atlas is far less accurate than the AlphaFold database, even though it's much bigger, because predicting gene regulation is a noisier problem than predicting protein structure. Martin Kircher of the Max Delbrück Centre gave a fair read:

"This is a useful and generous way to scale up access to a strong model" ... it "won't replace experiments or, in the case of diagnosing disease, accounting for differences specific to individuals."

The sharpest scrutiny came from practitioners on Hacker News, and it's worth hearing. One commenter with an obvious biology background pushed back on the idea that per-variant scores translate cleanly into medical value:

Hacker News

"on their own, with the exception of a few diseases, individual SNP predictions are meaningless in terms of actual pathogenicity."

Another raised a subtle methodological catch: if the benchmark labels lean on evolutionary conservation, a model can look good partly by re-reading a signal it was already given. And a recurring theme was that single-variant maps miss biology that only shows up when several changes interact, something a one-variant-at-a-time score can't capture. None of this makes the Atlas useless; it makes it what DeepMind says it is, a starting point rather than an answer.

What this means if you build with AI

I write this from the software side, not the lab, and the part that stuck with me isn't the genomics. It's the product decision underneath it.

AlphaGenome existed for over a year as an API. Powerful, and mostly reachable by people who could stand up compute and write Python. The Atlas didn't make the model smarter. It did the hard work ahead of time and wrapped it in something you can just use, so a biologist looks up an answer instead of engineering their way to one. That gap, between "here's a capable model" and "here's a thing that does the job," is where most AI actually gets adopted or abandoned.

That's the exact pattern we care about at eesel. A raw model is infrastructure; what a team hires is an employee. eesel is an AI teammate platform, and the teammates arrive ready to work: today that's an AI helpdesk teammate that joins your support queue already knowing your help center, and an AI blog writer. You don't wire up a model and hope; the hard setup is done so the teammate is useful on day one, the same way the Atlas is useful the moment you land on it.

Try eesel

If AlphaGenome Atlas is a lesson in making a powerful model genuinely usable, that's the whole idea behind eesel for support and content teams. Rather than handing you a model and a blank config, eesel gives you a teammate that already knows your context, and lets you prove it out before it touches a customer by simulating on your real past tickets.

And because plenty of teams now run their tools from a terminal or a coding agent, there's an eesel CLI: the same teammate and workspace you'd manage in the dashboard, driven from the command line. A person can use it directly, a script can automate it, and coding agents like Claude Code, Codex, or Cursor can operate it: inspect a teammate's instructions, send a test message, read back structured results, and propose a bounded change for a human to approve. It's the no-wiring, look-it-up philosophy, applied to support automation. You can try eesel free.

Frequently Asked Questions

What is AlphaGenome Atlas?

AlphaGenome Atlas is a free database from Google DeepMind, launched on 8 September 2026, that precomputes the predicted molecular effect of every possible single-letter change in human DNA. It covers roughly 9 billion single-nucleotide variants and gives each one an AlphaGenome Variant Impact (AVI) score you can look up without writing any code.

What does the AVI score mean?

The AlphaGenome Variant Impact score is a single number ranking how strongly a variant is predicted to affect function. An AVI of 10 puts a variant in the top 10% most impactful in the genome; an AVI of 30 puts it in the strongest roughly 1 in 1,000. It combines the AlphaGenome and AlphaMissense models so coding and non-coding variants sit on one scale.

Is AlphaGenome Atlas free?

Yes for academic and other non-commercial use, through both the no-code web portal and the AlphaGenome API on GitHub (Apache 2.0). Commercial use, such as drug discovery, requires a license through Google Cloud's Model Garden.

Can AlphaGenome Atlas diagnose disease?

No. DeepMind states the Atlas is not validated or approved for any clinical use and is not a substitute for professional diagnosis. It is a research prioritization tool that ranks which variants are worth investigating, and any finding still needs experimental confirmation.

How is AlphaGenome Atlas different from AlphaFold?

AlphaFold predicts protein structures; AlphaGenome predicts how DNA sequence, including the non-coding 98% of the genome, regulates gene activity. The Atlas dataset is about 30 times larger than the AlphaFold Database at roughly 1 petabyte, though DeepMind notes gene-regulation prediction is a harder problem and the Atlas is less accurate than AlphaFold.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
What is AiseraGPT? A complete overview for 2025
Guides

What is AiseraGPT? A complete overview for 2025

AiseraGPT promises “ChatGPT for the enterprise,” but how does it actually perform? This guide breaks down its features, real-world challenges, and the pros and cons compared to modern AI tools.

Kenneth PanganKenneth PanganAug 26, 2025
Does Zendesk use ChatGPT? The complete 2026 overview
Guides

Does Zendesk use ChatGPT? The complete 2026 overview

Wondering if Zendesk uses ChatGPT? We break down Zendesk's native AI, its connection to OpenAI, and how specialized integrations can help you get the most out of your support ecosystem.

Kenneth PanganKenneth PanganOct 6, 2025
AI pretraining
Guides

AI pretraining

Ever heard that AI is "trained on the whole internet"? That's AI pretraining, the foundational step for models like GPT. But for customer support, this general knowledge isn't enough. This guide breaks down what pretraining really is and explains why specializing an AI on your company's knowledge is the key to unlocking its true potential.

Kenneth PanganKenneth PanganOct 23, 2025
What AI does Salesforce use? A practical guide beyond the hype
Guides

What AI does Salesforce use? A practical guide beyond the hype

Wondering what AI Salesforce uses? This guide breaks down Einstein, Einstein GPT, and their core features. Discover the real costs, setup challenges, and limitations that Salesforce doesn't advertise, and learn about more flexible alternatives.

Kenneth PanganKenneth PanganOct 7, 2025
Nouple io: A complete 2025 overview of Coupler.io
Guides

Nouple io: A complete 2025 overview of Coupler.io

Explore our deep dive into Coupler.io (nouple io), the no-code platform for data reporting. Learn about its features, pricing, and see how it compares to action-oriented AI tools.

Kenneth PanganKenneth PanganOct 19, 2025
Understanding Mercor AI pricing and its $10 billion valuation in 2025
Guides

Understanding Mercor AI pricing and its $10 billion valuation in 2025

We break down Mercor AI's explosive growth, its opaque pricing model, and its massive valuation to help you understand if it's the right fit for your business.

Kenneth PanganKenneth PanganNov 6, 2025
A practical guide to intents and sentiments in customer support
Guides

A practical guide to intents and sentiments in customer support

Understanding customer intents and sentiments is no longer optional. This guide breaks down what they are, why they matter, and how to use them to elevate your support.

Kenneth PanganKenneth PanganOct 27, 2025
A complete guide to Customer.io pricing in 2025
Guides

A complete guide to Customer.io pricing in 2025

Thinking about using Customer.io? Our complete guide to Customer.io pricing covers everything you need to know about their plans, overage fees, and the real cost of their platform, helping you make an informed decision for your business in 2025.

Kenneth PanganKenneth PanganOct 8, 2025
A complete guide to Worknet AI pricing in 2025
Guides

A complete guide to Worknet AI pricing in 2025

Searching for clear Worknet AI pricing? We analyzed their costs across multiple sources to give you the full picture, from their $75/user fee to their performance-based model, and explore a more transparent alternative.

Stevia PutriStevia PutriSep 9, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free