Nothing
setGeneric("man", function(x, ...) standardGeneric("man"))
setMethod("man", signature=signature("matrix"),
function(x, diag = FALSE, upper = FALSE)
{
dist(x, method="manhattan", diag=diag, upper=upper)
} )
setMethod("man", signature=signature("eSet"),
function(x, diag=FALSE, upper=FALSE) man(exprs(x), diag, upper)
)
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.