Description Usage Arguments Value References Examples
View source: R/DoDiffusionMap.R
This function constructs diffusion map with highly variable genes and identify the root cell with cell cluster and signaling entropy rate
1 2 3 4 5 6 7 8 | DoDiffusionMap(
Integration.l,
mean_gap = 1,
sd_gap = 1,
root = c("cell", "state"),
num_comp = 3,
k = 30
)
|
Integration.l |
Typically, it is the output from |
mean_gap |
The threshold for HVG gene selection based on the mean expression level. Default value is 1 |
sd_gap |
The threshold for HVG gene selection based on the expression level's standard deviation. Default value is 1 |
root |
Define the root of the trajectory. |
num_comp |
A numeric. The dimension of diffusion map, which is related to the following plot generation. Default is 3 |
k |
Number of nearest neighbors to consider. Default is 30 |
An updated list objects, add three elements:
DM A diffusion map object
DMEigen The diffusion components of the diffusion map
root The index of root cell for generating diffusion map plots
Teschendorff AE, Tariq Enver. Single-cell entropy for accurate estimation of differentiation potency from a cell’s transcriptome. Nature communications 8 (2017): 15599. doi: 10.1038/ncomms15599.
Teschendorff, Andrew E., Peter Sollich, and Reimer Kuehn. Signalling entropy: A novel network-theoretical framework for systems analysis and interpretation of functional omic data. Methods 67.3 (2014): 282-293. doi: 10.1016/j.ymeth.2014.03.013.
1 2 3 4 5 6 7 8 9 | ## Not run:
data(Example.m)
data(net13Jun12.m)
Integration.l <- DoIntegPPI(exp.m = Example.m[, c(1:58,61:84,86:98,100)], ppiA.m = net13Jun12.m)
data(SR.v)
Integration.l$SR <- SR.v
InferPotency.o <- InferPotency(Integration.l)
DoDM.o <- DoDiffusionMap(InferPotency.o)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.