A R package.
SDImpute is an implement block imputation for dropout events in scRNA-seq data. SDImpute combines both cell-level and gene-level information to identify the drop-out events and borrows the information unaffected by dropouts from similar cells to impute the dropouts.
You can install SDImpute from GitHub with:
install.packages("devtools")
library(devtools)
install_github("Jinsl-lab/SDImpute")
The input data of SDImpute is a gene expression matrix, columns and rows represent cells and genes respectively. You can choose whether or not to preprocess the data.
``` r library(SDImpute)
data(data) imputed_data<-SDImpute(data,do.nor=TRUE,do.log=FALSE,auto.k=FALSE,k=5,M=15,T=0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.