Nothing
setClass("SpeciesConcentrationRule", representation(species = "character"),
contains = "AssignmentRule")
setMethod("describe", "SpeciesConcentrationRule",
function(object) paste("[", species, "] = ", math(object), sep = ""))
setMethod("species", "SpeciesConcentrationRule", function(object) object@species)
setReplaceMethod("species", "SpeciesConcentrationRule", function(object, value) {
object@species<- value
object
})
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.