Description Details Author(s) References See Also Examples
This object contains an ExpressionSet and has the following additional slots: genomeName, featureSequence, featurePosition, featureChromosome, featureCopyNumber
Tiling set objects can also be combined using the rbind
methods. This is particularly useful when several arrays span a genome/chromosome.
Charles Cheung, cykc@interchange.ubc.ca and Raphael Gottardo, rgottard@fhcrc.org Arnaud Droit, arnaud.droit@crchuq.ulaval.ca
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.
BPMAPCelParser
, NormalizeProbes
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.