Changes between Version 33 and Version 34 of SOPs/rna-seq-diff-expressions


Ignore:
Timestamp:
12/02/16 11:46:20 (8 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/rna-seq-diff-expressions

    v33 v34  
    162162    {{{
    163163    cpm.out=cpm(my.DGEList)
    164     logCPM <- removeBatchEffect(cpm.out, batch=batch)  #where batch is based on your design
     164    # Input needs to be log-transformed values
     165    logCPM <- removeBatchEffect(log2(cpm.out), batch=batch)  #where batch is based on your design
    165166    }}}
    166167