Description Usage Arguments Value Author(s) Examples
SCESet objects can contain a matrix of pairwise distances between cells. These
functions conveniently access and replace the cell pairwise distances with the value
supplied, which must be a matrix of the correct size. The function cellDist
is simply shorthand for cellPairwiseDistances
.
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 28 29 | cellPairwiseDistances(object)
cellPairwiseDistances(object) <- value
cellDist(object)
cellDist(object) <- value
cellPairwiseDistances.SCESet(object)
## S4 method for signature 'SCESet'
cellPairwiseDistances(object)
cellDistSCESet(object)
## S4 method for signature 'SCESet'
cellDist(object)
## S4 replacement method for signature 'SCESet,matrix'
cellPairwiseDistances(object) <- value
## S4 replacement method for signature 'SCESet,dist'
cellPairwiseDistances(object) <- value
## S4 replacement method for signature 'SCESet,matrix'
cellDist(object) <- value
## S4 replacement method for signature 'SCESet,dist'
cellDist(object) <- value
|
object |
a |
value |
a matrix of class |
An SCESet object containing new cell pairwise distances matrix.
Davis McCarthy
1 2 3 4 5 | data("sc_example_counts")
data("sc_example_cell_info")
pd <- new("AnnotatedDataFrame", data = sc_example_cell_info)
example_sceset <- newSCESet(countData = sc_example_counts, phenoData = pd)
cellPairwiseDistances(example_sceset)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.