Anyone Know how to make a fake CEL file?
1
0
Entering edit mode
Park, Richard ▴ 220
@park-richard-227
Last seen 9.6 years ago
I am trying to make a couple of fake cel files to represent a time course treatment between three time points. I am trying to test the effects of normalization on various possible treatments. Is there a way to make a fake CEL file? and if there is, how do you know the corresponding x and y locations on the chip that correspond with the various affy ids? I know that this information is located in the various cdf files, but I am unaware of how to access that information. Thanks for any help, Richard Park Immunology - Computational Data Analyzer Joslin Diabetes Center Ph: 617-732-2482 Richard.Park@joslin.harvard.edu
Normalization cdf affy Normalization cdf affy • 882 views
ADD COMMENT
0
Entering edit mode
Laurent Gautier ★ 2.3k
@laurent-gautier-29
Last seen 9.6 years ago
On Tue, Oct 14, 2003 at 02:22:34PM -0400, Park, Richard wrote: > I am trying to make a couple of fake cel files to represent a time course treatment between three time points. > I am trying to test the effects of normalization on various possible treatments. > Is there a way to make a fake CEL file? write.celfile (although sketchy for the headers customization and without guaranty you can read it anywhere outside the package ;) ). > and if there is, how do you know the corresponding x and y locations on the chip that correspond with the various affy ids? I know that this information is located in the various cdf files, but I am unaware of how to access that information. > cdfenvs hold the key (doc scattered across different places, among which the code unfortunately) > Thanks for any help, > > > Richard Park > Immunology - Computational Data Analyzer > Joslin Diabetes Center > Ph: 617-732-2482 > Richard.Park@joslin.harvard.edu > > _______________________________________________ > Bioconductor mailing list > Bioconductor@stat.math.ethz.ch > https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor -- -------------------------------------------------------------- Laurent Gautier CBS, Building 208, DTU PhD. Student DK-2800 Lyngby,Denmark tel: +45 45 25 24 89 http://www.cbs.dtu.dk/laurent
ADD COMMENT
0
Entering edit mode
to avoid the creation of "Cel files" that arent really Cel files the function "write.celfile" will not be in affy 1.3. but i dont think you want to be making them anyways. i think what you want is to create fake instances of AffyBatches. As Laurent points out you want to leanr about cdfenvs. below is a quick example simulating probe level data for two arrays: library(affy) ## fake environment ##it the below change the environment def must change too NCOL <- 8 NROW <- 8 n <- NCOL*NROW tmp <- sample(1:50) dummy <- new.env(hash=T) index <- cbind(tmp[1:10], tmp[11:20]) assign("gene.a", index, envir=dummy) index <- cbind(tmp[21:30],tmp[31:40]) assign("gene.b", index, envir=dummy) cat("done.\n") samplenames <- c("sample1","sample2") signal <- exp(rexp(n,1)) e <- cbind(exp(rnorm(n,4,1))+signal,exp(rnorm(n,4,1))+signal) colnames(e) <- samplenames pd <- read.phenoData(sampleNames=samplenames) afbatch <- new("AffyBatch", exprs=e, phenoData=pd, cdfName="dummy", ncol=NCOL,nrow=NROW) cat("done.\n") On Tue, 14 Oct 2003, Laurent Gautier wrote: > On Tue, Oct 14, 2003 at 02:22:34PM -0400, Park, Richard wrote: > > I am trying to make a couple of fake cel files to represent a time course treatment between three time points. > > I am trying to test the effects of normalization on various possible treatments. > > Is there a way to make a fake CEL file? > > write.celfile > (although sketchy for the headers customization and without > guaranty you can read it anywhere outside the package ;) ). > > > and if there is, how do you know the corresponding x and y locations on the chip that correspond with the various affy ids? I know that this information is located in the various cdf files, but I am unaware of how to access that information. > > > > cdfenvs hold the key (doc scattered across different places, among which > the code unfortunately) > > > > Thanks for any help, > > > > > > Richard Park > > Immunology - Computational Data Analyzer > > Joslin Diabetes Center > > Ph: 617-732-2482 > > Richard.Park@joslin.harvard.edu > > > > _______________________________________________ > > Bioconductor mailing list > > Bioconductor@stat.math.ethz.ch > > https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor > > -- +--------------------------------------------------------------------- --+ | Rafael Irizarry phone: (410) 614-5157 | | Assistant Professor fax: (410) 955-0958 | | Department of Biostatistics office: E3035 | | Johns Hopkins University email: rafa@jhu.edu | +--------------------------------------------------------------------- --+
ADD REPLY

Login before adding your answer.

Traffic: 712 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6