#' Run uncorrected merging
#'
#' @param params a UncorrectedMerge object
#' @param data a data object
#' @importFrom Seurat RunPCA
#'
#' @return returns a Seurat object of the integrated data
#'
run_Uncorrected <- function(params, data){
data <- RunPCA(data, npcs = params@npcs, reduction.name = params@name, verbose = FALSE)
data
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.