tillingSet: This object contains an ExpressionSet

Description Details Author(s) References See Also Examples

Description

This object contains an ExpressionSet and has the following additional slots: genomeName, featureSequence, featurePosition, featureChromosome, featureCopyNumber

Details

Tiling set objects can also be combined using the rbind methods. This is particularly useful when several arrays span a genome/chromosome.

Author(s)

Charles Cheung, cykc@interchange.ubc.ca and Raphael Gottardo, rgottard@fhcrc.org Arnaud Droit, arnaud.droit@crchuq.ulaval.ca

References

W. E. Johnson, Li, W., Meyer, C. A., Gottardo, R., Carroll, J. S., Brown, M., and Liu, X. S. (2006). Model-based analysis of tiling-arrays for ChIP-chip. PNAS 103:12457-12462.

See Also

BPMAPCelParser, NormalizeProbes

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
featureChromosome=factor(c("chr1","chr1","chr1","chr1"))
featurePosition=c(as.integer(47193),as.integer(47197),as.integer(47201),
    as.integer(47205))
featureCopyNumber=c(as.integer(1),as.integer(1),as.integer(1),as.integer(1))
a=5.379897
exprs=matrix(a,nrow=4)
genomeName="Sc03b_MR_v04_10000"
featureSequence=c("TCATCAAGGGAAGAGAGTCTCTCAG","TGATCATCACGGGACTTCTGGTTTA","CGGGACTTCTGGTTTATGGAACTAT","ACTTCTGGTTTATGGAACTATAAGG")

newSet <- new('tilingSet', featureChromosome=featureChromosome,
    featurePosition=featurePosition,featureCopyNumber=featureCopyNumber,
    exprs=exprs, genomeName=genomeName, featureSequence=featureSequence)

rMAT documentation built on May 6, 2019, 2:10 a.m.