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

}