# Copyright (C) 2011 Klambauer Guenter
# <klambauer@bioinf.jku.at>
#' @title Display CNVs and CNV regions of a CNV detection result.
#'
#' @description Displays the result object of a copy number detection method.
#'
#' @param object An instance of a "CNVDetectionResult".
#' @examples
#' data(cn.mops)
#' r <- cn.mops(XRanges[1:200])
#' show(r)
#' @return Displays the result object of a CNV detection method.
#' @author Guenter Klambauer \email{klambauer@@bioinf.jku.at}
#' @export
#' @noRd
#' @importFrom methods show
setMethod("show", "CNVDetectionResult",function(object){
cat("\nCNV regions: \n")
show(object@cnvr)
cat("\nIndividual CNVs: \n")
show(object@cnvs)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.