cnv creates a 'cnv' object
is returns TRUE if x is of class 'cnv'
print gives a summary for an object of class 'cnv' including ...
plot plots an object of class 'cnv' ...cnv(x, batches, ...)
cnvDefault(x, num.copies, num.class, cnv.tol = 0.001, mix.method = "mixdist", check.probs = TRUE, threshold.0, threshold.k, mu.ini, sigma.ini, pi.ini, cutoffs = NULL, check.alpha = 0.05, check.cnv = TRUE, var.equal)
cnvBatches(intensities, batches, threshold.0, threshold.k, common.pi = TRUE, ...)
is.cnv(obj)
## S3 method for class 'cnv':
plot(x, ...)
## S3 method for class 'cnv':
print(x, digits = 4, ...)mix from the package mixdist, "mclust" that uses de function Mclust from thecnv.tol when x is a probability matrixcnv objectcnvDefault, print.default or plot.cnv. The arguments passed to plot.cnvare the same as the ones for the plotSignal functioncnv return an object of class 'cnv' with generic function such as print or plot implemented for this kind of objects.
is.cnv is a function that returns TRUE of FALSE weather obj is of class 'cnv' or not.plot function applied on a 'cnv' class object performs two types of plots whether 'cnv' class object has been created from univariate CNV intensity signal data or whether it has been created directly from a probability matrix provided by any CNV calling algorithm. The first type is a plot similar to the one created by plotSignal function, and the second type is a barplot.CNVassoc, plotSignaldata(dataMLPA)
CNV <- cnv(x = dataMLPA$Gene2, threshold.0 = 0.01, mix.method = "mixdist")
CNV
plot(CNV)Run the code above in your browser using DataLab