Nothing
#' @import S4Vectors
#' @importFrom methods is
scaleBigWigs <- function(bigWigs) {
if (methods::is(bigWigs, 'RleList')) {
bigWig <- bigWigs
ucov <- unlist(bigWig)
mi <- mean(ucov)
mu <- S4Vectors::sd(ucov)
zsc <- (bigWig-mi)/mu
return(zsc)
} else {
l <- lapply(bigWigs, function(bigWig) {
ucov <- unlist(bigWig)
mi <- mean(ucov)
mu <- S4Vectors::sd(ucov)
zsc <- (bigWig-mi)/mu
return(zsc)
})
return(l)
}
}
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.