Skip to content

Commit e2f2db7

Browse files
committed
update readme
1 parent e1b0efb commit e2f2db7

4 files changed

Lines changed: 30 additions & 16 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: SVP
22
Title: Predicting cell states and their variability in single-cell or spatial omics data
3-
Version: 0.99.3
3+
Version: 0.99.4
44
Authors@R: c(
55
person("Shuangbin", "Xu", email = "xshuangbin@163.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-3513-5362")),
66
person("Guangchuang", "Yu", email = "guangchuangyu@gmail.com", role = c("aut", "ctb"), comment = c(ORCID = "0000-0002-6485-8781")))
@@ -15,7 +15,7 @@ Description: SVP uses the distance between cells and cells, features and feature
1515
SVP is developed based on SingleCellExperiment class, which can be interoperable with the
1616
existing computing ecosystem.
1717
Depends:
18-
R (>= 4.5)
18+
R (>= 4.0)
1919
Imports:
2020
Rcpp,
2121
RcppParallel,

README.Rmd

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@ School of Basic Medical Sciences, Southern Medical University
2727

2828
## :arrow_double_down: Installation
2929

30-
The development version from `github`:
31-
3230
```r
31+
#It can be installed via GitHub.
3332
if (!requireNamespace("remotes", quietly=TRUE))
3433
install.packages("remotes")
35-
remotes::install_github("xiangpin/SVP")
34+
remotes::install_github("YuLab-SMU/SVP")
35+
36+
#Once Bioconductor 3.21 is released, it can be installed as follows.
37+
if (!requireNamespace("BiocManager", quietly=TRUE))
38+
install.packages("BiocManager")
39+
BiocManager::install("SVP")
3640
```
3741

3842
To enhance performance, it is **strongly recommended** to connect your R BLAS library with the

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,25 @@ method to identify the spatial variable features. SVP is developed based
1818
on SingleCellExperiment class, which can be interoperable with the
1919
existing computing ecosystem.
2020

21-
## :writing_hand: Author
21+
## :writing\_hand: Author
2222

2323
[Shuangbin Xu](https://github.com/xiangpin) and [Guangchuang
2424
Yu](https://guangchuangyu.github.io)
2525

2626
School of Basic Medical Sciences, Southern Medical University
2727

28-
## :arrow_double_down: Installation
29-
30-
The development version from `github`:
28+
## :arrow\_double\_down: Installation
3129

3230
``` r
31+
#It can be installed via GitHub.
3332
if (!requireNamespace("remotes", quietly=TRUE))
3433
install.packages("remotes")
35-
remotes::install_github("xiangpin/SVP")
34+
remotes::install_github("YuLab-SMU/SVP")
35+
36+
#Once Bioconductor 3.21 is released, it can be installed as follows.
37+
if (!requireNamespace("BiocManager", quietly=TRUE))
38+
install.packages("BiocManager")
39+
BiocManager::install("SVP")
3640
```
3741

3842
To enhance performance, it is **strongly recommended** to connect your R
@@ -41,12 +45,12 @@ BLAS library with the
4145
calculations. This can be accomplished using the
4246
[ropenblas](https://prdm0.github.io/ropenblas/) package. Or you can
4347
install [OpenBLAS](https://github.com/OpenMathLib/OpenBLAS) and link the
44-
library to R BLAS library by
45-
`ln -s your_openblas_installed_path_libopenblas.so your_R_install_path_libRblas.so`
46-
manually.
48+
library to R BLAS library by `ln -s
49+
your_openblas_installed_path_libopenblas.so
50+
your_R_install_path_libRblas.so` manually.
4751

48-
## :sparkling_heart: Contributing
52+
## :sparkling\_heart: Contributing
4953

50-
We welcome any contributions! By participating in this project you agree
51-
to abide by the terms outlined in the [Contributor Code of
54+
We welcome any contributions\! By participating in this project you
55+
agree to abide by the terms outlined in the [Contributor Code of
5256
Conduct](CONDUCT.md).

vignettes/SVP.Rmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,16 @@ knitr::include_graphics("./SVP_Framework.png")
6565
You can use the following commands to install it
6666

6767
```{r, eval=FALSE, INSTALL}
68+
#Once Bioconductor 3.21 is released, you can install it as follows.
6869
if (!requireNamespace("BiocManager", quietly=TRUE))
6970
install.packages("BiocManager")
7071
7172
BiocManager::install("SVP")
73+
74+
#Or you can install it via github
75+
if (!requireNamespace("remotes", quietly=TRUE))
76+
install.packages("remotes")
77+
remotes::install_github("YuLab-SMU/SVP")
7278
```
7379

7480
# Quantification of cell states using SVP

0 commit comments

Comments
 (0)