normalizations <- function(use_case = "heatmap") {
norm <-
if (use_case == "heatmap") {
c("transcriptNormalized", "zscore", "sum", "log10sum")
} else if (use_case == "metabrowser") {
c("transcriptNormalized", "maxNormalized", "zscore","tpm")
} else stop("Invalid use case option")
return(norm)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.