Description Usage Arguments Details Value Author(s) Examples
This function focus on dealing various single-cell RNA-seq input and unifying output format.
1 | data_process(Data, group, norm.form = "CPM", is.normalized = FALSE)
|
Data |
single-cell RNA-seq matrix. The format could be raw-counts, FPKM/RPKM, TPM or UMI-counts. The matrix need include gene names and cell names. |
group |
group information. The cell need be divided into two category. |
norm.form |
character item. We provide several normalized method for raw-counts data. The method include "TMM","RLE", "CPM". The default is "CPM". |
is.normalized |
logical. A logical flag to determin whether or not the input dataset normalizes. If TRUE, we will take the Data as normcounts and input for downstream analysis. If not, we provide method for the process. |
We take relative2abs
transfering relative expression values into absolute transcript counts.
However, the process maybe break the original dataset statistical properties. Hence, we advise user don't normalize firstly.
sce : A SingleCellExperiment
item. The object include expression matrix, group information. The expression matrix contains counts and normcounts.
Huisheng, Li, <lihs@mails.ccnu.edu.cn>
1 2 3 | data("Grun.counts.hvg")
data("Grun.group.information")
sce <- data_process(Data = Grun.counts.hvg, group = Grun.group.information)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.