Nothing
c.skatCohort <- function(...){
ev <- environment()
cl <- match.call()
ncohort <- length(cl)-1
re <- NULL
for(i in 1:ncohort){
re <- c(re,as.list(eval(cl[[i+1]],ev) ))
}
class(re) <- "skatCohort"
re
}
#' @export
c.seqMeta <- function(...){
ev <- environment()
cl <- match.call()
ncohort <- length(cl)-1
re <- NULL
for(i in 1:ncohort){
re <- c(re,as.list(eval(cl[[i+1]],ev) ))
}
class(re) <- "seqMeta"
re
}
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.