LuJiansen / RSCORE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RSCORE

RSCORE is an R package to explore single-cell RNA-seq data with the view of molecular networks. The method is outlined in our manuscript

Enhancing single-cell cellular state inference by incorporating molecular network features

Ji Dong, Peijie Zhou, Yichong Wu, Wendong Wang, Yidong Chen, Xin Zhou, Haoling Xie, Jiansen Lu, Xiannian Zhang, Lu Wen, Wei Fu, Tiejun Li, Fuchou Tang.

The preprint version is available on bioRxiv.

Install

To run RSCORE, you need to install some extra dependencies:

if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
## Required
BiocManager::install(c("Seurat", "AUCell", "STRINGdb", "propr", "coop", "network"))
## To support parallel execution
BiocManager::install("doRNG")
install.packages("doMC", repos="http://R-Forge.R-project.org")
## To get marker genes quickly
BiocManager::install("mahmoudibrahim/genesorteR") 
## To do GO enrichment
BiocManager::install(c("clusterProfiler", "org.Hs.eg.db"))

Then you can install RSCORE:

if (!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools")
devtools::install_github("wycwycpku/RSCORE")

if you want to build vignettes, you need to add an option

devtools::install_github("wycwycpku/RSCORE", build_opts = NULL)

Tutorial

For more details and basic usage see Introduction and Tutorials

News

2019/07/23:

  • Add GO enrichment function.
  • Correct some bugs.

About


Languages

Language:R 100.0%