Skip to main content

adata CLI

A command-line tool for exploring huge AnnData stores (.h5ad and .zarr) without loading them fully into memory. Streams data directly from disk for efficient inspection of structure, metadata, and matrices.

Features

  • Streaming access to very large .h5ad and .zarr stores — see the benchmarks for what that costs in practice, including where loading the file outright is faster
  • Auto-detects .h5ad files vs .zarr directories
  • Chunked processing for dense and sparse matrices (CSR/CSC)
  • Reads every AnnData on-disk layout, from 0.7.x through the current spec, and always writes the current one
  • Converts between HDF5 and Zarr (v2 and v3) in either direction
  • Rich terminal output with progress indicators, kept on stderr so results pipe cleanly

Documentation: cellgeni.github.io/adata-cli

Installation

pip install pyadata-cli

The command is adata. The distribution is named pyadata-cli because adata-cli was already taken on PyPI by an unrelated project.

From source with uv:

git clone https://github.com/cellgeni/adata-cli.git
cd adata-cli
uv sync

For development and testing:

uv sync --extra dev

Alternative with pip:

git clone https://github.com/cellgeni/adata-cli.git
cd adata-cli
pip install .

For development and testing with pip:

pip install -e ".[dev]"

Commands (Overview)

Run help at any level (e.g. adata --help, adata export --help).

  • view – AnnData-aware inspection: store layout, shapes, and encodings; supports drilling into paths like obsm/X_pca or uns.
  • ls – list the contents of any HDF5 or Zarr store as a tree, with no AnnData assumptions (works on .loom and plain .h5); -1 emits bare paths for piping.
  • create – write a new, empty AnnData store for import to fill in.
  • subset – stream and write a filtered copy, selected by obs/var name lists (--obs/--var) or by expression (--obs-query/--var-query).
  • split – write one store per distinct value of an annotation column, with a CSV manifest.
  • concat – concatenate stores along the obs axis, with --join inner|outer and merge strategies for var and uns.
  • convert – change a matrix's dtype, layout (CSR/CSC/dense) or density, streaming; refuses a lossy cast or a large size increase unless forced.
  • export – extract data from a store; subcommands: dataframe (any dataframe group to CSV), array (dense to .npy), sparse (CSR/CSC to .mtx), dict (JSON), image (PNG). Results go to stdout when no --output is given.
  • import – write new data into a store at any path; subcommands: dataframe (CSV), array (.npy), sparse (.mtx), dict (JSON), image (PNG/JPEG/TIFF).

Building a store from scratch

adata create out.h5ad --obs-names cells.txt --var-names genes.txt
adata import sparse    out.h5ad X            counts.mtx --inplace
adata import dataframe out.h5ad obs          cells.csv  --inplace -i cell_id
adata import array     out.h5ad obsm/X_umap  umap.npy   --inplace
adata import dict      out.h5ad uns/params   params.json --inplace

Filtering without a name list

adata subset data.h5ad -o cortex.h5ad --obs-query "cluster == Cortex_2"
adata subset data.h5ad -o big.h5ad    -q "n_counts > 1000 and cluster in A,B"
adata split  data.h5ad --by sample -o per_sample/
adata concat per_sample/*.h5ad -o merged.h5ad --join outer --label sample

Shrinking a store, and making encodings agree

adata convert data.h5ad X --inplace --dtype float32
adata convert data.h5ad --all -o small.h5ad --dtype float32 --indices-dtype int32
adata convert data.h5ad X -o csc.h5ad --layout csc

Counts written as float64 halve with no loss — and convert proves that before it writes, by casting every value and casting it back. concat refuses inputs whose matrices disagree about CSR versus CSC; --layout is how you make them agree.

Documentation

  • Get started — a short tutorial
  • Command reference — every command and flag
  • Element spec: HDF5 / Zarr — the on-disk format, and what this tool does with it
  • Testing — how the suite is organised, how compatibility is verified against six anndata releases, and the complexity guards that keep cost regressions out
  • Benchmarks — peak memory and wall time against anndata and scanpy, remeasured on every release
  • Changelog

Docker

A docker image is available on QUAY: quay.io/cellgeni/adata-cli:latest. Pull and run with:

docker run --rm -it -v /path/to/data:/data quay.io/cellgeni/adata-cli:latest adata view /data/your_file.h5ad

Release files for pyadata-cli 0.6.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyadata-cli 0.6.1
File Size Uploaded
pyadata_cli-0.6.1.tar.gz 79.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pyadata-cli 0.6.1
File Interpreter ABI Platform
pyadata_cli-0.6.1-py3-none-any.whl Python 3 none any Details

Total release size: 177.4 kB

Release files / pyadata_cli-0.6.1.tar.gz

Download URL pyadata_cli-0.6.1.tar.gz
Size 79.3 kB
Tags Source
SHA-256 checksum
How to use checksums
b059c88c01682afd38ba3108ad73ac4e19fb294850d56a9359a0c156e5c4f569
BLAKE2b-256 checksum
How to use checksums
2e52e48ed5255722264bd456d71a6e6ebb8ff7f21e2976a6cdf3ec3234f39567
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / pyadata_cli-0.6.1-py3-none-any.whl

Download URL pyadata_cli-0.6.1-py3-none-any.whl
Size 98.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
07defbb32776a59b8ca0a32125814d164d7e4514ebf5433cc836ccf346ebd72c
BLAKE2b-256 checksum
How to use checksums
55f0421581c9a329328c76063d0d7fce9781867fa1d501add3343fa24f07fb44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.6.1 This release

2 release files

0.6.0

2 release files

0.5.1

2 release files

0.5.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page