Changes between Version 33 and Version 34 of SOPs/rna-seq-diff-expressions
- Timestamp:
- 12/02/16 11:46:20 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/rna-seq-diff-expressions
v33 v34 162 162 {{{ 163 163 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 165 166 }}} 166 167