R/show-methods.R

# 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)
			
		})
gpovysil/cn.mops documentation built on Feb. 4, 2024, 10:18 a.m.