Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Limma removeBatchEffect question

    I'm using limma_3.14.1

    Suppose I set up:

    data<-c(2,2,3,3,5,6,7,8)
    data<-rbind(data,data) # Two row matrix


    batch<-factor(c("b1","b1","b2","b2","b1","b1","b2","b2"))
    treat<-factor(c("a","a","a","a","control","control","b","b"))
    treat<-relevel(treat,ref="control")


    We can see from the first 4 data points with identical treatment that the bach effct of b2 vs b1 is +1.


    removeBatchEffect(data,batch=batch,design=model.matrix(~treat))

    This results in

    [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8]
    data 2.5 2.5 2.5 2.5 5 6 7 8
    data 2.5 2.5 2.5 2.5 5 6 7 8


    i.e. The batch effect has been corrected for in the first 4 columns.
    However the last four columns which also belong to batch b1 or b2 are not adjusted.

    Whereas, if I run limma with the batch factor included in the design matrix to estimate the fold change between treatment "b" and the control (i.e. the data in the last four columns)

    fit <- lmFit(data,design=model.matrix(~batch+treat))
    fit <- eBayes(fit)
    topTable(fit,coef="treatb")


    I get:


    row ID logFC AveExpr t P.Value adj.P.Val B
    1 data 1 4.5 1.235397 0.2517299 0.2517299 -4.591222
    2 data 1 4.5 1.235397 0.2517299 0.2517299 -4.591222


    Here we see that limma has effectively reduced the log2(FC) of treatment b vs control from 2 to 1 because of the batch factor.

    So my question is, why does removeBatcheffects not act similarly and return rows reading 2.5,2.5,2.5,2.5,5.5,6.5,6.5,7.5? Have I made an error, or does removeBatchEffect work in a subtly different way?
    Last edited by Justin AC Powell; 02-17-2014, 07:26 AM.

Latest Articles

Collapse

  • seqadmin
    Essential Discoveries and Tools in Epitranscriptomics
    by seqadmin




    The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
    04-22-2024, 07:01 AM
  • seqadmin
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 11:49 AM
0 responses
15 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-24-2024, 08:47 AM
0 responses
16 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
61 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
60 views
0 likes
Last Post seqadmin  
Working...
X