Description Objects from the Class Slots Extends Methods Author(s) See Also Examples
This class inherits from eSet
from the Biobase package and
is used as a base class for the other two methylumi classes,
MethyLumiSet
and MethyLumiQC
.
The MethyLumi
class is a virtual class and is not meant to be instantiated. Instead, one should instantiate a MethyLumiSet
or a MethyLumiQC
object.
assayData
:Object of class "AssayData"
phenoData
:Object of class "AnnotatedDataFrame"
featureData
:Object of class
"AnnotatedDataFrame"
that will hold the annotation columns
from the Beadstudio output, if they are available.
experimentData
:Object of class "MIAME"
annotation
:Object of class "character"
; note
that this slot is not currently used, but may be used in the
future to store the character name of the annotation package, if available.
.__classVersion__
:Object of class "Versions"
Class "eSet"
, directly.
Class "VersionedBiobase"
, by class "eSet", distance 2.
Class "Versioned"
, by class "eSet", distance 3.
signature(object = "MethyLumi", value = "matrix")
: Set the assayData slot of the same name and stores the P-values from BeadStudio
signature(object = "MethyLumi")
: Get the assayData slot of the same name
signature(object = "MethyLumi", value = "matrix")
: Set the assayData slot of the same name and represents the methylation values for the samples, analogous to exprs() in gene expression data.
signature(object = "MethyLumi")
: Get the assayData slot of the same name
signature(object = "MethyLumi", value = "matrix")
: Set the assayData slot that represents the Methylated single-channel signal
signature(object = "MethyLumi")
: Get the assayData slot that represents the Methylated single-channel signal
signature(object = "MethyLumi", value = "matrix")
: Set the assayData slot that represents the Unmethylated single-channel signal
signature(object = "MethyLumi")
: Get the assayData slot that represents the Unmethylated single-channel signal
signature(object = "MethyLumi"
: Find the unique control type beeds in the QCdata slot.
signature(object = "MethyLumi",what,...)
: Plot of QC data. This plot can be useful for diagnosing the problems associated with specific samples or arrays. The value for "what" is one of the control types (which can be found by using controlTypes()
on the object.
signature(object = "MethyLumi",...)
: summary method for MethyLumi objects.
Sean Davis <sdavis2@mail.nih.gov>
methylumiR
,
MethyLumiSet
, MethyLumiQC
,
eSet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## The class structure
showClass("MethyLumi")
## read in some data
## Read in sample information
samps <- read.table(system.file("extdata/samples.txt",
package = "methylumi"),sep="\t",header=TRUE)
## Perform the actual data reading
## This is an example of reading data from a
## Sentrix Array format file (actually two files,
## one for data and one for QC probes)
mldat <- methylumiR(system.file('extdata/exampledata.samples.txt',
package='methylumi'),
qcfile=system.file('extdata/exampledata.controls.txt',
package="methylumi"),
sampleDescriptions=samps)
mldat
## Get history information
getHistory(mldat)
## Get QC data, which is another eSet-derived object
QCdata(mldat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.