R/9999.DEPRECATED.BFilter.R

#########################################################################/**
# @RdocClass BFilter
#
# @title "FieldFilter for the log-intensities (A)"
#
# \description{
#  @classhierarchy
#
#   @get "title".
# }
#
# @synopsis
#
# \arguments{
#   \item{input}{The input @see "MicroarrayData" object.}
#   \item{...}{Any arguments accepted by the @see "FieldFilter" constructor.}
# }
#
# \section{Fields and Methods}{
#  @allmethods
# }
#
#
# @author
#
# \seealso{
#   See also the @see "FieldFilter" class.
# }
#
# \keyword{manip}
#*/#########################################################################
setConstructorS3("BFilter", function(input, ...) {
  ok <- !missing(input);
  if (ok && !inherits(input, "MicroarrayData"))
    throw("Argument 'input' is not of class MicroarrayData: ", data.class(input));

  extend(FieldFilter(input, "B", ...), "BFilter"
  )
}, deprecated=TRUE)

############################################################################
# HISTORY:
# 2003-04-21
# o Added Rdocs.
# 2002-01-24
# * Rewritten for setClassS3 and setMethodS3.
# 2001-09-29
# * Created from TFilter.
############################################################################
HenrikBengtsson/aroma documentation built on May 7, 2019, 12:56 a.m.