Metadata-Version: 2.1
Name: scvi-tools
Version: 0.19.0a0
Summary: Deep probabilistic analysis of single-cell omics data.
Home-page: https://github.com/scverse/scvi-tools
License: BSD-3-Clause
Author: The scvi-tools development team
Author-email: adamgayoso@berkeley.edu
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: pymde
Provides-Extra: tutorials
Requires-Dist: anndata (>=0.7.5)
Requires-Dist: black (>=22.3); extra == "dev"
Requires-Dist: codecov (>=2.0.8); extra == "dev"
Requires-Dist: docrep (>=0.3.2)
Requires-Dist: flake8 (>=3.7.7); extra == "dev"
Requires-Dist: flax
Requires-Dist: furo (>=2022.2.14.1); extra == "docs"
Requires-Dist: h5py (>=2.9.0)
Requires-Dist: importlib-metadata (>1.0); python_version < "3.8"
Requires-Dist: ipython (>=7.20); (python_version >= "3.7") and (extra == "docs")
Requires-Dist: ipywidgets
Requires-Dist: isort (>=5.7); extra == "dev"
Requires-Dist: jax (>=0.3)
Requires-Dist: jaxlib
Requires-Dist: jupyter (>=1.0); extra == "dev"
Requires-Dist: leidenalg; extra == "tutorials"
Requires-Dist: loompy (>=3.0.6); extra == "dev" or extra == "tutorials"
Requires-Dist: ml-collections (>=0.1.1)
Requires-Dist: mudata (>=0.1.2)
Requires-Dist: myst-parser; extra == "docs"
Requires-Dist: nbconvert (>=5.4.0); extra == "dev"
Requires-Dist: nbformat (>=4.4.0); extra == "dev"
Requires-Dist: nbsphinx; extra == "docs"
Requires-Dist: numpy (>=1.17.0)
Requires-Dist: numpyro
Requires-Dist: openpyxl (>=3.0)
Requires-Dist: optax
Requires-Dist: pandas (>=1.0)
Requires-Dist: pre-commit (>=2.7.1); extra == "dev"
Requires-Dist: pymde; extra == "dev" or extra == "pymde" or extra == "tutorials"
Requires-Dist: pynndescent; extra == "tutorials"
Requires-Dist: pyro-ppl (>=1.6.0)
Requires-Dist: pytest (>=4.4); extra == "dev"
Requires-Dist: python-igraph; extra == "tutorials"
Requires-Dist: pytorch-lightning (>=1.6.0,<1.8)
Requires-Dist: rich (>=9.1.0)
Requires-Dist: scanpy (>=1.6); extra == "dev" or extra == "tutorials"
Requires-Dist: scikit-learn (>=0.21.2)
Requires-Dist: scikit-misc (>=0.1.3); extra == "tutorials"
Requires-Dist: sphinx (>=4.1); extra == "docs"
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
Requires-Dist: sphinx-design; extra == "docs"
Requires-Dist: sphinx-hoverxref; extra == "docs"
Requires-Dist: sphinx_copybutton (<=0.3.1); extra == "docs"
Requires-Dist: sphinxcontrib-bibtex (>=1.0.0); extra == "docs"
Requires-Dist: sphinxext-opengraph; extra == "docs"
Requires-Dist: torch (>=1.8.0)
Requires-Dist: torchmetrics (>=0.6.0)
Requires-Dist: tqdm (>=4.56.0)
Requires-Dist: typing_extensions; (python_version < "3.8") and (extra == "docs")
Project-URL: Documentation, https://scvi-tools.org
Description-Content-Type: text/markdown

<img src="https://github.com/scverse/scvi-tools/blob/master/docs/_static/scvi-tools-horizontal.svg?raw=true" width="400" alt="scvi-tools">

