Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ __pycache__/
# docs
/docs/generated/
/docs/_build/
.ipynb_checkpoints/

# datasets
*.h5ad
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning][].
- Included tests for the `check` module, and more tests for the main classes {pr}`15`.
- Implemented the computation of presence scores, following HNOCA-tools {pr}`16`.
- Add a `groupby` parameter to expression transfer evaluation {pr}`16`.
- Add a `test_var_key` parameter to expression transfer evaluation {pr}`19`.
- Add a tutorial on spatial mapping {pr}`19`.

## [v0.1.1]

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

k-NN-based mapping of cells across representations to tranfer labels, embeddings and expression values. Works for millions of cells, on CPU and GPU, across molecular modalities, between spatial and non-spatial data, for arbitrary query and reference datasets. Using [faiss][] to compute k-NN graphs, CellMapper takes about 30 seconds to transfer cell type labels from 1.5M cells to 1.5M cells on a single RTX 4090 with 60 GB CPU memory.

Inspired by scanpy's [ingest][] and the [HNOCA-tools][] packages. Check out the [docs][] to learn more.
Inspired by scanpy's [ingest][] and the [HNOCA-tools][] packages. Check out the [docs][] to learn more, in particular our [tutorials][].

## Installation

Expand Down Expand Up @@ -69,6 +69,7 @@ Please cite this GitHub repo if you find CellMapper useful for your research.
[tests]: https://github.com/quadbio/cellmapper/actions/workflows/test.yaml
[changelog]: https://cellmapper.readthedocs.io/en/latest/changelog.html
[docs]: https://cellmapper.readthedocs.io/
[tutorials]: https://cellmapper.readthedocs.io/en/latest/notebooks/tutorials/index.html
[pypi]: https://pypi.org/project/cellmapper
[coverage]: https://codecov.io/gh/quadbio/cellmapper
[pre-commit]: https://results.pre-commit.ci/latest/github/quadbio/cellmapper/main
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ changelog.md
contributing.md
references.md

notebooks/example
notebooks/tutorials/index
```
171 changes: 0 additions & 171 deletions docs/notebooks/example.ipynb

This file was deleted.

9 changes: 9 additions & 0 deletions docs/notebooks/tutorials/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Tutorials
=========
This section contains tutorials showcasing use cases for k-NN based mapping of cells across representations with :mod:`cellmapper`.

.. toctree::
:maxdepth: 1
:glob:

*
Loading
Loading