Optimizers from the nucleobench package.
Project description
NucleoBench
A large-scale benchmark for modern nucleic acid sequence design algorithms (NucleoBench), and a new design algorithm that outperforms existing designers (AdaBeam). Link to ICML GenBio 2025 workshop paper here.
This repo is intended to be used in a few ways:
- Design a DNA sequence with selective expression in a cell-type (or any other target property in the benchmark, see list here), using the AdaBeam algorithm (or any of the ones listed here)
- Design a DNA sequence with high binding affinity for a specific transcription factor (such as the ones listed here), using the AdaBeam algorithm (or any of the ones listed here)
- Design a DNA or RNA sequence for a new task, using any designer (see tutorial here)
- Run a new design algorithm on NucleoBench tasks.
Citation
Please cite the following publication when referencing NucleoBench or AdaBeam:
@inproceedings{nucleobench,
author = {Joel Shor and Erik Strand and Cory Y. McLean},
title = {{NucleoBench: A Large-Scale Benchmark of Neural Nucleic Acid Design Algorithms}},
booktitle = {GenBio ICML 2025},
year = {2025},
publisher = {PMLR},
url = {https://www.biorxiv.org/content/10.1101/2025.06.20.660785},
doi = {10.1101/2025.06.20.660785},
}
Contents
Quick Start
NucleoBench is provided via PyPi, Docker, or source.
Get started in 1 minute (pip install)
Install nucleobench on your terminal:
# Choose one.
pip install nucleobench # optimizers and tasks
pip install nucleopt # smaller, faster install for just optimizers
Then run in Python:
# 1. Choose a model (task).
from nucleobench import models
model = models.get_model('substring_count')
model_init_args = model.debug_init_args()
model_init_args['substring'] = 'ATGTC'
model_fn = model_obj(**model_init_args)
# 2. Choose an optimizer.
from nucleobench import optimizations
opt_init_args = opt_obj.debug_init_args()
opt_init_args['model_fn'] = model_fn
opt_init_args['start_sequence'] = 'A' * 100
designer = opt_obj(**opt_init_args)
# 3. Run the designer and show the results.
designer.run(n_steps=100)
ret = designer.get_samples(1)
ret_score = model_fn(ret)
print(f'Final score: {ret_score[0]}')
print(f'Final sequence: {ret[0]}')
Output:
Step 99 current scores: [np.float64(508.0), np.float64(507.0), np.float64(506.0), np.float64(505.0), np.float64(504.0), np.float64(503.0), np.float64(503.0), np.float64(502.0), np.float64(502.0), np.float64(502.0)]
Final score: -508.0
Final sequence: AGATGTCATATATGATGTCATGTCATGTCGTCATGTCTGTCTCTCATGTATGTCATGTCTATGTCTGTCTATGTCTATGTCTATGTCATGTCTATGTCTC
This "recipe" can be found under recipes/python/adabeam_substring.py.
Get started in 3 minutes (docker image pull)
Get the image:
docker image pull joelshor/nucleobench:latest
Output:
latest: Pulling from joelshor/nucleobench
Digest: sha256:602230b568c0f15acfa7a0b6723ffb16fab6f32c37ae5b88c71763fb722ab5c3
Status: Image is up to date for joelshor/nucleobench:latest
docker.io/joelshor/nucleobench:latest
Make a directory for output:
readonly output="./output/docker_recipe/adabeam_atac"
mkdir -p "${output}"
readonly fullpath="$(realpath $output)"
Then run it:
docker run \
-v "${fullpath}":"${fullpath}" \
joelshor/nucleobench:latest \
--model substring_count \
--substring 'ATGTC' \
--optimization adabeam \
--beam_size 2 \
--n_rollouts_per_root 4 \
--mutations_per_sequence 2 \
--rng_seed 0 \
--max_seconds 15 \
--optimization_steps_per_output 5 \
--proposals_per_round 2 \
--output_path ${fullpath} \
--start_sequence AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Output:
Completed round 3441 (5 steps) took 0.00s. Avg 0.00s per step.
Proposals deposited at:
/Users/joelshor/Desktop/docker_test/output/docker_recipe/adabeam_atac/adabeam_substring_count/20250731_194857/20250731_194912.pkl
This "recipe" can be found under recipes/docker/adabeam_atac.sh.
Get started in 5 minutes (git clone)
git clone https://github.com/move37-labs/nucleobench.git
cd nucleobench
conda env create -f environment.yml
conda activate nucleobench
Now run the main entrypoint:
python -m docker_entrypoint \
--model substring_count \
--substring 'ATGTC' \
--optimization adabeam \
--beam_size 2 \
--n_rollouts_per_root 4 \
--mutations_per_sequence 2 \
--rng_seed 0 \
--max_seconds 15 \
--optimization_steps_per_output 5 \
--proposals_per_round 2 \
--output_path ./output/python_recipe/adabeam_atac \
--start_sequence AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Output:
...
Completed round 3820 (5 steps) took 0.00s. Avg 0.00s per step.
0%| | 3821/99999999 [00:14<109:01:33, 254.77it/s]
Proposals deposited at:
./output/python_recipe/adabeam_atac/adabeam_substring_count/20250731_162119/20250731_162134.pkl
This "recipe" can be found under recipes/python/adabeam_atac.py.
Details
NucleoBench is a large-scale comparison of modern sequence design algorithms across 16 biological tasks (such as transcription factor binding and gene expression) and 9 design algorithms. NucleoBench, compares design algorithms on the same tasks and start sequences across more than 400K experiments, allowing us to derive unique modeling insights on the importance of using gradient information, the role of randomness, scaling properties, and reasonable starting hyperparameters on new problems. We use these insights to present a novel hybrid design algorithm, AdaBeam, that outperforms existing algorithms on 11 of 16 tasks and demonstrates superior scaling properties on long sequences and large predictors. Our benchmark and algorithms are freely available online.
Comparison of nucleic acid design benchmarks
| NAME | YEAR | ALGOS | TASKS | SEQ. LENGTH (BP) | DESIGN BENCHMARK | LONG SEQS | LARGE MODELS | PAIRED START SEQS. |
|---|---|---|---|---|---|---|---|---|
| Fitness Landscape Exploration Sandbox | 2020 | 4-6 | 9 | Most <100 | ✅ | ❌ | ❌ | ✅ |
| Computational Optimization of DNA Activity | 2024 | 3 | 3 | 200 | ✅ | ❌ | ❌ | ✅ |
| gRelu | 2024 | 2 | 5 | 500K (20 edit) | ❌ | ❌ | ✅ | ❌ |
| Linder et al repos | 2021 | 2 | 20 | <600 | ✅ | ❌ | ❌ | ❌ |
| NucleoBench (ours) | 2025 | 9 | 16 | 256-3K | ✅ | ✅ | ✅ | ✅ |
Table: Nucleic acid design from sequence benchmarks. All benchmarks prior to NucleoBench are limited either in the range of tasks they measure against, the range of optimizations they compare, or the complexity of the task.
Summary of tasks in NucleoBench
| TASK CATEGORY | MODEL | DESCRIPTION | NUM TASKS | SEQ LEN (BP) | SPEED (MS / EXAMPLE) |
|---|---|---|---|---|---|
| Cell-type specific cis-regulatory activity | Malinois | How DNA sequences control gene expression from the same DNA molecule. Cell types are: precursor blood cells, liver cells, neuronal cells. | 3 | 200 | 2 |
| Transcription factor binding | BPNet-lite | How likely a specific transcription factor (TF) will bind to a particular stretch of DNA. Specific TFs: CTCF, E2F3, ELF4, GATA2, JUNB, MAX, MECOM, MYC, OTX1, RAD21, SOX6 | 11 | 3000 | 55 |
| Chromatin accessibility | BPNet-lite | Chromatin accessibility | 1 | 3000 | 260 |
| Selective gene expression | Enformer | Prediction of gene expression. We optimize for maximal expression in muscle cells, minimal expression in liver cells. | 1 | 196,608 / 256 * | 15,000 |
*Input length is 200K, but only 256 bp are edited.
Summary of designers in NucleoBench
| Algo | Description | Gradient-based |
|---|---|---|
| Directed Evolution | Random mutations, track the best. | ❌ |
| Simulated Annealing | Greedy optimization with random jumps. | ❌ |
| AdaLead | Iterative combining and mutating of a population of sequences. | ❌ |
| FastSeqProp | Sampling and the straight-through estimator for maximal input. | ✅ |
| Ledidi | Sampling and the gumbel softmax estimator for maximal input. | ✅ |
| --- | ||
| Ordered Beam | Greedy search, in fixed sequence order, with cache. | ❌ |
| Unordered Beam | Greedy search with cache. | ❌ |
| Gradient Evo | Directed Evolution, guided by model gradients. | ✅ |
| AdaBeam (ours) | Hybrid of Unordered Beam and improved AdaLead. | ❌ |
Table: Summary of designers in NucleoBench. Above the solid line are designers already found in the nucleic acid design literature. Below the line are designers from the search literature not previously used to benchmark nucleic acid sequence design and hybrid algorithms devised in this work.
FAQ
- How can I add a new task to NucleoBench? A: Follow this colab notebook.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
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 nucleopt-1.0.3.tar.gz.
File metadata
- Download URL: nucleopt-1.0.3.tar.gz
- Upload date:
- Size: 56.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98e9b48cdc9d3112a0d837556e6ffe70af4609058ae7222dc148fee19be9fbf5
|
|
| MD5 |
be5e6ebf560e9c18a7e27260e60c9ebf
|
|
| BLAKE2b-256 |
40e03bfa65a0742d1352302135943bb28043e5af3b3b07b5fe6dc6248804898f
|
File details
Details for the file nucleopt-1.0.3-py3-none-any.whl.
File metadata
- Download URL: nucleopt-1.0.3-py3-none-any.whl
- Upload date:
- Size: 73.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2532237be3f67f86578fc981a4d0ab67cb3fa0ef2daf20ae4e5364b9782e7f9f
|
|
| MD5 |
d18cc12f90c8d7df6e6480401fb630b2
|
|
| BLAKE2b-256 |
a582bd030f36feb3322a196414980782340c7087ca756fcc2152978e4d104ce8
|