Skip to main content

RetroCast: A Unified Format for Multistep Retrosynthesis

isChemist Protocol v1.0.0 Ruff ty coverage arXiv

RetroCast is a comprehensive toolkit for standardizing, scoring, and analyzing multistep retrosynthesis models. It decouples prediction from evaluation, allowing rigorous, apples-to-apples comparison of disparate algorithms on a unified playing field.

The Crisis of Evaluation

The field of retrosynthesis is fragmented.

  1. Incompatible Outputs: AiZynthFinder outputs bipartite graphs; Retro* outputs precursor maps; DirectMultiStep outputs recursive dictionaries. Comparing them requires writing bespoke parsers for every paper.
  2. Ad-Hoc Metrics: "Solvability" is often calculated differently across publications, with varying definitions of commercial stock (e.g., using made-to-order libraries vs. actual off-the-shelf compounds).
  3. Flawed Benchmarks: The standard PaRoutes n5 dataset is heavily skewed (74% of routes are length 3-4), masking performance failures on complex targets. Furthermore, the standard stock definition for PaRoutes creates synthetic "ground truths" that are often physically unobtainable.

RetroCast solves this. It provides a canonical schema, adapters for 10+ models, and rigorous statistical evaluation to turn retrosynthesis from a qualitative art into a quantitative science.


Key Features

  • Universal Adapters: "Air-gapped" translation layers for AiZynthFinder, *Retro**, DirectMultiStep, SynPlanner, Syntheseus, ASKCOS, RetroChimera, DreamRetro, MultiStepTTL, SynLlama, and *PaRoutes*.
  • Canonical Schema: All routes are cast into a strict schema-2 Molecule / Reaction tree.
  • Rust Core: Every built-in planner adapter, ingest, scoring, and analysis runs in Rust, with canonical SMILES, InChIKeys, and molecular descriptors calculated through RDKit C++.
  • Curated Benchmarks: Includes the Reference Series (for algorithm comparison) and Market Series (for practical utility), stratified by route length and topology to eliminate statistical noise.
  • Rigorous Statistics: Built-in bootstrapping (95% CI), pairwise tournaments, and probabilistic ranking. No more "Model A is 0.1% better than Model B" without significance testing.
  • Reproducibility: Every artifact is tracked via cryptographic manifests (SHA256).

Installation

The Python package includes the native engine and its RDKit C++ libraries; it does not install Python RDKit. Install it when you want import retrocast:

uv add retrocast

The standalone Rust executable provides the retrocast CLI and is published separately on the GitHub Releases page. Download the archive for linux-x86_64, macos-arm64, macos-x86_64, or windows-x86_64; each archive contains retrocast and the RDKit libraries it was built and smoke-tested with. It does not require Python, Conda, Rust, or a separately installed RDKit.

Markdown docs are formatted with oxfmt and kept unwrapped (proseWrap: "never"). Use pnpm docs:fmt to normalize docs formatting or pnpm docs:fmt:check to verify it in review/CI.

Get Data

Latest Data (Updated Regularly)

For the most up-to-date benchmarks and stocks, use the RetroCast CLI:

# Download a specific benchmark (includes definition + required stock)
retrocast get-data mkt-cnv-160

Publication Data (Frozen)

The complete data/ folder as used in the preprint is available at files.ischemist.com/retrocast/publication-data:

# Show available folders and their sizes
curl -fsSL https://files.ischemist.com/retrocast/get-pub-data.sh | bash -s

# Download all benchmark definitions
curl -fsSL https://files.ischemist.com/retrocast/get-pub-data.sh | bash -s -- definitions

you can verify the integrity of downloaded files against the manifests by running

retrocast verify --all

that command might warn you about missing files---that is expected. Manifests for, say 4-scored, contain hashes of input files from 3-results, and if you downloaded only 4-scored, you will get warnings about missing 3-results files.

a dump of the sqlite db with the stocks, routes, and results loaded into SynthArena can be found in ischemist/syntharena repo.


Quick Start

1. The Ad-Hoc Workflow

Have a raw output file from a model? Score it immediately.

# Convert raw AiZynthFinder JSON to RetroCast format
retrocast adapt \
    --input raw_predictions.json.gz \
    --adapter aizynthfinder \
    --output candidates.json.gz

# Align predictions to benchmark-keyed candidates
retrocast collect \
    --input candidates.json.gz \
    --benchmark data/retrocast/1-benchmarks/definitions/ref-lin-600.json.gz \
    --output collected-candidates.json.gz

# Score against a stock file
retrocast score-file \
    --benchmark data/retrocast/1-benchmarks/definitions/ref-lin-600.json.gz \
    --candidates collected-candidates.json.gz \
    --stock data/retrocast/1-benchmarks/stocks/n5-stock.csv.gz \
    --output scores.json.gz \
    --model-name "My-Experimental-Model"

2. The Project Workflow

For full-scale benchmarking, RetroCast enforces a structured data lifecycle: Ingest $\to$ Score $\to$ Analyze.

