Lazarus
Turn dead research code into a callable pipeline component — and give the revival back.
🏆 Winner — Build track, Claude Science hackathon · July 2026
New here? Open the notebook in Colab — a 2-minute, zero-setup tour (no Docker, no GPU): run the dependency pinner live, inspect the revived tools, and see the binder-triage result rendered in 3D.
Contents
- Why — The wall · What Lazarus does
- Does it work? — Six dead repos, resurrected · Reproduces the paper · Measured at scale
- How it works — The Scout writes the plan · Five organs · Runs anywhere
- Use it — Quickstart · Registry & pull · Compose pipelines · The flagship ·
decay-check· Dashboard · Give back - Status · License
The wall
Computational science has a reproducibility problem. A huge fraction of published methods are open, cited, and unrunnable within a few years: the repo is stale, wired to a stack that no longer resolves, and the real capability is buried in scripts with no API. If you're on a small, budget-constrained team, you hit this constantly — the exact method you need exists, but getting it to run costs days you don't have, so it gets abandoned.
What Lazarus does
Lazarus is an agent that revives dead research code, lets you compose the revivals into pipelines, and gives the fixes back to the community.
- Revive — point it at a bare GitHub URL. Lazarus reads the repo and the paper the way a newcomer would and writes its own goal and sanity check, then runs a build → execute → read-traceback → repair loop in a sandbox. Pin dependencies to the commit era, resolve the binary chain, locate the real capability, and emit a fixed integration contract: an importable module, a CLI, a pinned container, and a smoke test that proves it runs on a fresh input and passes the sanity check it defined.
- Compose — because every revival emits the same contract, a revived tool is a composable brick. Wire bricks from any domain/language/era into a pipeline with a small YAML; one command runs them, passing artifacts between steps (local / remote / GPU).
- Give back — the fixes Lazarus finds (rotted URLs, broken paths, a 15-year-old undefined-behavior bug) become maintainer-ready pull requests with CI, so the method can't silently rot again.
Does it work?
Six dead repos, resurrected autonomously
Each revived from its own dead environment using only general heuristics (no repo-specific notes), each emitting a callable package that passes its own smoke test standalone:
| Repo | Flavor | Turns | Result on 4ZQK_A |
|---|---|---|---|
| MaSIF-site (LPDI-EPFL/masif) | Py3.6 · TF 1.12 · surface + MSMS/APBS (revive-and-carve) | 18 | interaction site, ROC-AUC 0.9137 |
| ScanNet (jertubiana/ScanNet) | Py3.6 · TF 1.14 · Keras (revive-and-carve) | 19 | binding site, ROC-AUC 0.9233 |
| dMaSIF (FreyrS/dMaSIF) | Py3.6 · torch cu111 · PyKeOps · GPU, built from scratch | 51 | binding site, ROC-AUC 0.8390 |
| fpocket (2010 SourceForge) | 2010 C, built on modern GCC — a different flavor entirely | 32 | 3 druggable pockets |
The dMaSIF run built a whole CUDA/KeOps GPU environment from a bare image and patched a
source bug to unlock GPU execution the original forced to CPU. The fpocket run fought a
SourceForge download interstitial, a modern-ld link-order break, and a 15-year-old
overlapping-sprintf undefined-behavior bug that modern glibc exposed. Genuinely different
resurrection flavors — TF / CUDA / 2010-C.
Then we pointed it at fields it had never touched, from nothing but a link. From
github.com/davek44/Basset — a 2016 Lua Torch7 genomics CNN — the agent cleared a new
class of decay (a 2016 Docker manifest modern Docker refuses to pull, converted with skopeo)
and caught a silent scientific-correctness bug: the naive run scored mean AUROC 0.675,
but the agent traced it to hg19's soft-masked lowercase bases falling through Basset's
uppercase-only one-hot encoder, patched it, and reproduced the paper — mean AUROC 0.8944 vs
0.895 across all 164 cell types. And from github.com/gcorso/DiffDock — the ICLR-2023
diffusion molecular-docking model — it revived on GPU, and when the shipped example wouldn't
honestly clear DiffDock's own < 2 Å bar, it reproduced the model's ~40 % top-1 rate instead of
faking a pass, landing a 0.35 Å hero dock (6MOA). It refused to ship a green checkmark it
hadn't earned. Details: docs/CHALLENGES.md.
Three-way head-to-head (the three site predictors, scored by one script on identical
PD-L1 residue labels): ScanNet 0.915 · dMaSIF 0.854 · MaSIF 0.823. All localize the
interface (a 13-residue consensus core); the two surface methods (MaSIF & dMaSIF)
agree most (Spearman ρ 0.70). Details: paper/analysis/RESULTS.md.
Reproduces the paper
A smoke test proves a method runs; a benchmark proves it's the method. Lazarus re-ran MaSIF-site on its own transient PPI benchmark — through the built-in download that give-back PR #93 revived — and matched the published number:
| Metric | Paper (Gainza et al. 2020, n=59) | Lazarus (n=15 slice) |
|---|---|---|
| median per-structure ROC-AUC | 0.85 | 0.82 → reproduced (±0.05) |
Every revival can carry this: the contract's benchmark field emits a
REPRODUCE.md certificate with a PASS/OFF
verdict — the trust layer that turns a resurrection into something a team will actually adopt.
Measured at scale
The hero repos are anecdotes. To test the thesis honestly we measured decay and revival on
seeded random samples, every verdict independently re-verified — the frames, seeds, and
per-repo outcomes all live in benchmark/.
First, in one field (N=20, Bioinformatics 2018–2021):
| Result | 95% CI | |
|---|---|---|
| Ran on its own today, agent-free | 3 / 20 — so 85% are dead | 64–95% |
| Revived by Lazarus, of the dead ones | 17 / 17 → 100% | 82–100% |
| Reproduced the paper's own reported metric | 5 / 20 |
Then across science, and across peer review — a controlled study (preprint).
Lazarus has now revived 40+ repos across a dozen fields (astronomy, materials/DFT, plasma
physics, hydrology, thermodynamics, retrosynthesis…), and we used its agent-free decay-check
to compare peer-reviewed software (JOSS, N=173) against unreviewed code linked in papers
(N=257):
| packaging rate | install-decay (fails to install today) | revived by Lazarus | |
|---|---|---|---|
| Reviewed (JOSS) | 95% | 37% | ~92% |
| Unreviewed (EPMC) | 42% | 61% | ~92% |
Both gaps are statistically significant — yet the agent revives reviewed and unreviewed code
equally well. The finding: the reviewed/unreviewed gap is packaging discipline, not
recoverability. Peer review predicts whether code installs, not whether the science can be
brought back. Full methods: paper/CROSSDOMAIN_METHODS.md;
per-repo data: paper/supplement/.
How it works
Point it at a URL — the Scout writes the plan
You don't hand Lazarus a goal; you hand it a link. A web-enabled Scout reads the repo and paper (and only those — never your notes) and drafts the whole plan: the capability to revive, a base image, and a falsifiable sanity check. Then it pauses for your OK before spending a turn.
lazarus resurrect https://github.com/jertubiana/ScanNet
Run cold against ScanNet with no hints, the Scout reconstructed — from the URL alone — a plan matching the one a human expert hand-wrote after days of work:
| Human, after days of setup | Scout, from the URL alone | |
|---|---|---|
| Capability | per-residue binding-site probabilities | ✅ same |
| Test input | 4ZQK chain A (PD-L1) | ✅ same |
| Sanity check | ROC-AUC ≥ 0.70 vs the 5 Å interface | ✅ identical |
| Base image | (supplied by hand) | ✅ found the real jertubiana/scannet on Docker Hub |
| Known traps | issues #14 & #15 (hand-noted) | ✅ surfaced both unaided — the two we later fixed upstream |
That's the democratization step: the expert judgment of what "revived" even means becomes something you get from pasting a link.
Five organs
| Organ | Role |
|---|---|
| Scout | Reads a bare repo URL + its paper (web-enabled, but blind to your notes) and drafts the resurrection plan: capability, base image, and a falsifiable sanity check — so a revival starts from a link, not a hand-written goal. |
| Sandbox | Disposable container (CPU or GPU); expensive successes are snapshotted so a later failure never re-pays the build. |
| Commit-era pinner | Reconstructs the dependency universe as it was on the repo's last commit — the reasoning that beat the cu111/KeOps/cppyy tangle. |
| Repair loop | build → run → read traceback → patch → retry, bounded, isolated to the container. |
| Capability locator | Finds where "input → the famous output" happens and carves the minimal path to it. |
| Contract emitter | Module + CLI + pinned container + smoke test — CPU or GPU, verified callable on its own. |
Runs on a laptop, executes anywhere
Lazarus runs on your machine; where it executes is pluggable via one flag — a local
container, a remote x86 box, a cloud VM, or a GPU rental — for methods (like MaSIF's
MSMS or dMaSIF's CUDA) whose binaries need hardware laptop emulation can't provide. The
agent's tools and the emitted predict.py both run against whatever --docker-host /
DOCKER_HOST points at, so the whole chain is host-agnostic.
Use it
Quickstart
pip install lazarus-bio # the tooling: pinner, compose, contracts
pip install "lazarus-bio[agent]" # + the autonomous revive loop & Scout (Python ≥ 3.10 + Docker)
# or, to hack on Lazarus itself:
# git clone https://github.com/DoctorDean/lazarus && cd lazarus
# pip install -e ".[dev,agent]"
# commit-era dependency pinning — no repo execution required
lazarus pin --date 2019-01-01 tensorflow numpy scipy
# tensorflow==1.12.0 (matches MaSIF's real Dockerfile, not its README)
# resurrect straight from a URL — the Scout writes the goal + picks the image,
# then pauses for your OK before spending compute (needs Docker + Claude auth)
lazarus resurrect https://github.com/jertubiana/ScanNet
# …or drive it by hand with an explicit image + goal (both override the Scout)
lazarus resurrect --image pablogainza/masif:latest --workdir /masif \
--goal-file examples/masif_site_goal.txt --keep
Auth: Lazarus drives Claude via the Claude Agent SDK.
Log in the claude CLI (subscription) or put ANTHROPIC_API_KEY=... in a gitignored .env.
The registry — pull a revived tool
Every revival lands in a living registry, so you don't have to re-resurrect what someone already did. Browse it and pull any tool's contract — an importable module, a CLI, a pinned container, and the smoke test that proves it runs:
lazarus registry # list the revived tools
lazarus pull scannet_ppi_binding_sites # fetch its contract bundle
25 tools are in today, spanning a dozen fields — the protein-surface / docking / genomics
hero set (MaSIF-site, ScanNet, dMaSIF, fpocket, Basset, DiffDock) plus cross-domain revivals
like PyAMG (numerical linear algebra), matador (materials / DFT), AiZynthFinder
(retrosynthesis), AHGestimation (hydrology), DESPASITO (thermodynamics), W2W (urban
climate), and Scikit-Topt (topology optimization). 23 are pullable straight from GHCR;
dMaSIF (CC BY-NC-ND, no-derivatives) and Sequoya (54 GB) rebuild locally via Lazarus — see
docs/IMAGES.md. Adding a tool is a pull request: see CONTRIBUTING.md.
Compose — a pipeline from revived bricks
examples/pipelines/binder_triage.yaml assembles methods that were each individually
unrunnable a week ago into one binder-triage pipeline:
structure ─▶ ScanNet ─┐
─▶ dMaSIF ──┼─▶ consensus ─▶ interface residues that also line a druggable pocket
─▶ fpocket ─┘
lazarus run examples/pipelines/binder_triage.yaml \
--input structure=4ZQK.pdb \
--registry examples --registry components \
--docker-host ssh://you@your-x86-gpu-box
Run live on PD-L1, it concluded: 27 interface residues (115, 123, 56, 121, 113…), but
0 druggable pockets → "the interface is clearly localized but not a druggable small-
molecule pocket — a flat protein-protein interface, i.e. an antibody/biologic target."
That's textbook immuno-oncology (PD-1/PD-L1 is an antibody target), reproduced from dead
code. Sample output: examples/pipelines/sample_output_4ZQK/.
The flagship — four dead tools find a real drug pocket
pipelines/target_dock_consensus.yaml asks the same
question of a different target and goes a step further: it doesn't just locate the site, it
docks a drug into it. Four tools spanning 2010→2023, C→Python, CPU→GPU,
geometry→learned→generative, feeding one consensus adapter:
─▶ fpocket (2010 C · geometry) ─┐
complex ─▶ ScanNet (learned · PPI-site) ─┼─▶ consensus ─▶ CONFIRMED small-molecule site
─▶ DiffDock (2023 · generative · GPU) ─┤
─▶ EquiBind (generative · CPU) ─┘
lazarus run pipelines/target_dock_consensus.yaml \
--input complex=6moa.pdb --input ligand_smiles=jw4.smi \
--registry examples --registry pipelines \
--docker-host ssh://you@your-x86-gpu-box
Run live on BRD2's BD2 bromodomain (PDB 6MOA), a validated BET oncology target, the four methods reinforce rather than cancel. fpocket scores its top pocket druggability 0.93; ScanNet, asked the PPI question over those same residues, stays quiet (mean p 0.26) — a small-molecule cleft, not an interface. Both dockers land inside that pocket, 0.20 Å and 0.84 Å from the crystal ligand's centroid, and both converge on Asn429 (the conserved acetyl-lysine anchor) and Trp370 (the WPF-shelf tryptophan) — the real BET pharmacophore, not merely somewhere on the protein. Same question as PD-L1, opposite answer, this one cross-validated sub-Å against the drug already sitting in the crystal structure.
The full run is committed at
pipelines/sample_output_6MOA/ — every output file, the exact
command, and a note on which numbers are deterministic and which move between runs (DiffDock is
generative; the verdict and the pharmacophore are stable, the second decimal isn't).
Is it dead? Measure it — decay-check
The agent-free flip side of reviving: does a repo still install and run today? — the same signal behind the numbers above. No agent, no API key.
lazarus decay-check https://github.com/owner/repo # RUNS / DECAYED + a reason code
It's also a GitHub Action — drop it in any repo's CI as a reproducibility canary that goes red the day the code stops running:
- uses: DoctorDean/lazarus/actions/decay-check@v0.3.0
with: { fail-on-decay: true }
Try it — the dashboard
A public "try it" surface: search a GitHub repo, watch it come back to life, browse the registry.
uvicorn demo.dashboard.app:app --port 8080 # → http://localhost:8080
Give back
For the genuinely-abandoned repos, Lazarus prepares maintainer-ready PRs — the real fix plus a CI smoke test so it can't silently rot again:
- MaSIF — PR #93 — the rotted PDB download,
fixed (direct RCSB fetch); verified to revive the built-in flow at ROC-AUC 0.9137. →
giveback/masif/ - ScanNet — PR #16 —
library_folder=''made to auto-detect the repo root; verified. →giveback/scannet/
(dMaSIF is skipped — CC BY-NC-ND, no-derivatives; fpocket's upstream is alive.)
Status
Working today: Scout (URL → resurrection plan) · pinner · Docker sandbox (local + ssh://
remote + --gpus) · autonomous repair loop · capability locator · contract emitter (GPU-aware,
with reproduction certificates) · Lazarus Compose · a registry of revived tools · a
public dashboard · an agent-free decay-check (CLI + GitHub Action). All three pillars
landed — a hero set of dead repos revived across protein, genomics, and molecular docking, a
three-way method comparison, a live binder-triage pipeline, a four-brick flagship that finds and
docks into a real drug pocket (BRD2 / 6MOA), reproduced paper
benchmarks, and two give-back PRs — plus a systematic measurement: an N=20 benchmark (85% dead,
100% of the dead revived) and a cross-domain reproducibility study — 40+ revivals across a dozen
fields, reviewed vs. unreviewed decay (preprint) — and a
registry of 25 tools (23 pullable from GHCR). 91 passing tests, published to PyPI
(pip install lazarus-bio).
Contributions welcome — add a repo, curate a registry entry, or file a revival that failed.
Start at CONTRIBUTING.md. Development happens on the next branch.
Two front doors: a zero-setup Colab notebook for newcomers (no Docker/GPU — pinner live + the result rendered in 3D), and the interactive dashboard — search a repo, watch it come back to life, and browse the registry.
License
MIT — see LICENSE.