Nothing
## Parse the xml file containing the defaults for the respective FlowJo tags
## Internal environment to store the parsed defaults
.fuEnv <- new.env(parent=emptyenv())
.onLoad <- function(...)
{
mdef <- xmlSApply(xmlTreeParse(system.file("defaults.xml",
package="flowUtils"),
addAttributeNamespaces=TRUE)[["doc"]][[1]][["macdefaults"]],
function(x)
if(!is(x, "XMLCommentNode")) as.list(xmlAttrs(x)))
wdef <- xmlSApply(xmlTreeParse(system.file("defaults.xml",
package="flowUtils"),
addAttributeNamespaces=TRUE)[["doc"]][[1]][["windefaults"]],
function(x)
if(!is(x, "XMLCommentNode")) as.list(xmlAttrs(x)))
mdef <- mdef[!sapply(mdef, is.null)]
wdef <- wdef[!sapply(wdef, is.null)]
assign("winDefaults", wdef, .fuEnv)
assign("macDefaults", mdef, .fuEnv)
}
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.