knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
Modeling expression drop-out for analysis of scRNA-Seq data
DOSeq - Modeling expression drop-out for analysis of scRNA-Seq data. DOSeq takes read count matrix and factor for drop-out ratio as input and return the read count matrix with dropout. Here input parameter factor indicates drop-out ratio in expression matrix.
The developer's version of the R package can be installed with the following R commands:
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") # The following initializes usage of Bioc devel BiocManager::install(version='devel') BiocManager::install("DOSeq")
The github's version of the R package can be installed with the following R commands:
library(devtools) install_github('krishan57gupta/DOSeq')
This vignette uses the Tung dataset, which is already inbuilt in the package, to demonstrate a standard pipeline.
Libraries need to be loaded before running.
library(DOSeq)
samples<-DOSeq::L_Tung_single$NA19098_NA19101_count samples[1:5,1:5]
Input: gene expression matrix with genes in rows and cells in columns.
output<-DOSeq(countData=samples, factor=.8)
output[1:5,1:5]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.