Description Arguments Details Note Author(s) See Also Examples
Creates a boxplot of probe intensities stratified by GC content.
Usage
intensity2GCplot(x,
treename,
which = "",
transfo = log2,
range = 0,
col = c("lightblue", "darkblue"),
...)
x |
object of class |
treename |
|
which |
type of probes to be used, for details see |
transfo |
a valid function to transform the data, usually “log2”, or “0”. |
range |
determines how far the plot whiskers extend out from the box. |
col |
color pair to be used by function colorRampPalette. |
... |
optional arguments to be passed to |
Creates a boxplot of probe intensities for treename
stratified by GC content for an object
of class DataTreeSet
.
G/C content must first be attached to class DataTreeSet
using method
attachProbeContentGC
. It is also recommended to attach the probe mask using
method attachMask
.
Christian Stratowa
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## load existing ROOT scheme file and ROOT data file
scheme.test3 <- root.scheme(paste(path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
data.test3 <- root.data(scheme.test3, paste(path.package("xps"),"rootdata/DataTest3_cel.root",sep="/"))
## need to attach probe G/C content and optionally mask
data.test3 <- attachProbeContentGC(data.test3)
data.test3 <- attachMask(data.test3)
if (interactive()) {
intensity2GCplot(data.test3, treename = "TestA1.cel", which="mm")
}
## optionally remove probe G/C content and mask to free memory
data.test3 <- removeMask(data.test3)
data.test3 <- removeProbeContentGC(data.test3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.