Skip to content

Datasets

Every tutorial on this site uses one of these. They are hosted on Zenodo and fetched on demand:

import piaso
piaso.data.list_datasets() # what is available
piaso.data.fetch_dataset("mouse_brain_10k_gemx") # download, returns a path
adata = piaso.data.load_dataset("mouse_brain_10k_gemx") # download and open

Files are cached under ~/.piaso/data/datasets/ and verified against a checksum, so a download interrupted half way is re-fetched rather than silently used. Calling fetch_dataset again on a complete file is instant.

NameDescriptionSpeciesCellsSize
piaso_markerdb_allen_immunePIASOmarkerDB Allen Human Immune Health Atlas L2human0 MB
e18_v3_nucleiE18 Mouse Brain Nuclei 5K v3.1 (10x Genomics)mouse5,00020 MB
e18_v3_cellE18 Mouse Brain Neurons 10K v3 (10x Genomics)mouse10,00048 MB
e18_v4_cellE18 Mouse Neurons 10K GEM-X v4 (10x Genomics)mouse10,00068 MB
mouse_brain_10k_gemx10K Mouse Brain GEM-X v4 (10x Genomics)mouse11,35769 MB
pbmc_multiome_san1Human PBMC snMultiome SAN1 (De Rop 2024)human3,54577 MB
pbmc_multiome_san2Human PBMC snMultiome SAN2 (De Rop 2024)human4,36088 MB
sea_ad_mtg_20kSEA-AD MTG 20K subsample (raw)human20,0001.9 GB
adult_cortex_multiome_rnaAdult Mouse Cortex Multiome RNA (P57)mouse17,4122.7 GB

Using your own data

Nothing here is required — every tutorial works on your own Cell Ranger output:

adata = piaso.pp.read_10x("path/to/filtered_feature_bc_matrix.h5")