Nothing
DoIntEpi450k <-
function(statM.o, adj.m, c, dmaMode="avbeta"){
if(length(grep("[a-zA-Z]",rownames(adj.m)))!=0){print("ERROR: The rownames of adj.m should be EntrezID");break}
if (dmaMode == "avbeta"){
avbeta.m <- statM.o$avbeta;
commonEID.v <- intersect(rownames(adj.m),rownames(avbeta.m));
mapA.idx <- match(commonEID.v,rownames(adj.m));
tmpA.m <- adj.m[mapA.idx,mapA.idx];
mapM.idx <- match(commonEID.v,rownames(avbeta.m));
tmpM.m <- avbeta.m[mapM.idx,];
gr.o <- graph.adjacency(tmpA.m,mode="undirected");
comp.l <- clusters(gr.o);
ngpc.v <- summary(factor(comp.l$member));
maxCLid <- as.numeric(names(ngpc.v)[which.max(ngpc.v)]);
maxc.idx <- which(comp.l$member==maxCLid);
#get the max connected network
tmpA.m <- tmpA.m[maxc.idx,maxc.idx];
gr.o <- graph.adjacency(tmpA.m,mode="undirected");
tmpE.m <- get.edgelist(gr.o);
tmpM.m <- tmpM.m[maxc.idx,];
#### now extract statistics
selcol.idx <- match(c("t","P.Value"),colnames(statM.o$top[[c]]));
ordrow.idx <- match(rownames(tmpM.m),rownames(statM.o$top[[c]]));
if(length(intersect(c("ID"),colnames(statM.o$top[[c]])))==1){
ordrow.idx <- match(rownames(tmpM.m),statM.o$top[[c]][,1]);
}
statM.m <- statM.o$top[[c]][ordrow.idx,selcol.idx];
rownames(statM.m) <- rownames(tmpM.m);
return(list(statM=statM.m,adj=tmpA.m,avbeta=avbeta.m));
}
else if(dmaMode == "singleProbe"){
probeID.v <- statM.o$probeID[[c]];
commonEID.v <- intersect(rownames(adj.m), names(probeID.v));
mapA.idx <- match(commonEID.v,rownames(adj.m));
tmpA.m <- adj.m[mapA.idx,mapA.idx];
mapM.idx <- match(commonEID.v,names(probeID.v));
tmpM.v <- probeID.v[mapM.idx];
gr.o <- graph.adjacency(tmpA.m,mode="undirected");
comp.l <- clusters(gr.o);
ngpc.v <- summary(factor(comp.l$member));
maxCLid <- as.numeric(names(ngpc.v)[which.max(ngpc.v)]);
maxc.idx <- which(comp.l$member==maxCLid);
#get the max connected network
tmpA.m <- tmpA.m[maxc.idx,maxc.idx];
gr.o <- graph.adjacency(tmpA.m,mode="undirected");
tmpE.m <- get.edgelist(gr.o);
tmpM.v <- tmpM.v[maxc.idx];
#### now extract statistics
selcol.idx <- match(c("t","P.Value"),colnames(statM.o$top[[c]]));
ordrow.idx <- match(names(tmpM.v),rownames(statM.o$top[[c]]));
if(length(intersect(c("ID"),colnames(statM.o$top[[c]])))==1){
ordrow.idx <- match(names(tmpM.v),statM.o$top[[c]][,1]);
}
statM.m <- statM.o$top[[c]][ordrow.idx,selcol.idx];
rownames(statM.m) <- names(tmpM.v);
return(list(statM=statM.m,adj=tmpA.m,probeID=probeID.v));
}
else{print("Please indicate correct mode for statM.o object!");break}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.