Name Mode Size
.github 040000
R 040000
data 040000
man 040000
src 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
CONDUCT.md 100644 1 kb
DESCRIPTION 100644 2 kb
LICENSE.md 100644 34 kb
Makefile 100644 1 kb
NAMESPACE 100644 5 kb
NEWS.md 100644 1 kb
README.Rmd 100644 2 kb
README.md 100644 2 kb
README.md
<!-- README.md is generated from README.Rmd. Please edit that file --> # SVP: Predicting cell states and their variability in single-cell or spatial omics data ## :newspaper: Description SVP uses the distance between cells and cells, features and features, cells and features in the space of MCA to build nearest neighbor graph, then uses random walk with restart algorithm to calculate the activity score of gene sets (such as cell marker genes, kegg pathway, go ontology, gene modules, transcription factor or miRNA target sets, reactome pathway, …), which is then further weighted using the hypergeometric test results from the original expression matrix. To detect the spatially or single cell variable gene sets or (other features) and the spatial colocalization between the features accurately, SVP provides some global and local spatial autocorrelation method to identify the spatial variable features. SVP is developed based on SingleCellExperiment class, which can be interoperable with the existing computing ecosystem. ## :writing\_hand: Author [Shuangbin Xu](https://github.com/xiangpin) and [Guangchuang Yu](https://guangchuangyu.github.io) School of Basic Medical Sciences, Southern Medical University ## :arrow\_double\_down: Installation ``` r #It can be installed via GitHub. if (!requireNamespace("remotes", quietly=TRUE)) install.packages("remotes") remotes::install_github("YuLab-SMU/SVP") #Once Bioconductor 3.21 is released, it can be installed as follows. if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install("SVP") ``` To enhance performance, it is **strongly recommended** to connect your R BLAS library with the [OpenBLAS](https://github.com/OpenMathLib/OpenBLAS) library for matrix calculations. This can be accomplished using the [ropenblas](https://prdm0.github.io/ropenblas/) package. Or you can install [OpenBLAS](https://github.com/OpenMathLib/OpenBLAS) and link the library to R BLAS library by `ln -s your_openblas_installed_path_libopenblas.so your_R_install_path_libRblas.so` manually. ## :sparkling\_heart: Contributing We welcome any contributions\! By participating in this project you agree to abide by the terms outlined in the [Contributor Code of Conduct](CONDUCT.md).