model-specific prediction runners were extracted from this repo and now live in project-pandora. use RetroCast here for standardization, scoring, and analysis; use pandora when you need the upstream model-runner scripts.

Inspect project paths:

retrocast config

Project mode reads raw model outputs from data/retrocast/2-raw/<model>/<benchmark>/. Pass the adapter on the command line, or put a manifest.json next to the raw results file:

{
  "directives": {
    "adapter": "directmultistep",
    "raw_results_filename": "predictions.json"
  }
}

Evaluate planner output:

# 1. Ingest: Standardize raw outputs from data/retrocast/2-raw/
retrocast ingest --model dms-explorer --dataset ref-lin-600 --adapter directmultistep

# 2. Score: Evaluate against the benchmark's defined stock
retrocast score --model dms-explorer --dataset ref-lin-600

# 3. Analyze: Generate bootstrap statistics
retrocast analyze --model dms-explorer --dataset ref-lin-600

The all-in-one command evaluates each target and releases its route graphs after preparing their analysis contributions:

retrocast evaluate \
  --raw data/retrocast/2-raw/aizynthfinder-run/mkt-cnv-160 \
  --adapter aizynthfinder \
  --benchmark data/retrocast/1-benchmarks/definitions/mkt-cnv-160.json.gz \
  --stock data/retrocast/1-benchmarks/stocks/buyables-stock.csv.gz \
  --output-dir native-results \
  --workers 12

This writes candidates.json.gz, evaluation.json.gz, analysis.json.gz, evaluation-run.json, and a verifiable manifest.json.

Output: A schema-v2 analysis report in data/retrocast/5-results/.


The Benchmarks

RetroCast introduces two new benchmark series derived from PaRoutes, fixing the skew and stock issues of the original dataset. These subsets were selected via seed stability analysis to ensure they are statistically representative of the underlying difficulty distribution.

The Reference Series (ref-)

Target Audience: Algorithm Developers Designed to compare search algorithms (e.g., MCTS vs. Retro* vs. Transformers). Uses the internal PaRoutes stock to isolate search failures from stock availability issues.

Benchmark Targets Description
ref-lin-600 600 Linear routes stratified by length (100 each for lengths 2–7).
ref-cnv-400 400 Convergent routes stratified by length (100 each for lengths 2–5).
ref-lng-84 84 All available routes of extreme length (8–10 steps).

The Market Series (mkt-)

Target Audience: Computational Chemists Designed to assess practical utility. Targets are filtered to be solvable using Buyables, a curated catalog of 300k compounds available for <$100/g.

Benchmark Targets Description
mkt-lin-500 500 Linear routes solvable with commercial buyables (Stratified).
mkt-cnv-160 160 Convergent routes solvable with commercial buyables (Stratified).

Python API

RetroCast is also a library. You can use it to integrate standardization directly into your training or inference loops.

adapt, ingest, score, and analyze use the same Rust core as the standalone retrocast executable for every built-in adapter. There is no Python/Rust engine selector and no Python implementation inside the wheel.

External planner runners can also use the Rust-owned producer contracts directly:

import retrocast

task = retrocast.load_task("benchmark.json.gz")
stock_smiles = retrocast.load_stock("buyables-stock.csv.gz")
retrocast.write_json_gz(raw_results, "results.json.gz")
manifest = retrocast.create_planner_manifest(
    "planner-run",
    "aizynthfinder",
    "results.json.gz",
    ["benchmark.json.gz", "buyables-stock.csv.gz"],
    ".",
)

Structural task loading, explicit chemistry validation, stock parsing, artifact serialization, execution-stat validation, and manifest provenance stay in retrocast-core; the runner owns model-specific serialization, logging, and progress presentation.

import retrocast

# Your model's raw output (any supported format)
raw_output = {
    "smiles": "CC(=O)Oc1ccccc1C(=O)O",
    "children": [...]
}

# Cast to canonical schema dictionaries.
candidates = retrocast.adapt([raw_output], "directmultistep")
route = candidates[0].get("route")

if route is None:
    raise ValueError("Could not adapt route")

print(route["target"]["smiles"])

Visualization: SynthArena

RetroCast powers SynthArena, an open-source web platform for visualizing and comparing retrosynthetic routes.

  • Compare predictions from any two models side-by-side.
  • Visualize ground truth vs. predicted routes with diff overlays.
  • Inspect stratified performance metrics interactively.

Vision: Structural AI for Chemistry

We distinguish between two fundamental classes of problems in scientific machine learning: quantitative (predicting scalar targets like toxicity or binding affinity) and structural (generating complex objects governed by an underlying grammar). Quantitative problems, analogous to early NLP challenges like sentiment analysis, are often constrained by data scarcity. In contrast, the most transformative AI breakthroughs—from large language models to AlphaFold—have occurred in structural domains.

