Nothing
"mzV2indRange" <-
function(mzV, error=0.003) {
mzIndR <- NULL
for (i in 1:length(mzV)) {
from.i <- round(u2i(mzV[i] * (1 - error)))
to.i <- round(u2i(mzV[i] * (1 + error)))
mzIndR <- c(mzIndR, from.i:to.i)
}
mzIndR <- sort(unique(mzIndR))
return(mzIndR)
}
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.