R/AllClasses.R

# Copyright (C) 2011 Klambauer Guenter 
# <klambauer@bioinf.jku.at>

# S4 class definition for the result object of a CNV detection method

#' @export

setClass("CNVDetectionResult",
		representation = representation
				(
				gr					= "GRanges",
				normalizedData     	= "matrix",
				localAssessments    = "matrix",
				individualCall      = "matrix",
				iniCall        		= "numeric",
				posteriorProbs		= "array",
				cnvs				= "GRanges",
				cnvr				= "GRanges",
				segmentation		= "GRanges",
				integerCopyNumber	= "matrix",
				params				= "list",
				sampleNames			= "character"
		),
		prototype = prototype
				(
				gr					= GRanges(),
				normalizedData     	= matrix(),
				localAssessments    = matrix(),
				individualCall      = matrix(),
				iniCall        		= vector("numeric",1),
				posteriorProbs		= array(NA,dim=c(1,1,1)),
				cnvs				= GRanges(),
				cnvr				= GRanges(),
				segmentation		= GRanges(),
				integerCopyNumber	= matrix(),
				params				= list(),
				sampleNames			= vector("character",1)
				)
)

Try the cn.mops package in your browser

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

cn.mops documentation built on Nov. 8, 2020, 5:59 p.m.