Nothing
#' scater_logNormCounts
#' Uses \link{logNormCounts} to log normalize input data
#' @param inSCE Input SingleCellExperiment object
#' @param logAssayName New assay name for log normalized data
#' @param useAssay Input assay
#' @return inSCE Updated SingleCellExperiment object that contains the new log normalized data
#' @export
#' @author Irzam Sarfraz
#' @examples
#' data(sce_chcl, package = "scds")
#' sce_chcl <- scater_logNormCounts(sce_chcl,"logcounts", "counts")
scater_logNormCounts <- function(inSCE, logAssayName = "ScaterLogNormCounts", useAssay = "counts"){
inSCE <- scater::logNormCounts(
x = inSCE,
name = logAssayName,
exprs_values = useAssay)
return(inSCE)
}
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.