Reproducible, date-pinned, ligand-aware train/val/test splitter for the PDB (LigandMPNN-style).
Project description
IF-Split
A reproducible, date-pinned, ligand-aware train/val/test splitter for the PDB.
IF-Split borrows the split logic of LigandMPNN (Dauparas et al., Nature Methods 2025) — cluster proteins at 30% sequence identity, partition so no cluster spans two splits, categorize the test set by ligand class — but instead of inheriting a frozen 2022 snapshot it generates the split on demand from today's PDB, and emits a lock file so a collaborator can reproduce the exact dataset later. See PLAN.md for the full design spec.
It is built entirely on RCSB metadata (the Search + Data APIs): no structure coordinates are downloaded to build a split — only tiny per-entry records and sequences. Coordinates are an optional, downstream concern.
Why it's different
| Fresh | Builds from the current PDB, not a years-old frozen copy. |
| Reproducible | A dataset.lock pins the snapshot; verify re-derives it and reports any drift. |
| Cheap | Metadata-only — a split is megabytes of JSON, not a terabyte of mmCIF. |
| Honest about quality | Every ligand is tiered (functional / ambiguous / artifact) with a reason; nothing is silently dropped. |
Two reproducibility guarantees
- Snapshot by release date, not query time. Entries are selected by
release_date <= snapshot_date. Re-running with the samesnapshot_dateyields the same candidate set no matter when you run it (obsoleted entries are tracked, not silently dropped). - Deterministic cluster → split assignment. A cluster's split is decided by
hashing a stable cluster key into the cumulative split fractions — independent
of how many other clusters exist. Existing clusters never move when the PDB
grows, which is what prevents train/test leakage on regeneration. A
splits.registry.jsonpins prior assignments to make this exact even across re-clustering.
Install
Requires Python ≥ 3.11 and uv. build needs
only network access to RCSB — no external binaries. (The optional mmseqs2
clustering backend and the optional coordinate/featurization path via gemmi
are Linux-native, so run under Linux/WSL if you use them.)
uv sync # creates .venv from uv.lock, installs deps + dev tools (ruff, pytest)
uv.lock is committed, so environments are reproducible.
Quickstart
# Build the full split from today's PDB (metadata only).
uv run if-split build --config config/default.yaml --out data/out
# Dev: cap to the first N candidates (by sorted entry id — still reproducible).
uv run if-split build --limit 50 --out /tmp/ifs
# Summarize a build: split sizes, per-class test counts, curation tiers.
uv run if-split stats data/out/manifest.json
# Reproduce-check: re-derive from a lock and report drift vs the live PDB.
uv run if-split verify data/out/dataset.lock
# Growth-stable regeneration: pin prior cluster→split assignments.
uv run if-split build --registry data/out/splits.registry.json --out data/out2
# OPTIONAL: download the actual structures for a built split (see below).
uv run if-split fetch data/out/manifest.json --split test --out data/structures
Outputs (--out directory)
| File | Purpose |
|---|---|
candidates.jsonl |
The snapshot definition — one canonical JSON record per entry. Hashed into the lock. |
dataset.lock |
Reproduction anchor: embedded config + candidates SHA-256 + entry list. |
manifest.json |
Human-facing run record: per-split entry lists, ligand classes + tiers, per-class (and ambiguous) counts, drop log, cluster/leakage stats, entry→cluster map. |
splits.registry.json |
cluster key → split, for growth-stable regeneration. |
Downloading structures (fetch)
build produces a tiny, coordinate-free split. When you actually want the mmCIF
files — to featurize or train — fetch hydrates a built manifest into a
clean, ML-ready tree. It is opt-in and downstream: nothing about a split
requires coordinates.
# Scope is explicit by design (no accidental terabyte): choose splits or --all.
uv run if-split fetch data/out/manifest.json --split test # just test
uv run if-split fetch data/out/manifest.json --split train --split val # repeatable
uv run if-split fetch data/out/manifest.json --all --yes --workers 16 # everything
uv run if-split fetch data/out/manifest.json --all --asymmetric-unit # AU not assembly 1
fetch prints an estimated download size first and refuses pulls over ~1000
structures without --yes. It is resumable (existing, valid files are
skipped) and parallel (--workers).
Layout — browsable and scalable
Files are split-partitioned (so you can ls a split) and sharded by the PDB
"divided" scheme — the middle two characters of the entry id — so no single
directory holds an unwieldy number of files:
data/structures/
structures/
train/ hh/4hhb-assembly1.cif.gz 01/101m-assembly1.cif.gz 02/102l-… 102m-…
val/ …
test/ 0a/10ad-assembly1.cif.gz
index.jsonl # one row per structure (zero-dep, greppable)
index.parquet # same, columnar (written if pyarrow is installed)
manifest.json # copy of the source split manifest
DATASET_CARD.md # provenance + how-to-load
The index is the ML entry point — one row per structure with entry_id,
split, path, sha256 (integrity + dedupe), cluster (for
cluster-balanced batches), and ligand_classes / ligand_tiers:
import pandas as pd
df = pd.read_parquet("data/structures/index.parquet") # or read_json(..., lines=True)
train = df[df.split == "train"]
metal_train = train[train.ligand_classes.str.contains("metal")]
# de-redundified epoch: one structure per sequence cluster
epoch = train.sort_values("entry_id").groupby("cluster").head(1)
The columnar index.parquet needs pyarrow: uv sync --extra mlops (the
zero-dependency index.jsonl is always written regardless).
How it works
A build runs eight stages; none touch coordinates.
| Stage | Module | What it does |
|---|---|---|
| 1 — enumerate | enumerate.py, rcsb.py |
RCSB Search → entry IDs; Data API (GraphQL, batched) → sequences, ligands, residue counts, cluster membership → candidates.jsonl. |
| 3 — filter | parse.py |
Drop no-protein / no-sequence / oversized entries (assembly-1 residue count vs max_total_residues), plus optional wwPDB validation-report quality caps (clashscore, R-free, Ramachandran/rotamer/RSRZ) — all from metadata. Every drop is logged with its reason. |
| 4 — ligands | ligands.py |
Tier each non-protein component functional/ambiguous/artifact; derive class labels (metal / small-molecule / nucleotide). Nucleotide is functional only with a verified protein↔NA assembly interface. Annotate, never drop. |
| 5 — cluster | cluster.py |
Group protein entities by RCSB precomputed cluster id at identity_threshold; canonical key = smallest member id. |
| 6 — split | split.py |
Deterministic hash → train/val/test; assert no cluster spans two splits; audit residual secondary-chain overlap. |
| 7 — manifest | manifest.py |
Emit lock + manifest + registry (all deterministic, no wall-clock fields). |
| 8 — loader | dataset.py |
Read a manifest into train/val/test views with cluster-balanced sampling. |
| 2 — fetch (opt-in) | download.py, hydrate.py |
Download mmCIF for a built manifest into a sharded, indexed, ML-ready tree. |
Stage 2 (mmCIF coordinate download) is optional and downstream — only needed to extract ligand context or feed a model, never to build a split. See Downloading structures for the
fetchcommand.
Structure quality (validation report)
For the highest-quality backbones, build can filter on the wwPDB validation
report — fetched as metadata, so the no-download invariant still holds. The
metrics come straight from the deposited report:
| Cap | Metric | Applies to |
|---|---|---|
max_clashscore |
all-atom clashscore | X-ray + cryo-EM |
max_ramachandran_outlier_pct |
% backbone Ramachandran outliers | X-ray + cryo-EM |
max_rotamer_outlier_pct |
% sidechain rotamer outliers | X-ray + cryo-EM |
max_rfree |
R-free (DCC) | X-ray |
max_rsrz_outlier_pct |
% real-space-R Z-score outliers | X-ray |
Two rules keep it honest: a cap fires only when the metric is present, so a
cryo-EM entry is never dropped for a missing R-free; and every cap is off by
default, so the snapshot is unchanged until you opt in. require_validation_report
drops entries with no report at all. Each drop is logged with its reason and
value (e.g. clashscore_too_high) and is summarised by if-split stats.
Strict starting point:
max_clashscore: 40,max_rfree: 0.30,max_ramachandran_outlier_pct: 1.0. Some classic low-quality depositions drop out — e.g. the 1984 entry4HHBhas a clashscore of 142.
Ligand quality: annotate, don't destroy
IF-Split is a tool, not one frozen dataset, so it won't make an irreversible quality call for you. Every non-protein component is tiered, with a machine-readable reason, from RCSB metadata signals:
| Tier | Meaning | Example reasons |
|---|---|---|
functional |
Real ligand/site → gets a class label | bound to protein (nonpolymer_bound_components) or has measured binding affinity |
ambiguous |
Present but uncorroborated → reported, not labelled | metal_unbound, ligand_unbound |
artifact |
Buffer / counterion / purification tag → excluded from labels | additive, counterion, histag_metal |
Holo gating (metadata-only). Presence isn't enough. A small molecule or metal
is functional only if RCSB reports it contacting the protein (bound_components)
or it has a measured binding affinity; an unbound one is ambiguous. A DNA/RNA
chain is functional nucleotide only when the biological assembly has a verified
protein↔nucleic-acid interface (rcsb_interface_info.polymer_composition == "Protein/NA")
— a co-deposited but non-contacting oligo is reported ambiguous, never silently
labelled. (Interfaces are RCSB-computed metadata, available for X-ray and cryo-EM,
so no coordinates are downloaded.)
The His-tag/Ni curation catches a known blemish in the LigandMPNN metal set:
structures whose only "metal site" is a poly-His tag chelating Ni/Co from
affinity purification. Live examples from a real build: 101M → {HEM: functional, SO4: artifact}, 102L → {BME: artifact, CL: artifact}.
Crucially, the structure always stays in its split — a protein with a junk ion is still a good backbone; we just don't label the junk. A consumer wanting "pristine metal sites only" vs "maximum scale, I'll filter myself" changes a threshold, not the build. The same per-component tier is what a downstream featurizer reads to decide what counts as real ligand context.
Test-set representation
The split is a pure deterministic hash, so the test set's ligand mix is reported
but not forced by default: manifest.json carries per-split, per-class
functional counts plus ambiguous counts, so under-representation is visible.
An opt-in --enforce-minimums top-up (recruit functional-only ligand clusters
into test in deterministic order) is scoped for a future release.
Using a split (loader)
from ifsplit.dataset import load_dataset
ds = load_dataset("data/out/manifest.json")
print(len(ds.train), len(ds.val), len(ds.test))
# Ligand-class views.
metal_test = ds.test.with_class("metal")
# Cluster-balanced sampling: one representative per sequence cluster per epoch,
# so over-represented folds (lysozyme, common kinases) don't dominate.
for epoch in range(3):
batch_ids = ds.train.sample_by_cluster(seed=epoch)
Configuration
Everything that affects the output lives in one YAML file
(config/default.yaml); its canonical hash is embedded
in every manifest, so two builds with the same hash used identical settings.
| Key | Default | Meaning |
|---|---|---|
snapshot_date |
2026-05-30 |
release_date <= this — the reproducibility anchor. |
experimental_methods |
X-ray, EM | Allowed exptl.method values. |
resolution_max_A |
3.5 |
Resolution cutoff. |
max_total_residues |
5999 |
Size cap (LigandMPNN used < 6000). |
excluded_het |
waters + common ions | Extra components forced to artifact. |
use_biological_assembly |
true |
Count residues from assembly 1, not the deposited asymmetric unit. |
purification_metals |
[NI, CO] |
Metals treated as IMAC tags; [] disables the heuristic. |
histag_min_run |
6 |
His-run length that marks a purification tag. |
exclude_purification_artifacts |
true |
Demote His-tag metals to artifact. |
identity_threshold |
0.30 |
Clustering cutoff (RCSB levels: 30/50/70/90/95/100). |
clustering_backend |
precomputed |
precomputed (RCSB clusters) or mmseqs2 (run your own). |
split_fractions |
0.80 / 0.10 / 0.10 | train / val / test. |
split_salt |
snapsplit-v1 |
Bump to intentionally reshuffle the split. |
max_clashscore, max_rfree, max_ramachandran_outlier_pct, max_rotamer_outlier_pct, max_rsrz_outlier_pct, require_validation_report |
off | Optional validation-report quality caps — see Structure quality. |
ligand_context_radius_A, max_ligand_atoms |
8.0, 25 |
Featurization only (not part of the split). |
Develop
uv run pytest # tests (offline; 1 opt-in network test, see below)
uv run ruff check . # lint
uv run ruff format . # format
# Run the opt-in live RCSB round-trip test.
IFSPLIT_NETWORK_TESTS=1 uv run pytest tests/test_integration.py
Layout
config/default.yaml # single source of truth for a run (hashed into the manifest)
src/ifsplit/ # config.py + one module per pipeline stage
enumerate.py rcsb.py # Stage 1: RCSB Search + Data API
parse.py # Stage 3: metadata filters
ligands.py # Stage 4: ligand tiering + classification
cluster.py split.py # Stages 5-6: clustering + deterministic split
manifest.py # Stage 7: lock + manifest + registry, verify/stats
dataset.py # Stage 8: loader + cluster-balanced sampling
download.py # Stage 2: optional mmCIF fetch (featurization only)
data/cache/ # downloaded mmCIF, if ever used (gitignored)
data/out/ # generated manifests + lock files
tests/
License
MIT — see LICENSE.
Project details
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 if_split-0.1.0.tar.gz.
File metadata
- Download URL: if_split-0.1.0.tar.gz
- Upload date:
- Size: 656.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
228f5966eb991b81b04fc89433ad75608057c66acd11b584383973f272017805
|
|
| MD5 |
1b223da689ca338fe2236756597caf49
|
|
| BLAKE2b-256 |
a44de122117bc5b28cf993cea9e4ab811316b896c7575a8bc6391fc3ade6e344
|
Provenance
The following attestation bundles were made for if_split-0.1.0.tar.gz:
Publisher:
publish.yml on WSobo/IF-Split
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
if_split-0.1.0.tar.gz -
Subject digest:
228f5966eb991b81b04fc89433ad75608057c66acd11b584383973f272017805 - Sigstore transparency entry: 1724338569
- Sigstore integration time:
-
Permalink:
WSobo/IF-Split@4ae83f091c9406954150de8042c2f715f38cbeef -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/WSobo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4ae83f091c9406954150de8042c2f715f38cbeef -
Trigger Event:
push
-
Statement type:
File details
Details for the file if_split-0.1.0-py3-none-any.whl.
File metadata
- Download URL: if_split-0.1.0-py3-none-any.whl
- Upload date:
- Size: 48.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
793718046a92fcf4a865442eac0c7e43fd444fa89b6b4afb23e9c33612a8bc35
|
|
| MD5 |
5f86b8024320c007351f08a8b348741a
|
|
| BLAKE2b-256 |
7efff7c94f2ee38d25d991a33d4ff4e8481dfff88322a38a44f18184f7dce689
|
Provenance
The following attestation bundles were made for if_split-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on WSobo/IF-Split
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
if_split-0.1.0-py3-none-any.whl -
Subject digest:
793718046a92fcf4a865442eac0c7e43fd444fa89b6b4afb23e9c33612a8bc35 - Sigstore transparency entry: 1724338667
- Sigstore integration time:
-
Permalink:
WSobo/IF-Split@4ae83f091c9406954150de8042c2f715f38cbeef -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/WSobo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4ae83f091c9406954150de8042c2f715f38cbeef -
Trigger Event:
push
-
Statement type: