Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Commit e4a02e6

Browse files
authored
Merge pull request #83 from YosefLab/package-name
Rename scvi-v2 to mrvi
2 parents 42612ff + 6016141 commit e4a02e6

18 files changed

+35
-35
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# scvi-v2
1+
# mrvi
22

33
[![Tests][badge-tests]][link-tests]
44
[![Documentation][badge-docs]][link-docs]
55

6-
[badge-tests]: https://img.shields.io/github/workflow/status/justjhong/scvi-v2/Test/main
7-
[link-tests]: https://github.com/YosefLab/scvi-v2/actions/workflows/test.yml
8-
[badge-docs]: https://img.shields.io/readthedocs/scvi-v2
6+
[badge-tests]: https://img.shields.io/github/workflow/status/justjhong/mrvi/Test/main
7+
[link-tests]: https://github.com/YosefLab/mrvi/actions/workflows/test.yml
8+
[badge-docs]: https://img.shields.io/readthedocs/mrvi
99

1010
V2 of single-cell Variational Inference.
1111

@@ -20,20 +20,20 @@ Please refer to the [documentation][link-docs]. In particular, the
2020
You need to have Python 3.8 or newer installed on your system. If you don't have
2121
Python installed, we recommend installing [Miniconda](https://docs.conda.io/en/latest/miniconda.html).
2222

23-
There are several alternative options to install scvi-v2:
23+
There are several alternative options to install mrvi:
2424

2525
<!--
26-
1) Install the latest release of `scvi-v2` from `PyPI <https://pypi.org/project/scvi-v2/>`_:
26+
1) Install the latest release of `mrvi` from `PyPI <https://pypi.org/project/mrvi/>`_:
2727
2828
```bash
29-
pip install scvi-v2
29+
pip install mrvi
3030
```
3131
-->
3232

3333
1. Install the latest development version:
3434

3535
```bash
36-
pip install git+https://github.com/justjhong/scvi-v2.git@main
36+
pip install git+https://github.com/justjhong/mrvi.git@main
3737
```
3838

3939
## Release notes
@@ -50,7 +50,7 @@ If you found a bug, please use the [issue tracker][issue-tracker].
5050
> t.b.a
5151
5252
[scverse-discourse]: https://discourse.scverse.org/
53-
[issue-tracker]: https://github.com/justjhong/scvi-v2/issues
54-
[changelog]: https://scvi-v2.readthedocs.io/latest/changelog.html
55-
[link-docs]: https://scvi-v2.readthedocs.io
56-
[link-api]: https://scvi-v2.readthedocs.io/latest/api.html
53+
[issue-tracker]: https://github.com/justjhong/mrvi/issues
54+
[changelog]: https://mrvi.readthedocs.io/latest/changelog.html
55+
[link-docs]: https://mrvi.readthedocs.io
56+
[link-api]: https://mrvi.readthedocs.io/latest/api.html

docs/api.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Preprocessing
44

55
```{eval-rst}
6-
.. module:: scvi_v2.pp
7-
.. currentmodule:: scvi_v2
6+
.. module:: mrvi.pp
7+
.. currentmodule:: mrvi
88
99
.. autosummary::
1010
:toctree: generated
@@ -15,8 +15,8 @@
1515
## Tools
1616

1717
```{eval-rst}
18-
.. module:: scvi_v2.tl
19-
.. currentmodule:: scvi_v2
18+
.. module:: mrvi.tl
19+
.. currentmodule:: mrvi
2020
2121
.. autosummary::
2222
:toctree: generated
@@ -27,8 +27,8 @@
2727
## Plotting
2828

2929
```{eval-rst}
30-
.. module:: scvi_v2.pl
31-
.. currentmodule:: scvi_v2
30+
.. module:: mrvi.pl
31+
.. currentmodule:: mrvi
3232
3333
.. autosummary::
3434
:toctree: generated

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# -- Project information -----------------------------------------------------
1818

19-
info = metadata("scvi-v2")
19+
info = metadata("mrvi")
2020
project_name = info["Name"]
2121
author = info["Author"]
2222
copyright = f"{datetime.now():%Y}, {author}."

docs/developer_docs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ In `pyproject.toml` add the following changes, and you are good to go!
159159

160160

161161
[project]
162-
name = "scvi-v2"
162+
name = "mrvi"
163163
-version = "0.3.1dev"
164164
+dynamic = ["version"]
165165

@@ -168,7 +168,7 @@ In `pyproject.toml` add the following changes, and you are good to go!
168168
+source = "vcs"
169169
+
170170
[tool.coverage.run]
171-
source = ["scvi-v2"]
171+
source = ["mrvi"]
172172
omit = [
173173
```
174174

@@ -191,7 +191,7 @@ In addition to the packages needed to _use_ this package, you need additional py
191191
the documentation_. It's easy to install them using `pip`:
192192

193193
```bash
194-
pip install "scvi-v2[dev,test,doc]"
194+
pip install "mrvi[dev,test,doc]"
195195
```
196196

197197
### Code-style

docs/notebooks/example.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"source": [
1616
"import numpy as np\n",
1717
"from anndata import AnnData\n",
18-
"import scvi_v2"
18+
"import mrvi"
1919
]
2020
},
2121
{
@@ -51,7 +51,7 @@
5151
}
5252
],
5353
"source": [
54-
"scvi_v2.pp.basic_preproc(adata)"
54+
"mrvi.pp.basic_preproc(adata)"
5555
]
5656
}
5757
],

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["hatchling"]
44

55

66
[project]
7-
name = "scvi-v2"
7+
name = "mrvi"
88
version = "0.0.1"
99
description = "Multi-resolution Variational Inference"
1010
readme = "README.md"
@@ -16,9 +16,9 @@ authors = [
1616
maintainers = [
1717
{name = "Justin Hong", email = "justin.hong@columbia.edu"},
1818
]
19-
urls.Documentation = "https://scvi-v2.readthedocs.io/"
20-
urls.Source = "https://github.com/YosefLab/scvi-v2"
21-
urls.Home-page = "https://github.com/YosefLab/scvi-v2"
19+
urls.Documentation = "https://mrvi.readthedocs.io/"
20+
urls.Source = "https://github.com/YosefLab/mrvi"
21+
urls.Home-page = "https://github.com/YosefLab/mrvi"
2222
dependencies = [
2323
"scvi-tools>=1.1.0rc2",
2424
"seaborn>=0.12.1",
@@ -47,7 +47,7 @@ test = [
4747
]
4848

4949
[tool.coverage.run]
50-
source = ["scvi_v2"]
50+
source = ["mrvi"]
5151
omit = [
5252
"**/test_*.py",
5353
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"permutation_test",
1616
]
1717

18-
__version__ = version("scvi-v2")
18+
__version__ = version("mrvi")

0 commit comments

Comments
 (0)