Mastery of structure is a prerequisite for solving downstream quantitative tasks. Foundation models trained on the structure of language, for instance, now excel at sentiment analysis with little to no task-specific fine-tuning. In organic chemistry, the paramount structural challenge is retrosynthesis: designing a valid synthetic pathway to a molecule of interest. This capability is the key to unlocking critical quantitative problems like predicting synthetic accessibility, a significant bottleneck in drug discovery. Current accessibility heuristics, however, bypass the core structural challenge, relying on learned patterns that correlate with accessibility without ever generating the pathway itself.

A model cannot judge the difficulty of a journey it cannot first articulate.

Achieving structural mastery in retrosynthesis is a long journey—one that requires moving beyond fragmented data formats, inconsistent evaluation methods, and unreliable metrics. Progress demands unified, rigorous infrastructure to standardize outputs, track provenance, and measure improvements with statistical rigor.

RetroCast is that infrastructure.

Citation

If you use RetroCast in your research, please cite:

@misc{retrocast,
  title         = {Procrustean Bed for AI-Driven Retrosynthesis: A Unified Framework for Reproducible Evaluation},
  author        = {Anton Morgunov and Victor S. Batista},
  year          = {2025},
  eprint        = {2512.07079},
  archiveprefix = {arXiv},
  primaryclass  = {cs.LG},
  url           = {https://arxiv.org/abs/2512.07079}
}

License

MIT License. See LICENSE for details.

Download files

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

Source Distribution

retrocast-0.8.2.tar.gz (153.2 kB view details)

Uploaded Source

Built Distributions

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

retrocast-0.8.2-cp311-abi3-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.11+Windows x86-64

retrocast-0.8.2-cp311-abi3-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ x86-64

retrocast-0.8.2-cp311-abi3-macosx_11_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11+macOS 11.0+ x86-64

retrocast-0.8.2-cp311-abi3-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

Details for the file retrocast-0.8.2.tar.gz.

File metadata

  • Download URL: retrocast-0.8.2.tar.gz
  • Upload date:
  • Size: 153.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for retrocast-0.8.2.tar.gz
Algorithm Hash digest
SHA256 b0184ec0e85362f2ab8a2aa2e09cee2b4592d694b41ba2fb40cb61370a6c9b06
MD5 26ee775074ca522751ad0ee8927a4b06
BLAKE2b-256 0ab7c98d2417bdc6f4ab00386407d4cf5bdaec0aea56dd3a39d231bb8464df58

See more details on using hashes here.

Provenance

The following attestation bundles were made for retrocast-0.8.2.tar.gz:

Publisher: publish-pypi.yml on ischemist/project-procrustes

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

File details

Details for the file retrocast-0.8.2-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: retrocast-0.8.2-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for retrocast-0.8.2-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 71d8e9530fa00573a87bb933796c654f6e174e17632d6c1f8b6c9e562c86f457
MD5 f57c23e92952ba6ea4c9339a1305cfdd
BLAKE2b-256 b826432fe7d7ed78ddcddf48870fd6d661e1737c7dc894ff69cddbdde9ad1c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for retrocast-0.8.2-cp311-abi3-win_amd64.whl:

Publisher: publish-pypi.yml on ischemist/project-procrustes

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

File details

Details for the file retrocast-0.8.2-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for retrocast-0.8.2-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 639d3f96f310ad00134b99aa137cb2b7def845e7b833e165d20b2b54b455ed52
MD5 38483a49bf06db0ad26b464ab09fa4c2
BLAKE2b-256 6a2f0e6eee497d450c0a6462cd30e49b16e4ff56fdd165920cff498c62d9ad55

See more details on using hashes here.

Provenance

The following attestation bundles were made for retrocast-0.8.2-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on ischemist/project-procrustes

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

File details

Details for the file retrocast-0.8.2-cp311-abi3-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for retrocast-0.8.2-cp311-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e71b91129545f4aa7289623282edba1e76e71b2dbe3ad68646b34b0237557d10
MD5 454fdbdbca8b51e4024a72c51a1ad676
BLAKE2b-256 f6313f54696e5348c8729d84b828241e2b3c826db523bdd568ef958187ff7dc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for retrocast-0.8.2-cp311-abi3-macosx_11_0_x86_64.whl:

Publisher: publish-pypi.yml on ischemist/project-procrustes

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

File details

Details for the file retrocast-0.8.2-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for retrocast-0.8.2-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8ff1c5ff3172fc6db024a82f663fcf701b833670f292b0aa6e98f593bd7e97a
MD5 46e1c47d9d446667e5bafa4fbf7fafb4
BLAKE2b-256 0c8a9d3da55e47baf0fc23eac46c07a8ea41d8b6e22187dd80e221f4553a3538

See more details on using hashes here.

Provenance

The following attestation bundles were made for retrocast-0.8.2-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on ischemist/project-procrustes

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

Release history Release notifications | RSS feed

0.8.3

5 files

This release

0.8.2 This release

5 files

0.8.1

5 files

0.8.0

5 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

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