Description Usage Arguments Value Examples
This function fits both smoothing B-spline tobit regression models for all
genes in sce
and computes p-values by comparing to the null model using
a likelihood ratio test.
1 | pseudotime_test(sce, n_cores = 2)
|
sce |
An object of class |
n_cores |
The number of cores used in the call to |
A data.frame
with three columns: the gene name, the unadjusted p-value and
the Benjamini-Hochberg adjusted q-value. Note that different multiple testing corrections
can be applied using the R function p.adjust
.
1 2 3 4 5 | library(scater)
data('sc_example_counts') ; sce <- newSCESet(countData = sc_example_counts)
sce <- embeddr(sce)
sce <- fit_pseudotime(sce)
df_pval <- pseudotime_test(sce[1:4,]) # only for first four genes
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.