Nothing
#.First.lib <- function(libname, pkgname, where)
.onAttach <- function(libname, pkgname)
{
if ((.Platform$OS.type=="windows")&&(.Platform$GUI == "Rgui"))
{
winMenuAdd("oneChannelGUI");winMenuAddItem("oneChannelGUI","oneChannelGUI","oneChannelGUI.start()")
packageStartupMessage(paste("\nTo begin, type oneChannelGUI() or use the pull-down menu.\n"))
}
else packageStartupMessage(paste("\nTo begin, type oneChannelGUI()\n"))
# I only get .First.lib to ask the user whether they want to start the GUI with
# a message box for the Windows OS. I encountered some problems under linux
# for the case where the Tcl/Tk extensions can't be found (so affylmGUI tries
# to exit), and speculated that there could be problems arising from running
# the whole affylmGUI() program before finishing .First.lib.
if (interactive() && .Platform$OS.type=="windows")
{
BeginOneChannelGUI <- tclvalue(tkmessageBox(title="oneChannelGUI",message="Begin oneChannelGUI?",type="yesno",icon="question"))
if (BeginOneChannelGUI=="yes") oneChannelGUI()
else bringToTop(-1)
}
}
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.