Nothing
.limitCov <- function(object, maxCov){
indCov <- totalReads(object) > maxCov
fraction <- methReads(object)[indCov] / totalReads(object)[indCov]
totalReads(object)[indCov] <- as.integer(maxCov)
methReads(object)[indCov] <- as.integer(round(fraction * maxCov))
return(object)
}
setMethod("limitCov",
signature=c(object = "BSraw", maxCov="numeric"),
.limitCov)
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.