Per-cell EPInformer-seq checkpoints for 11 Roadmap Epigenomics cell types.
Drop-in artifacts for the Chorusepinformerseq oracle.
Architecture
PerCellProfileNetWide — a dilated-CNN, 2-channel profile model. A
2114-bp input is run through the body, then the central 1024 bp is
cropped for the heads (ChromBPNet-style "valid" geometry, so every output base
has a full real-sequence receptive field). The two channels are:
ch1 — H3K27ac: read signal (the active-enhancer histone mark).
Each cell line gets its own main checkpoint (no FiLM, no cell embedding),
paired with a per-cell frozen 2-channel BiasNet (1024-bp, run on the
central crop): ch0 subtracts the Tn5/DNase enzymatic cut bias, ch1 the H3K27ac
background bias. H3K27ac has no enzymatic cut, so no separate bias model is
needed.
The retired joint CellCondProfileNet (FiLM over 11 cells) and the earlier
1024-bp SAME-padded PerCellProfileNet are not used by Chorus.
Shipped weights (2026-06-04): the roadmap retrain — trained on Roadmap
DNase-summit peaks with the Roadmap-pipeline H3K27ac. Strongest per-cell DNase
test-r and a functional H3K27ac channel; supersedes an earlier ENCODE-IDR-peak /
full-coverage-H3K27ac variant.
Training
Window: 2114-bp input → central 1024-bp profile crop, on roadmap DNase
peak summits.
1from chorus.oracles import EPInformerSeqOracle
23oracle = EPInformerSeqOracle(cell_type="K562")4oracle.load_pretrained_model()# downloads from this repo on first run56result = oracle.predict(7 sequence="A"*2114,8 assay_ids=["Enhancer_DNase:K562"],# or Enhancer_H3K27ac, Enhancer_H3K27ac_DNase9)
Available assays (max over the central 256 bp of the 1024-bp output):
Enhancer_DNase (default, max DNase), Enhancer_H3K27ac (max H3K27ac),
Enhancer_H3K27ac_DNase (composite sqrt(max DNase · max H3K27ac)).
Background CDFs
Chorus pulls per-track CDFs from the companion dataset
lucapinello/chorus-backgrounds
(epinformerseq_pertrack.npz, 33 tracks = 3 assays × 11 cells).
Citation
Cite the EPInformer paper and the Chorus pipeline (see the
Chorus README).