Nothing
hotspotFinder <-
function(peak,numgene){
if((dim(peak)[2] != 9) & (dim(peak)[2] !=3 )){
stop("The peak data.frame need to be 3 or 9 columns.")
}
out2 <- split(peak, peak[,2])
lapply(out2,dim)
out2 <- out2[which(lapply(out2,nrow) >= numgene)]
return(out2)
}
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.