Description Usage Arguments Value Examples
Given a list of models return a matrix corresponding to the prediction from the models. Each column represents a gene and each row its expression at a given point in pseudotime.
1 | predicted_expression(sce, models = NULL, n_cores = 2)
|
sce |
An object of class |
models |
An object representing models. If of type |
n_cores |
The number of cores to pass to |
A dataframe of predicted expression where rows are cells (pseudotime) and columns are genes
1 2 3 4 5 | library(scater)
data('sc_example_counts') ; sce <- newSCESet(countData = sc_example_counts)
sce <- embeddr(sce)
sce <- fit_pseudotime(sce)
pe <- predicted_expression(sce[1:4,]) # use first four genes
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.