Nothing
setConstructorS3("AromaCore", function(pkgName="aroma.core", ...) {
extend(AromaPackage(pkgName), "AromaCore")
})
setMethodS3("fixSearchPath", "AromaCore", function(this, ...) {
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# RULES
# 2009-05-13:
# o grid must be after aroma.core. [getNames()]
# 2008-08-27:
# o affy must be after aroma.light, otherwise the former overrides
# the generic plotDensity() function of the latter.
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Figure out which of our packages (aroma.core, aroma.light etc.) is
# last on the search path.
aheadPkgs <- c("aroma.core", "aroma.light")
# Problematic package that must be after this package on the search path
behindPkgs <- c("grid", "affy")
res <- fixSearchPathInternal(this, aheadPkgs=aheadPkgs,
behindPkgs=behindPkgs, ...)
# Return the package actually moved
invisible(res)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.