[![Stars](https://img.shields.io/github/stars/scverse/scvi-tools?logo=GitHub&color=yellow)](https://github.com/YosefLab/scvi-tools/stargazers)
[![PyPI](https://img.shields.io/pypi/v/scvi-tools.svg)](https://pypi.org/project/scvi-tools)
[![Documentation Status](https://readthedocs.org/projects/scvi/badge/?version=latest)](https://scvi.readthedocs.io/en/stable/?badge=stable)
![Build
Status](https://github.com/scverse/scvi-tools/workflows/scvi-tools/badge.svg)
[![Coverage](https://codecov.io/gh/scverse/scvi-tools/branch/master/graph/badge.svg)](https://codecov.io/gh/YosefLab/scvi-tools)
[![Code
Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
[![Downloads](https://pepy.tech/badge/scvi-tools)](https://pepy.tech/project/scvi-tools)
[![Project chat](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://scverse.zulipchat.com/)

[scvi-tools](https://scvi-tools.org/) (single-cell variational inference
tools) is a package for probabilistic modeling and analysis of single-cell omics
data, built on top of [PyTorch](https://pytorch.org) and
[AnnData](https://anndata.readthedocs.io/en/latest/).

# Analysis of single-cell omics data

scvi-tools is composed of models that perform many analysis tasks across single- or multi-omics:

-   Dimensionality reduction
-   Data integration
-   Automated annotation
-   Factor analysis
-   Doublet detection
-   Spatial deconvolution
-   and more!

In the [user guide](https://docs.scvi-tools.org/en/stable/user_guide/index.html), we provide an overview of each model.
All model implementations have a high-level API that interacts with
[scanpy](http://scanpy.readthedocs.io/) and includes standard save/load functions, GPU acceleration, etc.

# Rapid development of novel probabilistic models

scvi-tools contains the building blocks to develop and deploy novel probablistic
models. These building blocks are powered by popular probabilistic and
machine learning frameworks such as [PyTorch
Lightning](https://www.pytorchlightning.ai/) and
[Pyro](https://pyro.ai/). For an overview of how the scvi-tools package
is structured, you may refer to [this](https://docs.scvi-tools.org/en/stable/user_guide/background/codebase_overview.html) page.

We recommend checking out the [skeleton
repository](https://github.com/YosefLab/scvi-tools-skeleton) as a
starting point for developing and deploying new models with scvi-tools.

# Basic installation

For conda,

```
conda install scvi-tools -c conda-forge
```

and for pip,

```
pip install scvi-tools
```

Please be sure to install a version of [PyTorch](https://pytorch.org/) that is compatible with your GPU (if applicable).

# Resources

-   Tutorials, API reference, and installation guides are available in
    the [documentation](https://docs.scvi-tools.org/).
-   For discussion of usage, check out our
    [forum](https://discourse.scvi-tools.org).
-   Please use the [issues](https://github.com/scverse/scvi-tools/issues) to submit bug reports.
-   If you\'d like to contribute, check out our [contributing
    guide](https://docs.scvi-tools.org/en/stable/contributing/index.html).
-   If you find a model useful for your research, please consider citing
    the corresponding publication (linked above).

# Reference

If you used scvi-tools in your research, please consider citing

```
@article{Gayoso2022,
         author={Gayoso, Adam and Lopez, Romain and Xing, Galen and Boyeau, Pierre and Valiollah Pour Amiri, Valeh and Hong, Justin and Wu, Katherine and Jayasuriya, Michael and   Mehlman, Edouard and Langevin, Maxime and Liu, Yining and Samaran, Jules and Misrachi, Gabriel and Nazaret, Achille and Clivio, Oscar and Xu, Chenling and Ashuach, Tal and Gabitto, Mariano and Lotfollahi, Mohammad and Svensson, Valentine and da Veiga Beltrame, Eduardo and Kleshchevnikov, Vitalii and Talavera-L{\'o}pez, Carlos and Pachter, Lior and Theis, Fabian J. and Streets, Aaron and Jordan, Michael I. and Regier, Jeffrey and Yosef, Nir},
         title={A Python library for probabilistic analysis of single-cell omics data},
         journal={Nature Biotechnology},
         year={2022},
         month={Feb},
         day={07},
         issn={1546-1696},
         doi={10.1038/s41587-021-01206-w},
         url={https://doi.org/10.1038/s41587-021-01206-w}
}
```

along with the publicaton describing the model used.

