Announcement

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

  • Copy number adjusted differential expression using edgeR and limma in a small region

    Hi all,

    I would like to find differentially expressed genes within a region spanning approx 1 megabase while adjusting for the copy number status in that region. I'm looking for a way to do this using both limma (for microarray) and edgeR (for rnaseq). Reading the manuals I've come up with the basics but I'm stuck at defining the contrasts.

    To start I've defined the following variables:
    cases is a factor of length 50 with the different cases, all variables are of this length and in this order
    genes is a list of genes in the 1 mb region
    groups is a factor splitting cases in "Disease" (1) and "Normal" (0)
    groups_cn is a factor of copy number states: "Normal" (0), "Amplified" (1) and "Deleted" (-1)

    Limma
    Code:
    af_chr = af[rownames(af) %in% genes, , drop=F]
    af_design = model.matrix(~ 0 + cn_groups + groups)
    de_af = lmFit(af_chr, design=af_design)
    fit = eBayes(de_af)
    ans_af=topTable(fit, adjust="fdr", number=length(fit$coefficients), coef='groupsDisease')
    When looking at ans_af, am I seeing the differentially expressed genes after adjusting for copy number? Or, am I seeing genes differentially expressed between disease and normal disregarding copy number?

    edgeR
    Code:
    ge_chr = ge[rownames(ge) %in% genes, , drop=F]
    ge_design = model.matrix(~ 0 + cn_groups + groups)
    de_ge = DGEList(ge_chr, group = groups)
    de_ge = estimateGLMCommonDisp(de_ge, design = ge_design)
    de_ge = estimateGLMTagwiseDisp(de_ge, design = ge_design)
    fit = glmFit(de_ge, design = ge_design) 
    test = glmLRT(fit, coef = 'groupsDisease')
    ans_ge = topTags(test)
    Here the same question, when looking at ans_ge, am I seeing the differentially expressed genes after adjustment for copy number, or just the ones different between Disease and Normal?

    Thanks

  • #2
    It depends what you mean by "adjusting for copy number". Your analysis is adjusting for baseline differences between the copy number groups, but it is also assuming that the logFC between Disease and Normal is the same for all the copy number groups. Is that a reasonable assumption?

    If you want to do the DE analysis between Disease and Normal separately for each copy number group, then that can be achieved by:

    design <- model.matrix(~cn_groups + cn_groups:groups)

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Advanced Methods for the Detection of Infectious Disease
      by seqadmin




      The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
      ...
      11-27-2023, 01:15 PM
    • seqadmin
      Strategies for Investigating the Microbiome
      by seqadmin




      Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
      11-09-2023, 07:02 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Yesterday, 08:26 AM
    0 responses
    11 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 08:12 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 11-27-2023, 08:12 AM
    0 responses
    19 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 11-22-2023, 09:29 AM
    1 response
    60 views
    0 likes
    Last Post VilliamPast  
    Working...
    X