Changes between Version 2 and Version 3 of SOPs/normalize_ma
- Timestamp:
- 02/21/13 14:43:14 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/normalize_ma
v2 v3 133 133 * Some custom CDF files are designed to define each gene by just one probeset, eliminating the issue of summarizing a gene represented by multiple probesets. 134 134 135 Sample code for processing Affymetrix arrays using custom probeset definitions (CDF) :136 137 {{{ 135 Sample code for processing Affymetrix arrays using custom probeset definitions (CDF) and RMA: 136 {{{ 137 library(affy) 138 138 library(hgu133plus2hsentrezgcdf) 139 139 # Read all CEL files … … 141 141 # Normalize with RMA or use justRMA for large data set 142 142 eset = rma(CELs) 143 # Get the expression values alone (as a matrix) 144 eset.rma.expr = exprs(eset) 145 }}} 146 147 Sample code for processing Affymetrix arrays using custom probeset definitions (CDF) and GCRMA: 148 {{{ 149 library(gcrma) 150 # Normalize with GCRMA where CEL files are in the directory CEL_Files 151 eset = justGCRMA(celfile.path = "CEL_Files", verbose=T, cdfname="mouse4302mmentrez") 143 152 # Get the expression values alone (as a matrix) 144 153 eset.rma.expr = exprs(eset)