Nothing
#' @aliases tableHits
#' @rdname tableHits-methods
setMethod(
f = "tableHits",
signature = "ResultSet",
definition = function(object, th=0.05) {
data.frame(
exposure=names(object),
hits=sapply(names(object), function(expo) {
tt <- MultiDataSet::getAssociation(object, rid=expo, fNames=NULL)
sum(tt$P.Value < th)
}),
stringsAsFactors = FALSE
)
}
)
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.