Description Usage Arguments Details Value Note Author(s) References See Also Examples
This function allows the detection of breakpoints in genomic profiles obtained by array CGH technology and affects a status (gain, normal or lost) to each clone.
1 2 3 4 5 6 7 8 9 10 11 | ## S3 method for class 'profileCGH'
glad(profileCGH, mediancenter=FALSE,
smoothfunc="lawsglad", bandwidth=10, round=1.5,
model="Gaussian", lkern="Exponential", qlambda=0.999,
base=FALSE, sigma,
lambdabreak=8, lambdacluster=8, lambdaclusterGen=40,
type="tricubic", param=c(d=6),
alpha=0.001, msize=5,
method="centroid", nmax=8, assignGNLOut=TRUE,
breaksFdrQ = 0.0001, haarStartLevel = 1, haarEndLevel = 5,
verbose=FALSE, ...)
|
profileCGH |
Object of class |
mediancenter |
If |
smoothfunc |
Type of algorithm used to smooth |
bandwidth |
Set the maximal bandwidth |
round |
The smoothing results are rounded or not depending on
the |
model |
Determines the distribution type of the LogRatio. Keep
always the model as "Gaussian" (see |
lkern |
Determines the location kernel to be used (see |
qlambda |
Determines the scale parameter for the
stochastic penalty (see |
base |
If |
sigma |
Value to be passed to either argument |
lambdabreak |
Penalty term (λ') used during the Optimization of the number of breakpoints step. |
lambdacluster |
Penalty term (λ*) used during the MSHR clustering by chromosome step. |
lambdaclusterGen |
Penalty term (λ*) used during the HCSR clustering throughout the genome step. |
type |
Type of kernel function used in the penalty term during the Optimization of the number of breakpoints step, the MSHR clustering by chromosome step and the HCSR clustering throughout the genome step. |
param |
Parameter of kernel used in the penalty term. |
alpha |
Risk alpha used for the Outlier detection step. |
msize |
The outliers MAD are calculated on regions with a cardinality greater or equal to msize. |
method |
The agglomeration method to be used during the MSHR clustering by chromosome and the HCSR clustering throughout the genome clustering steps. |
nmax |
Maximum number of clusters (N*max) allowed during the the MSHR clustering by chromosome and the HCSR clustering throughout the genome clustering steps. |
assignGNLOut |
If |
breaksFdrQ |
breaksFdrQ for HaarSeg algorithm. |
haarStartLevel |
haarStartLevel for HaarSeg algorithm. |
haarEndLevel |
for HaarSeg algorithm. |
verbose |
If |
... |
... |
The function glad
implements the methodology which
is described in the article: Analysis of array CGH data: from signal
ratio to gain and loss of DNA regions (Hupé et al., Bioinformatics, 2004).
The principles of the GLAD algorithm: First, the detection of breakpoints is based on the estimation of a piecewise constant function with the Adaptive Weights Smoothing (AWS) procedure (Polzehl and Spokoiny, 2002). Alternatively, it is possible to use the HaarSeg algorithm (Ben-Yaacov and Eldar, Bioinformatics, 2008). Then, a procedure based on penalyzed maximum likelihood optimizes the number of breakpoints and removes the undesirable breakpoints. Finally, based on the regions previously identified, a two-step unsupervised classification (MSHR clustering by chromosome and the HCSR clustering throughout the genome) with model selection criteria allows a status to be assigned for each region (gain, loss or normal).
Main parameters to be tuned:
qlambda | if you want the smoothing to fit some very local effect, choose a smaller qlambda . |
bandwidth | choose a bandwidth not to small otherwise you will have a lot of little discontinuities. |
lambdabreak | The higher the parameter is, the higher the number of undesirable breakpoints is. |
lambdacluster | The higher the parameter is, the higher is the number of the regions within a chromosome which belong to the same cluster. |
lambdaclusterGen | More the parameter is high more the regions over the whole genome are supposed to belong to the same cluster. |
|
An object of class "profileCGH" with the following attributes: |
profileValues: |
a data.frame with the following added information:
|
BkpInfo: |
the data.frame attribute
|
SigmaC: |
the data.frame attribute
|
People interested in tools dealing with array CGH analysis can visit our web-page http://bioinfo.curie.fr.
Philippe Hupé, glad@curie.fr.
Hupé et al. (Bioinformatics, 2004) Analysis of array CGH data: from signal ratio to gain and loss of DNA regions.
Polzehl and Spokoiny (WIAS-Preprint 787, 2002)Local likelihood modelling by adaptive weights smoothing.
Ben-Yaacov and Eldar (Bioinformatics, 2008)A fast and flexible method for the segmentation of aCGH data.
profileCGH
, as.profileCGH
, plotProfile
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | data(snijders)
### Creation of "profileCGH" object
gm13330$Clone <- gm13330$BAC
profileCGH <- as.profileCGH(gm13330)
###########################################################
###
### glad function as described in Hupé et al. (2004)
###
###########################################################
res <- glad(profileCGH, mediancenter=FALSE,
smoothfunc="lawsglad", bandwidth=10, round=1.5,
model="Gaussian", lkern="Exponential", qlambda=0.999,
base=FALSE,
lambdabreak=8, lambdacluster=8, lambdaclusterGen=40,
type="tricubic", param=c(d=6),
alpha=0.001, msize=5,
method="centroid", nmax=8,
verbose=FALSE)
### cytoband data to plot chromosomes
data(cytoband)
### Genomic profile on the whole genome
plotProfile(res, unit=3, Bkp=TRUE, labels=FALSE, Smoothing="Smoothing",
main="Breakpoints detection: GLAD analysis", cytoband = cytoband)
###Genomic profile for chromosome 1
plotProfile(res, unit=3, Bkp=TRUE, labels=TRUE, Chromosome=1,
Smoothing="Smoothing", main="Chromosome 1: GLAD analysis", cytoband = cytoband)
### The standard-deviation of LogRatio are:
res$SigmaC
### The list of breakpoints is:
res$BkpInfo
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.