R/999.DEPRECATED.R

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# DEFUNCT
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# DEPRECATED
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
setMethodS3("nbrOfFiles", "AbstractCurveNormalization", function(this, ...) {
  .Deprecated(msg = "nbrOfFiles(x) is deprecated. Use length(getInputDataSet(x)) instead.")
  ds <- getInputDataSet(this)
  length(ds)
}, protected=TRUE)


setMethodS3("nbrOfFiles", "PairedPscbsModel", function(this, ...) {
  .Deprecated(msg = "nbrOfFiles(x) is deprecated. Use length(getTumorDataSet(x)) instead.")
  dsT <- getTumorDataSet(this)
  length(dsT)
})


setMethodS3("nbrOfFiles", "TumorBoostNormalization", function(this, ...) {
  .Deprecated(msg = "nbrOfFiles(x) is deprecated. Use length(getInputDataSet(x)) instead.")
  ds <- getInputDataSet(this)
  length(ds)
})

Try the aroma.cn package in your browser

Any scripts or data that you put into this service are public.

aroma.cn documentation built on July 21, 2022, 1:05 a.m.