FAQ on how to use celda (original) (raw)
How do I install celda on my computer?
To install the latest stable release of celda from Bioconductor, open R or Rstudio and run the following command:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("celda")
To install the most up-to-date version of celda (might be unstable) from github, open R or Rstudio and run the following command:
if (!requireNamespace("devtools", quietly = TRUE)) {
install_github("campbio/celda")
}