Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Chang committed Nov 7, 2019
1 parent cc17635 commit 1f6357c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 36 deletions.
65 changes: 36 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,60 +1,67 @@
![flowchart](flow.png)

# Installation
```
devtools::install_github("cnk113/scep", subdir="pkg")
```
# Removal of ambient RNA and empty droplets
CellBender (https://github.com/broadinstitute/CellBender)
[CellBender](https://github.com/broadinstitute/CellBender)

# Doublet removal
Scrublet
[Scrublet](https://github.com/swolock/scrublet)

DoubletFinder
[DoubletFinder](https://github.com/chris-mcginnis-ucsf/DoubletFinder)

DoubletDetection
[DoubletDetection](https://github.com/JonathanShor/DoubletDetection)

DoubletDecon
[DoubletDecon](https://github.com/EDePasquale/DoubletDecon)

# Imputation
DrImpute (https://github.com/ikwak2/DrImpute)
[DrImpute](https://github.com/ikwak2/DrImpute)

Rmagic (https://github.com/KrishnaswamyLab/MAGIC)
[Rmagic](https://github.com/KrishnaswamyLab/MAGIC)

SAVER (https://github.com/mohuangx/SAVER)
[SAVER](https://github.com/mohuangx/SAVER)

Seurat (https://cran.r-project.org/web/packages/Seurat/index.html)
[scImpute](https://github.com/Vivianstats/scImpute)

scImpute (https://github.com/Vivianstats/scImpute)
[scRMD](https://github.com/ChongC1990/scRMD)

scRMD (https://github.com/ChongC1990/scRMD)
[DeepImpute](https://github.com/lanagarmire/deepimpute)

DeepImpute
[scHinter](https://github.com/BMILAB/scHinter)

scNPF
[netSmooth](https://github.com/BIMSBbioinfo/netSmooth)

I-Impute
[scLINE](https://github.com/BMILAB/scLINE)

netNMF-sc
[scNPF](https://github.com/BMILAB/scnpf)

BISCUIT
[I-Impute](https://github.com/xikanfeng2/I-Impute)

Rescue
[netNMF-sc](https://github.com/raphael-group/netNMF-sc)

bayNorm
[BISCUIT](https://github.com/sandhya212/BISCUIT_SingleCell_IMM_ICML_2016)

scRecover
[RESCUE](https://github.com/seasamgo/rescue)

SCRIBE
[bayNorm](https://github.com/WT215/bayNorm)

scDoc
[scRecover](https://github.com/miaozhun/scRecover)

AutoImpute
[SCRIBE](https://github.com/YiliangTracyZhang/SCRIBE)

SCRABBLE
[scDoc](https://github.com/anlingUA/scDoc)

scTSSR
[AutoImpute](https://github.com/divyanshu-talwar/AutoImpute)

scScope
[SCRABBLE](https://github.com/software-github/SCRABBLE)

dca (https://github.com/theislab/dca)
[scTSSR](https://github.com/Zhangxf-ccnu/scTSSR)

MAGIC (https://github.com/KrishnaswamyLab/MAGIC)
[scScope](https://github.com/AltschulerWu-Lab/scScope)

devtools::install_github("cnk113/scep", subdir="pkg")
[VIPER](https://github.com/ChenMengjie/VIPER)

[DCA](https://github.com/theislab/dca)

[MAGIC](https://github.com/KrishnaswamyLab/MAGIC)
Binary file removed pkg/R/.Empute.R.swp
Binary file not shown.
8 changes: 1 addition & 7 deletions pkg/R/Empute.R
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,7 @@ scRMD.EnImpute = function(count, tau = NULL, lambda = NULL, candidate = 0.05){
#' [9] Zhang, X. F. et al. EnImpute: imputing dropout events in single cell RNA sequencing data via ensemble learning, 2019.\cr
#'

Empute = function(h5, exp.cells, total.drops, z.dim=200, z.layers=1000, ep=300,
exp.cells=0.1, exp.calls = NULL,
scale.factor = 10000, trim = 0.3,
Empute = function(count, scale.factor = 10000, trim = 0.3,
ALRA = TRUE, DCA = TRUE, DrImpute = TRUE, MAGIC = TRUE, SAVER = TRUE,
scImpute = TRUE, scRMD = TRUE, ALRA.k = 0, ALRA.q = 10, ALRA.mkl = TRUE,
DCA.normtype = "zheng", DCA.type = "zinb-conddisp",
Expand All @@ -398,10 +396,6 @@ Empute = function(h5, exp.cells, total.drops, z.dim=200, z.layers=1000, ep=300,

K = length(Methods.used)

count <- Cellbender(h5, cells=exp.cells, total=total.drops, dim=z.dim, layers=z.layers, epochs=ep)
count <- Doublets(count, exp=exp.cells, cell.calls=calls)


p = dim(count)[1]
n = dim(count)[2]

Expand Down

0 comments on commit 1f6357c

Please sign in to comment.