Nothing
setClass("CompartmentVolumeRule", representation(compartment = "character"),
contains = "AssignmentRule")
setMethod("describe", "CompartmentVolumeRule",
function(object)
paste("|", compartment(object), "| :=", math(object), sep = ""))
setMethod("compartment", "CompartmentVolumeRule", function(object) object@compartment)
setReplaceMethod("compartment", "CompartmentVolumeRule", function(object, value) {
object@compartment <- 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.