Nothing
getPeaks2 <- function(bseoffM, pVec, eps=0.003) {
mzs <- as.numeric(rownames(bseoffM))
left <- (1- eps) * pVec
right <- (1+eps) * pVec
getMax <- function(i) {
sub <- mzs > left[i] & mzs < right[i]
apply(bseoffM[sub,],2,max)
}
mat <- t(sapply(seq(along=pVec), getMax))
rownames(mat) <- pVec
mat
}
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.