Description Usage Arguments Value Examples
View source: R/RaceID3_StemID2_class.R
This function processes the self-organizing maps produced by the function getsom.
| 1 | procsom(s1d, corthr = 0.85, minsom = 3)
 | 
| s1d | output of function  | 
| corthr | correlation threshold, i. e. a real number between 0 and 1. The z-score of the average normalized pseudo-temporal expression profiles within each node of the self-organizing map is computed, and the correlation of these z-scores between neighbouring nodes is computed. If the correlation is greater than  | 
| minsom | positive integer number. Nodes of the self-organizing map with less than  | 
A list of the following seven components:
| k | vector of Pearson's correlation coefficient between node  | 
| nodes | vector with assignment of genes to nodes of the final self-organizing map (after merging). Components are node numbers and component names are gene IDs. | 
| nodes.e | data frame with average normalized pseudo-temporal expression profile for each node, ordered by node number. | 
| nodes.z | data frame with z-score transformed average normalized pseudo-temporal expression profile for each node, ordered by node number. | 
| all.e | data frame with normalized pseudo-temporal expression profile for all genes in the self-organizing map, ordered by node number. | 
| all.z | data frame with z-score transformed normalized pseudo-temporal expression profile for all genes in the self-organizing map, ordered by node number. | 
| all.b | data frame with binarized pseudo-temporal expression profile for all genes in the self-organizing map, ordered by node number. Expression is 1 in cells with z-score > 1 and -1 in cells with z-score < -1, and 0 otherwise. | 
| 1 2 3 4 5 6 7 8 9 10 11 | x <- intestine$x
y <- intestine$y
v <- intestine$v
tar <- c(6,9,13)
fb <- fateBias(x,y,tar,z=NULL,minnr=5,minnrh=10,nbfactor=5,use.dist=FALSE,seed=NULL,nbtree=NULL)
trc <- dptTraj(x,y,fb,trthr=.25,distance="euclidean",sigma=1000)
n <- trc[["t6"]]
fs  <- filterset(v,n,minexpr=2,minnumber=1)
s1d <- getsom(fs,nb=1000,k=5,locreg=TRUE,alpha=.5)
ps <- procsom(s1d,corthr=.85,minsom=3)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.