1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/defunct.R
\name{defunct}
\alias{defunct}
\alias{trendVar}
\alias{decomposeVar}
\alias{testVar}
\alias{improvedCV2}
\alias{technicalCV2}
\alias{makeTechTrend}
\alias{multiBlockVar}
\alias{multiBlockNorm}
\alias{overlapExprs}
\alias{parallelPCA}
\title{Defunct functions}
\usage{
trendVar(...)
decomposeVar(...)
testVar(...)
improvedCV2(...)
technicalCV2(...)
makeTechTrend(...)
multiBlockVar(...)
multiBlockNorm(...)
overlapExprs(...)
parallelPCA(...)
}
\arguments{
\item{...}{Ignored arguments.}
}
\value{
All functions error out with a defunct message pointing towards its descendent (if available).
}
\description{
Functions that have passed on to the function afterlife.
Their successors are also listed.
}
\details{
\code{trendVar}, \code{decomposeVar} and \code{testVar} are succeeded by a suite of funtions related to \code{\link{modelGeneVar}} and \code{\link{fitTrendVar}}.
\code{improvedCV2} and \code{technicalCV2} are succeeded by \code{\link{modelGeneCV2}} and \code{\link{fitTrendCV2}}.
\code{makeTechTrend} is succeeded by \code{\link{modelGeneVarByPoisson}}.
\code{multiBlockVar} is succeeded by the \code{block} argument in many of the modelling functions, and \code{multiBlockNorm} is no longer necessary.
\code{\link{overlapExprs}} is succeeded by \code{\link{findMarkers}} with \code{test.type="wilcox"}.
\code{\link{parallelPCA}} has been moved over to the \pkg{PCAtools} package.
}
\examples{
try(trendVar())
}
\author{
Aaron Lun
}
|