Changes

Jump to: navigation, search

Using Bioconductor To Analyse Microarray Data

252 bytes added, 00:55, 27 July 2009
m
Microarray Analysis
==Microarray Analysis==
*set up design matrix. Use a different integer for each treatment group. The following example is for a contrast between the first four groups and the last four groups. For details on other design matrices see chapter 8 of [[http://www.bioconductor.org/packages/2.3/bioc/vignettes/limma/inst/doc/usersguide.pdf limma User Guide]]
<pre>
pData(eset) #to see phenotype annotation data
design <- model.matrix(~0+factor(c(10,0,0,0,1,1,1,2,2,2,21)),eset) #for four replicates of each treatment group,
colnames(design) <- c("resistant","sensitive") # give names to the treatment groups
design #check the design matrix
</pre>

Navigation menu