Skip to main content

cytome

A single-file format for single-cell multi-omics data.

cytome replaces ad-hoc file stacks with one SQLite-backed .cytome file that keeps matrices, metadata, embeddings, fragments, and provenance together.

cytome stores expression matrices, cell metadata, genomic fragments, embeddings, graphs, and computational provenance in a single SQLite file. It opens from manifest metadata, supports SQL-style metadata filtering, and provides a tested CLI for conversion, merge, subset, export, and validation.

cytome is part of the PIASO toolkit for single-cell analysis. PIASO natively supports cytome datasets for streaming single-cell ATAC-seq and RNA-seq workflows.

Why cytome?

Capability AnnData (.h5ad) BPCells TileDB-SOMA cytome (.cytome)
Single portable file Yes No (directory layout) No (array store) Yes
Python stdlib core storage dependency No (h5py) No No Yes (sqlite3)
SQL metadata queries No No Limited via APIs Yes
Fragment genomic range queries No native index Limited Yes Yes (SQLite R-tree)
Native provenance table No No Partial workflow metadata Yes
Streaming merge API Partial Strong compute streaming Distributed workflows Yes, chunk-aware
Full matrix load speed Fast Fast Varies Fast
Cloud-native multi-writer scale-out No No Yes No (single-writer SQLite)

Quick start

No optional dependencies — this runs with pip install cytome alone.

import cytome
import numpy as np
import pandas as pd
import scipy.sparse as sp

rng = np.random.default_rng(0)
counts = sp.random(1000, 500, density=0.05, format="csr", dtype=np.float32,
                   random_state=rng)

ds = cytome.create("example.cytome")
ds.set_entity("cells", pd.DataFrame({
    "barcode": [f"cell_{i}" for i in range(1000)],
    "cell_type": rng.choice(["A", "B"], 1000),
}))
ds.set_entity("genes", pd.DataFrame({"gene_id": [f"G{i}" for i in range(500)]}))
ds.add_matrix("RNA_counts", counts)
ds.flush()

print(ds)                                    # metadata-first summary
b_cells = ds.cells.query("cell_type == 'B'")  # SQL-style metadata query
block = ds.RNA.counts[:100, :50]              # random access
for start, end, chunk in ds.RNA.counts.iter_rows():
    ...                                       # bounded-memory streaming
ds.close()

Marker genes, straight off the file

COSG reads a .cytome in chunks, so peak memory does not scale with the number of cells and nothing is converted to AnnData first.

# pip install cosg
import cosg

markers = cosg.cosg("example.cytome", groupby="cell_type",
                    modality="RNA", layer="log1p", n_genes_user=10)
markers["names"]   # per-cell-type marker genes

Coming from AnnData

# pip install "cytome[anndata]"
ds = cytome.from_anndata(adata, modality="RNA", output="rna.cytome")

Key features

  • Instant metadata-first open (CytomeDataset initialization reads manifest and table metadata)
  • SQL-queryable entity tables (cells, genes, peaks, samples)
  • Merge, subset, and downsample APIs with chunk-aware implementations
  • Fragment storage (chunked, compressed) with genomic range queries and export (bulk fragment import is provided by PIASOpiaso.pp.importFragments)
  • Analysis results live on the file: embeddings (ds.embeddings), neighbor graphs (ds.graphs), per-cell / per-feature columns, and arbitrary analysis artifacts (ds.metadata) — PIASO writes results back onto the cytome
  • Provenance logging with parameters, dependency versions, and methods-text export
  • ACID write transactions via SQLite
  • Multi-modal naming convention (RNA_counts, ATAC_counts, etc.)
  • Optional CSC feature index (build_feature_index) for faster column iteration
  • JSON metadata store (ds.metadata) for arbitrary nested analysis metadata
  • CLI (cytome) for convert, info, merge, subset, downsample, export, validate, provenance, and copy

Installation

pip install cytome

Optional extras:

pip install "cytome[full]"
pip install "cytome[dev]"

Usage examples

Convert from AnnData

import cytome
ds = cytome.from_anndata(adata, modality="RNA", output="rna.cytome")
ds.close()

Open and query

import cytome
ds = cytome.open("rna.cytome")
cd8 = ds.cells.query("cell_type == 'CD8 T'")
x = ds.RNA.counts[:200, :200]
ds.close()

