Description Usage Arguments Details Value Examples
Cluster genes in clusters that have similar expression patterns
along all lineages in the trajectory. By default, this function uses the
clusterExperiment
package to do the clustering. If another clustering
method is of interest, one can extract fitted values to use for clustering,
see details in the vignette.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ## S4 method for signature 'SingleCellExperiment'
clusterExpressionPatterns(
models,
nPoints,
genes,
reduceMethod = "PCA",
nReducedDims = 10,
minSizes = 6,
ncores = 1,
random.seed = 176201,
verbose = TRUE,
...
)
## S4 method for signature 'list'
clusterExpressionPatterns(
models,
nPoints,
genes,
reduceMethod = "PCA",
nReducedDims = 10,
minSizes = 6,
ncores = 1,
random.seed = 176201,
verbose = TRUE,
...
)
|
models |
The fitted GAMs, typically the output from
|
nPoints |
The number of points to use for clustering the expression patterns. |
genes |
A numerical or character vector specifying the genes from
|
reduceMethod |
Dimensionality reduction method used before running the
clustering methods. Passed to |
nReducedDims |
Number of dimensions kept after |
minSizes |
Minimum size of clusters.
Passed to |
ncores |
Number of cores to use. Passed to
|
random.seed |
Passed to |
verbose |
Passed to |
... |
Additional arguments to be passed to
|
This method adopts the RSEC
function from the clusterExperiment package to perform consensus clustering.
A list containing the scaled fitted values yhatScaled
(for
plotting) and a clusterExperiment
object, containing the
clustering results.
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.