% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/SCONE_DEFAULTS.R
\name{DESEQ_FN}
\alias{DESEQ_FN}
\title{Relative log-expression (RLE; DESeq) scaling normalization wrapper
function}
\usage{
DESEQ_FN(ei)
}
\arguments{
\item{ei}{Numerical matrix. (rows = genes, cols = samples).}
}
\value{
RLE normalized matrix.
}
\description{
Relative log-expression (RLE; DESeq) scaling normalization wrapper
function
}
\details{
SCONE scaling wrapper for \code{\link[edgeR]{calcNormFactors}}).
}
\examples{
ei <- matrix(0:20,nrow = 7)
eo <- DESEQ_FN(ei)

}