R/Summary-methods.R

#' Summarize the results of a Pathway-Express analysis
#' 
#' @param x Pathway-Express analysis result object obtained using \code{\link{pe}}
#' @param ... see \code{\link{summary.peRes}}
#' @param na.rm ignored
#'
#' @aliases Summary,peRes-method
#'
#' @export
setMethod("Summary", c("x" = "peRes"),
  function(x, ..., na.rm = FALSE) {
    return(summary.peRes(x, ...));
  }
)

#' Summarize the results of a Pathway-Express analysis
#' 
#' @param x Primary dis-regulation analysis result object obtained using \code{\link{pDis}}
#' @param ... see \code{\link{summary.pDisRes}}
#' @param na.rm ignored
#'
#' @aliases Summary,pDisRes-method
#'
#' @export
setMethod("Summary", c("x" = "pDisRes"),
  function(x, ..., na.rm = FALSE) {
    return(summary.pDisRes(x, ...));
  }
)

Try the ROntoTools package in your browser

Any scripts or data that you put into this service are public.

ROntoTools documentation built on Nov. 8, 2020, 7:41 p.m.