Learn R Programming

seqCNA (version 1.18.0)

runGLAD: Wrapper function that runs the GLAD segmentation algorithm on a SeqCNAInfo-class object.

Description

The function calls the corresponding function in the GLAD library with appropriate parameters.

Usage

runGLAD(rco, lambdabreak=8, nproc=2)

Arguments

rco
A SeqCNAInfo-class object, with read count (RC) and genomic information, normally the output of the runSeqnorm function.
lambdabreak
Penalty term used in GLAD during the optimization of the number of breakpoints step. Higher values result in lower amount of segments.
nproc
A value indicating how many processing cores to use in the segmentation. Greater values speed up segmentation using more CPU cores and RAM memory, but you should not use values greater than the number of cores in your machine. If unsure, the safest value is 1, but most computers nowadays are multi-core, so you could probably go up to 2, 4 or 8.

Value

A SeqCNAInfo-class object, with additional information on the segmented (i.e. smoothed) profile.

References

Analysis of array CGH data: from signal ratio to gain and loss of DNA regions. Hupe P, Stransky N, Thiery JP, Radvanyi F, Barillot E. Bioinformatics. 2004 Dec 12; 20(18):3413-22.

Examples

Run this code
data(seqsumm_HCC1143)
rco = readSeqsumm(tumour.data=seqsumm_HCC1143)
rco = applyFilters(rco, 0, 1, 0, 2, FALSE, plots=FALSE)
rco = runSeqnorm(rco, rco@win, "quadratic", nproc=2, plots=FALSE)

### SEGMENTATION ###

rco = runGLAD(rco)

Run the code above in your browser using DataLab