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
      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...
      Yesterday, 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, 04-11-2024, 12:08 PM
    0 responses
    58 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    54 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    46 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-04-2024, 09:00 AM
    0 responses
    55 views
    0 likes
    Last Post seqadmin  
    Working...
    X