Changes between Version 2 and Version 3 of SOPs/normalize_ma


Ignore:
Timestamp:
02/21/13 14:43:14 (12 years ago)
Author:
thiruvil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/normalize_ma

    v2 v3  
    133133  * 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.
    134134
    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)
    138138    library(hgu133plus2hsentrezgcdf)
    139139    # Read all CEL files
     
    141141    # Normalize with RMA or use justRMA for large data set
    142142    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")
    143152    # Get the expression values alone (as a matrix)
    144153    eset.rma.expr = exprs(eset)