knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Introduction

Install Dependent Packages

library(devtools)
library(BiocManager)

As noted in README

CellEnrich needs some packages to be installed before use it.

Bioconductor Packages

  1. SingleCellExperiment
  2. scran
BiocManager::install('SingleCellExperiment')
BiocManager::install('scran')

Other Packages

  1. waiter
  2. ggbiplot
devtools::install_github('JohnCoene/waiter')
devtools::install_github('vqv/ggbiplot')

After install these 3 packages,

Install CellEnrich

running this Script will install most of dependent packages.

install_github('unistbig/CellEnrich')
library(CellEnrich)

Download Example Data

CellEnrich provides example dataset and gene-sets.

using this function, user can download them in current working directory.

CellEnrich::DownloadData()

Here are list of data.



unistbig/CellEnrich documentation built on July 27, 2020, 12:52 p.m.