Skip to content

FAQ on how to use celda

Zhe Wang edited this page Apr 26, 2019 · 1 revision

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")
}