Seqanswers Leaderboard Ad

Collapse

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
      Recent Advances in Sequencing Analysis Tools
      by seqadmin


      The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
      Yesterday, 07:48 AM
    • 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

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Today, 06:57 AM
    0 responses
    7 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 07:17 AM
    0 responses
    13 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-02-2024, 08:06 AM
    0 responses
    19 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-30-2024, 12:17 PM
    0 responses
    21 views
    0 likes
    Last Post seqadmin  
    Working...
    X