Methods to combine U133A and B?
1
0
Entering edit mode
Simon Lin ▴ 210
@simon-lin-461
Last seen 9.7 years ago
Greetings, I have some samples measured by both U133A and U133B. Is there a way to combine results from these chips together into one result file? (i.e., take care of the replicated probe sets on both chips?) I took a look at the matchprobe package, but I think that is not exactly what I need. Thanks! Simon
probe probe • 1.3k views
ADD COMMENT
0
Entering edit mode
@adaikalavan-ramasamy-675
Last seen 9.7 years ago
The easiest way is to prefix each probeset ID with A or B indicating U133A and U133B. Suppose dataA and dataB represents your expression values from U133A and U133B respectively, then rownames(dataA) <- paste("A.", rownames(dataA), sep="") rownames(dataB) <- paste("B.", rownames(dataB), sep="") stopifnot( identical( colnames(dataA), colnames(dataB) ) ) newdata <- rbind( dataA, dataB ) write.table(newdata, file="output.txt", sep="\t", quote=FALSE) If you are thinking about calibrating U133A results to U133B, then the problem becomes more difficult. I asked a related question to this and you can search for the mailing list archives for the keywords "combining HGU133 chips". Regards, Adai. On Thu, 2004-07-15 at 17:41, Simon Lin wrote: > Greetings, > > I have some samples measured by both U133A and U133B. Is there a way to > combine results from these chips together into one result file? (i.e., take > care of the replicated probe sets on both chips?) > > I took a look at the matchprobe package, but I think that is not exactly > what I need. > > Thanks! > > Simon > > _______________________________________________ > Bioconductor mailing list > Bioconductor@stat.math.ethz.ch > https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor >
ADD COMMENT

Login before adding your answer.

Traffic: 566 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