Nothing
##Class OGP
setClass(
"OGP",
representation(
cogids="data.frame",
sspids="data.frame",
orthodist="matrix",
abundance="numeric",
diversity="numeric",
plasticity="numeric",
status="character"
),
prototype=list(
cogids=data.frame(),
sspids=data.frame(),
orthodist=matrix(),
abundance=numeric(),
diversity=numeric(),
plasticity=numeric(),
status=character()
)
)
##Class OGR
setClass(
"OGR",
representation(
cogids="data.frame",
tree="phylo",
spbranches="data.frame",
orthoroot="data.frame",
orthoct="data.frame",
status="character"
),
prototype=list(
cogids=data.frame(),
tree=setClass("phylo"),
spbranches=data.frame(),
orthoct=data.frame(),
orthoroot=data.frame(),
status=character()
)
)
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.