Name Mode Size
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
DESCRIPTION 100644 2 kb
NAMESPACE 100644 2 kb
README.md 100644 1 kb
README.md
# CellScore ## Local Development To install CellScore locally from this repo for development or testing, you need to have a recent R (4 or later) installed. Then clone the repo: ```sh git clone https://github.com/flaviusb/CellScore.git ``` Then, run R inside the cloned directory. In order to load the package locally, you can run: ```R library(devtools) if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install() BiocManager::install("SummarizedExperiment") BiocManager::install("getDEE2") devtools::load_all() ```