Merge datasets

import cytome
merged = cytome.merge(["s1.cytome", "s2.cytome"], output="merged.cytome")
merged.close()

Command line

cytome info merged.cytome
cytome merge s1.cytome s2.cytome -o merged.cytome
cytome subset merged.cytome -o cd8.cytome --query "cell_type == 'CD8 T'"

ATAC fragments

ds = cytome.open("multiome.cytome")
fr = ds.ATAC.fragments.query_region("chr1", 1_000_000, 2_000_000)
ds.ATAC.fragments.export("fragments.tsv.gz")
ds.close()

With PIASO

cytome integrates with PIASO (pip install piaso-tools) for single-cell analysis. PIASO supports cytome datasets directly — streaming normalization, dimensionality reduction, clustering, and visualization without loading full matrices into memory.

PIASO functions are self-contained on a cytome: they stream from the file and write their results back onto it (graphs, embeddings, cluster labels, per-cell/per-feature metrics, markers) — they don't return large objects, so you read results from the dataset afterwards.

import cytome
import piaso

# Open a cytome dataset and run the PIASO ATAC pipeline (results persist on ds)
ds = cytome.open("atac.cytome")

piaso.pp.calculateCellMetrics(ds)        # per-cell QC -> ds.cells
piaso.pp.selectPeaks(ds)                  # highly variable peaks -> ds.peaks
piaso.tl.runSVDLazy(ds)                   # X_svd embedding -> ds.embeddings
piaso.tl.neighbors(ds)                    # connectivities/distances -> ds.graphs
piaso.tl.leiden(ds, key_added="leiden")  # labels -> ds.cells["leiden"]
piaso.tl.umap(ds)                         # X_umap -> ds.embeddings
piaso.pl.plotUMAP(ds, color="leiden")

# Markers + peak calling can persist to the cytome too
import cosg
cosg.run_cosg_cytome(ds, groupby="leiden", modality="ATAC",
                     write_to_cytome=True)        # -> ds.metadata["cosg"]
piaso.tl.picco(ds, groupby="leiden", genome="mm10")  # PICCO peak calling

ds.close()

See piaso.org for documentation and tutorials.

File format

A .cytome file is a SQLite database with:

  • Entity tables (cells, genes, peaks, ...)
  • Chunked compressed sparse matrices (matrix_chunks + matrix_meta)
  • Optional CSC chunks (matrix_csc_chunks)
  • Dense chunked embeddings (dense_chunks + embedding_meta)
  • Fragment storage (chunked compressed BLOBs) + genomic R-tree indices
  • Provenance (_provenance) and metadata (_metadata)

Comparison with existing tools

Trade-offs in the current implementation:

  • Full matrix materialization can be slower than direct HDF5 reads for some workloads.
  • Merge/subset APIs are chunk-aware, but current merge implementation may still materialize intermediate matrices for gene remapping.
  • SQLite provides strong local reliability and portability but is not a distributed/cloud-native storage engine.

Citation

If you use cytome, please cite the upcoming manuscript.

License

BSD 3-Clause License. See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cytome-0.2.2.tar.gz (125.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cytome-0.2.2-py3-none-any.whl (126.0 kB view details)

Uploaded Python 3

File details

Details for the file cytome-0.2.2.tar.gz.

File metadata

  • Download URL: cytome-0.2.2.tar.gz
  • Upload date:
  • Size: 125.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cytome-0.2.2.tar.gz
Algorithm Hash digest
SHA256 8253b7ff06c719fa3d92380e3f71fe92346d1894bfe3c30a3d2cb028ddbca562
MD5 174501d19592b5706941de3e5e460431
BLAKE2b-256 38703e4ea2410bcdfdec35adbd2bce4f048bd3c98e3edd8dc316194da4172437

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytome-0.2.2.tar.gz:

Publisher: publish.yml on genecell/cytome

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cytome-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: cytome-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 126.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cytome-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a07e748054adf5d0502f9c6e2a58fc7ccd7b2233b796a54fb4f8dcac8eabdf04
MD5 3ad207d7346dbe3978401f9a87598ea7
BLAKE2b-256 4407190e4832bb9337c13e71c5070f2446742a9a717481867e2d5059fbe7476e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cytome-0.2.2-py3-none-any.whl:

Publisher: publish.yml on genecell/cytome

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page