Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit 0e25d8f

Browse files
readme update
1 parent a5c8774 commit 0e25d8f

2 files changed

Lines changed: 28 additions & 3 deletions

File tree

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# SpatialData to Xenium Explorer
22

3+
[![PyPI](https://img.shields.io/pypi/v/spatialdata_xenium_explorer.svg)](https://pypi.org/project/spatialdata_xenium_explorer)
4+
[![Downloads](https://static.pepy.tech/badge/spatialdata_xenium_explorer)](https://pepy.tech/project/spatialdata_xenium_explorer)
5+
[![Docs](https://img.shields.io/badge/docs-mkdocs-blue)](https://quentinblampey.github.io/spatialdata_xenium_explorer/)
6+
![Build](https://github.com/quentinblampey/spatialdata_xenium_explorer/workflows/ci/badge.svg)
7+
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
8+
[![License](https://img.shields.io/pypi/l/spatialdata_xenium_explorer.svg)](https://github.com/quentinblampey/spatialdata_xenium_explorer/blob/master/LICENSE)
9+
[![Imports: isort](https://img.shields.io/badge/imports-isort-blueviolet)](https://pycqa.github.io/isort/)
10+
311
Converting any [`SpatialData`](https://github.com/scverse/spatialdata) object into files that can be open by the [Xenium Explorer](https://www.10xgenomics.com/support/software/xenium-explorer).
412

513
> *Xenium Explorer* is a registered trademark of 10x Genomics
@@ -12,14 +20,16 @@ pip install spatialdata_xenium_explorer
1220

1321
## Usage
1422

15-
You can use our [CLI](TODO) or [API](TODO), see examples below. It will create up to 6 files, among which a file called `experiment.xenium`. Double-click on this file to open it on the [Xenium Explorer](https://www.10xgenomics.com/support/software/xenium-explorer/downloads) (make sure you have the latest version of the software).
23+
You can use our CLI or API, see examples below. It will create up to 6 files, among which a file called `experiment.xenium`. Double-click on this file to open it on the [Xenium Explorer](https://www.10xgenomics.com/support/software/xenium-explorer/downloads) (make sure you have the latest version of the software).
1624

1725
### CLI
1826

1927
```sh
2028
spatialdata_xenium_explorer write /path/to/sdata.zarr
2129
```
2230

31+
Check [our documentation](https://quentinblampey.github.io/spatialdata_xenium_explorer/cli) for more details.
32+
2333
### API
2434

2535
```python
@@ -31,6 +41,8 @@ sdata = spatialdata.read_zarr("...")
3141
spatialdata_xenium_explorer.write("/path/to/directory", sdata, image_key, shapes_key, points_key, gene_column)
3242
```
3343

34-
## Future improvements and contributions
44+
Check [our documentation](https://quentinblampey.github.io/spatialdata_xenium_explorer/api) for more details.
45+
46+
## Contributing
3547

3648
This package is still in early development. Contributions are welcome (new issues, pull requests, ...).

pyproject.toml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
[tool.poetry]
22
name = "spatialdata_xenium_explorer"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Converting any SpatialData object into files that can be open by the Xenium Explorer"
5+
documentation = "https://quentinblampey.github.io/spatialdata_xenium_explorer/"
6+
homepage = "https://quentinblampey.github.io/spatialdata_xenium_explorer/"
7+
repository = "https://github.com/quentinblampey/spatialdata_xenium_explorer"
58
authors = ["Quentin Blampey <quentin.blampey@gmail.com>"]
69
packages = [{ include = "spatialdata_xenium_explorer" }]
10+
license = "BSD-3-Clause"
11+
readme = "README.md"
12+
classifiers = [
13+
"License :: OSI Approved :: BSD License",
14+
"Operating System :: MacOS :: MacOS X",
15+
"Operating System :: POSIX :: Linux",
16+
"Operating System :: Microsoft :: Windows",
17+
"Programming Language :: Python :: 3",
18+
"Topic :: Scientific/Engineering",
19+
]
720

821
[tool.poetry.scripts]
922
spatialdata_xenium_explorer = "spatialdata_xenium_explorer.main:app"

0 commit comments

Comments
 (0)