Nothing
correctionTVscore <- function(useM, gcFrac, arrayn, windowl) {
newsp = split(useM, gcFrac)
correctionVals = sapply(newsp, mean)
fsampled = sum(useM)
n = length(useM)
lambda = fsampled/n
ngc = sapply(newsp, length)
tvscore = sum(ngc/n * (abs(correctionVals - lambda)))
# print(paste('for array',arrayn,'new tv for window',windowl,'is',tvscore))
return(tvscore)
}
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.