\HeaderA{QualityWeights}{Spot Quality Weights}{QualityWeights}
\aliasA{wtarea}{QualityWeights}{wtarea}
\aliasA{wtflags}{QualityWeights}{wtflags}
\aliasA{wtIgnore.Filter}{QualityWeights}{wtIgnore.Filter}
\keyword{regression}{QualityWeights}
\begin{Description}\relax
Functions to calculate quality weights for individual spots based on image analyis output file.
\end{Description}
\begin{Usage}
\begin{verbatim}
wtarea(ideal=c(160,170))
wtflags(weight=0,cutoff=0)
wtIgnore.Filter
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{ideal}] numeric vector giving the ideal area or range of areas for a spot in pixels
\item[\code{weight}] weight to be given to flagged spots
\item[\code{cutoff}] cutoff value for \code{Flags} below which spots will be downweighted
\end{ldescription}
\end{Arguments}
\begin{Details}\relax
These functions can be passed as an argument to \code{read.maimages} to construct quality weights as the microarray data is read in.

\code{wtarea} downweights unusually small or large spots and is designed for SPOT output.
It gives weight 1 to spots which have areas in the ideal range, given in pixels, and linearly downweights spots which are smaller or larger than this range.

\code{wtflags} is designed for GenePix output and gives the specified weight to spots with \code{Flags} value less than the \code{cutoff} value.
Choose \code{cutoff=0} to downweight all flagged spots.
Choose \code{cutoff=-50} to downweight bad or absent spots or \code{cutoff=-75} to downweight only spots which have been manually flagged as bad.

\code{wtIgnore.Filter} is designed for QuantArray output and sets the weights equal to the column \code{Ignore Filter} produced by QuantArray.
These weights are 0 for spots to be ignored and 1 otherwise.
\end{Details}
\begin{Value}
A function which takes a dataframe or matrix as argument and produces a numeric vector of weights between 0 and 1
\end{Value}
\begin{Author}\relax
Gordon Smyth
\end{Author}
\begin{SeeAlso}\relax
An overview of LIMMA functions for reading data is given in \LinkA{03.ReadingData}{03.ReadingData}.
\end{SeeAlso}
\begin{Examples}
\begin{ExampleCode}
#  Read in spot output files from current directory and give full weight to 165
#  pixel spots.  Note: for this example to run you must set fnames to the names
#  of actual spot output files (data not provided).
## Not run: 
RG <- read.maimages(fnames,source="spot",wt.fun=wtarea(165))
#  Spot will be downweighted according to weights found in RG
MA <- normalizeWithinArrays(RG,layout)
## End(Not run)
\end{ExampleCode}
\end{Examples}


