Nothing
doCBS <- structure(function(#Run CBS segmentation
### This function is a wrapper for convenient use of the \code{CBS}
### segmentation method by \code{\link{PSSeg}}. It applies the
### \code{\link[DNAcopy]{segment}} function and reshapes the results
y,
### A numeric vector, the signal to be segmented
...,
### Arguments to be passed to \code{\link[DNAcopy]{segment}}
verbose=FALSE
### A \code{logical} value: should extra information be output ?
### Defaults to \code{FALSE}.
) {
##seealso<<\code{\link[DNAcopy]{segment}}
if(!is.null(dim(y))){
if (ncol(y)==1 && mode(y)!="numeric"){
y <- y[[1]]
if (verbose) {
print("Coercing 'y' to a vector")
}
}else{
stop("Argument 'y' should be a numeric vector or a one column matrix/data frame")
}
}
n <- length(y)
chrom <- rep(1, n)
maploc <- 1:n
genomdat <- y
cna <- CNA(genomdat, chrom, maploc)
res <- segment(cna)
bkp <- res$output$loc.end[-length(res$output$loc.end)]
##value<< A list with element:
list(bkp=bkp) ##<<breakpoint positions
}, ex=function(){
## load known real copy number regions
affyDat <- loadCnRegionData(dataSet="GSE29172", tumorFraction=1)
## generate a synthetic CN profile
K <- 10
len <- 1e4
sim <- getCopyNumberDataByResampling(len, K, minLength=100, regData=affyDat)
datS <- sim$profile
## run CBS segmentation
res <- doCBS(datS[["c"]])
getTpFp(res$bkp, sim$bkp, tol=5, relax = -1) ## true and false positives
plotSeg(datS, breakpoints=list(sim$bkp, res$bkp))
})
############################################################################
## HISTORY:
## 2013-12-09
## o Renamed to 'doCBS'.
## 2013-05-16
## o Example code now embedded in a 'require()' statement to avoid
## problems in the R CMD check mechanism of R-forge.
## 2013-01-09
## o Replaced 'jump' by 'bkp'.
## 2013-01-04
## o Created from 'segmentByCghseg'.
############################################################################
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.