Nothing
setMethod("show", signature(object="BiocView"),
function(object) {
cat("Bioconductor View:", object@name, "\n")
cat("Parent Views:\n")
print(object@parentViews)
cat("Subviews:\n")
print(object@subViews)
cat("Contains packages:\n")
if (length(object@packageList))
print(names(object@packageList))
else
cat("<no packages>\n")
})
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.