Nothing
## class 'TssData' ##
setClass("TssData",
representation(reads="list",
segments="data.frame",
parameters="list",
annotation="ANY")
)
setValidity("TssData",
function(object) {
res <- TRUE
if(!all.equal(length(object@reads), nrow(object@segments))) {
res <- "Number of segments inconsistent."
}
return(res)
})
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.