runTauStarDE | R Documentation |
Test if each gene in a list of genes is differentially expressed along pseudotime.
A wrapper of tauStarDE::tauStarDE
.
runTauStarDE(
gene.vec,
ori.tbl,
mat,
assay.use = "counts",
seurat.assay = "RNA",
mc.cores = 2,
mc.preschedule = TRUE,
SIMPLIFY = TRUE
)
gene.vec |
A vector of genes. It should be a subset of the row names in sce. |
ori.tbl |
A tibble or dataframe which contains the original cells and pseudotime as two columns. |
mat |
The input expression data. It can be: (1) A SingleCellExperiment object which contain the expression data; (2) An matrix; (3) A Seurat object which contain the expression data. Its row names should be genes and col names should be cells. |
assay.use |
The |
seurat.assay |
The |
mc.cores |
Number of cores for computing. |
mc.preschedule |
See |
SIMPLIFY |
A logic variable whether to return a tibble (TRUE) or a list of lists (FALSE). Default is TRUE. |
A tibble of summary results of genes
Yuheng Lai
data("LPS_sce")
data("LPS_ori_tbl")
data("LPS_sub_tbl")
res <- PseudotimeDE::runTauStarDE(gene.vec = c("CCL5", "CXCL10"),
ori.tbl = LPS_ori_tbl, sub.tbl = LPS_sub_tbl[1:10], mat = LPS_sce, model = "nb")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.