man/normaliseExprs.Rd
89fa3af2
 % Generated by roxygen2: do not edit by hand
 % Please edit documentation in R/QCfunctions.R
 \name{normaliseExprs}
 \alias{normaliseExprs}
233354bd
 \title{normaliseExprs}
89fa3af2
 \usage{
846c3061
 normaliseExprs(
   sce,
   altExp_name = NULL,
   exprs_value = "counts",
89fa3af2
   transform = c("log", "clr", "zi_minMax", "minMax"),
846c3061
   log_offset = NULL
 )
89fa3af2
 }
 \arguments{
 \item{sce}{A \code{SingleCellExperiment} object}
 
1a71b0a0
 \item{altExp_name}{Name of alternative expression
 that will be used to perform normalisation}
89fa3af2
 
1a71b0a0
 \item{exprs_value}{A character indicates
 which expression value in assayNames is used.}
89fa3af2
 
1a71b0a0
 \item{transform}{type of transformation,
 either log or clr (Centered log ratio transform)}
89fa3af2
 
1a71b0a0
 \item{log_offset}{Numeric scalar specifying the pseudo-count
 to add when log-transforming expression values. Default is 1}
89fa3af2
 }
233354bd
 \value{
 a SingleCellExperiment object
 }
89fa3af2
 \description{
 A function that perform normalisation for alternative expression
 }
8f20545e
 \examples{
d26d5e3f
 data(CITEseq_example, package = "CiteFuse")
8f20545e
 sce_citeseq <- preprocessing(CITEseq_example)
 sce_citeseq <- normaliseExprs(sce = sce_citeseq,
 altExp_name = "ADT",
 transform = "log")
 }