STACK
Collection
Stack is a single-cell foundation model that enables in-context learning at inference time.
β’
5 items
β’
Updated
β’
1
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Perturb Sapiens is an evolving database of AI-predicted single-cell perturbation responses, representing the first human whole-organism atlas of perturbed cells.
Perturb Sapiens is generated using the post-trained Stack model (Stack-Large-Aligned), an in-context learning foundation model for single-cell biology.
Data Sources:
| Metric | Value |
|---|---|
| Total Cells | 103+ million |
| Human Tissues | 28 |
| Cell Classes | 40 |
| Drug Conditions | 111 (control: Dimethyl sulfoxide) |
| Cytokine Conditions | 90 (control: PBS) |
PerturbSapiensv1/
βββ drug/
β βββ [drug_name].h5ad
β βββ Dimethyl sulfoxide.h5ad # Control
βββ cytokine/
βββ [cytokine_name].h5ad
βββ PBS.h5ad # Control
import scanpy as sc
# Load a perturbation condition (e.g., ADSF cytokine)
adata = sc.read_h5ad('PerturbSapiensv1/cytokine/ADSF.h5ad')
# Preprocessing (aligned with post-training settings)
sc.experimental.pp.highly_variable_genes(adata, n_top_genes=4000)
sc.pp.normalize_total(adata)
sc.pp.log1p(adata)
# Subset to high quality cells
adata = adata[adata.obs['gen_logit']<2.5].copy()
# Subset to highly variable genes
adata = adata[:, adata.var['highly_variable']].copy()
# Ready for downstream analysis!
If you use Perturb Sapiens in your research, please cite:
This dataset is released under the CC BY 4.0 License.
For questions or issues, please open an issue on the GitHub repository.