R/PairedPSCBSFile.R

setConstructorS3("PairedPSCBSFile", function(...) {
  extend(GenericDataFile(...), "PairedPSCBSFile")
})

setMethodS3("loadFit", "PairedPSCBSFile", function(this, ...) {
  pathname <- getPathname(this)
  fit <- loadObject(pathname)

  # Sanity check
  fit <- Arguments$getInstanceOf(fit, "PairedPSCBS")

  fit
}, protected=TRUE)


setMethodS3("loadObject", "PairedPSCBSFile", function(this, ...) {
  loadFit(this, ...)
})

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 May 29, 2024, 9:16 a.m.