OpenGenomeLLM-70B achieves state-of-the-art results across all major genomic benchmarks, surpassing GPT-4o by 10.5 points on GeneTuring and outperforming all prior open-source genomic models on ClinVar VUS classification.
OpenGenomeLLM-70B is an open-source large language model built by DeepCog.ai specifically for genomic data analysis, variant interpretation, and clinical genomics reporting. It bridges the critical gap between raw genomic data and clinically actionable insights using natural language.
Unlike general DNA sequence models (DNABERT, Evo2) which operate on raw nucleotide sequences, OpenGenomeLLM-70B is designed for clinical reasoning about genomics β answering complex questions like "What is the clinical significance of this BRCA1 variant?" or "Generate an ACMG classification report for this VCF."
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
# Load model
tokenizer = AutoTokenizer.from_pretrained("deepcog-ai/OpenGenomeLLM-70B")
model = AutoModelForCausalLM.from_pretrained(
"deepcog-ai/OpenGenomeLLM-70B",
torch_dtype=torch.bfloat16,
device_map="auto"
)
# Example 1: Variant interpretation
prompt = """Interpret the following variant and provide ACMG classification:
Gene: BRCA1
Variant: c.5266dupC (p.Gln1756ProfsTer25)
Allele frequency (gnomAD): 0.000004
ClinVar submissions: 142 pathogenic, 0 benign"""
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
output = model.generate(**inputs, max_new_tokens=1024, temperature=0.1)
print(tokenizer.decode(output[0], skip_special_tokens=True))
# Install and run via CLI
pip install opengenomellm
opengenomellm download deepcog-ai/OpenGenomeLLM-70B
opengenomellm interpret --vcf patient.vcf --output report.json
OpenGenomeLLM-70B is intended for research and clinical decision support only. It should not replace the judgment of a board-certified clinical geneticist.
@article{deepcog2026opengenomellm,
title = {OpenGenomeLLM: An Open-Source LLM for Genomic
Data Analysis and Clinical Variant Interpretation},
author = {DeepCog AI Research Team},
journal = {arXiv preprint},
year = {2026},
url = {https://opengenomellm.org}
}