Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • DESeq: GLMs for RNA-Seq with interaction terms

    I have a reasonably large RNA-Seq dataset for a non-model plant, and want to fit a GLM with interaction terms:
    expression ~ treatment + time + treatment:time

    In theory, I should be able to test the significance of each term by comparing a reduced model (dropping that term) with the full model above.

    It seems DESeq can handle this for main effect terms: it produces a vector of p-values with a reasonable distribution. See this example, using data from the pasilla package:
    data(pasillaGenes)
    design <- pData(pasillaGenes)[, c("condition", "type")]
    fullCountsTable <- counts(pasillaGenes)
    cdsFull <- newCountDataSet(fullCountsTable[1:1000,], design)
    cdsFull <- estimateSizeFactors(cdsFull)
    cdsFull <- estimateDispersions(cdsFull, method="pooled")
    fit1 <- fitNbinomGLMs(cdsFull, count ~ type + condition)
    fit0 <- fitNbinomGLMs(cdsFull, count ~ type)
    pvalsGLM <- nbinomGLMTest(fit1, fit0)


    However, when I try this with an interaction term included it gives clearly wrong results: every p value is either 0 or 1.
    fit1 <- fitNbinomGLMs(cdsFull, count ~ type + condition + type:condition)
    fit0 <- fitNbinomGLMs(cdsFull, count ~ type + type:condition)
    pvalsGLM <- nbinomGLMTest(fit1, fit0)

    So my questions:
    (a) Is this even possible in DESeq?
    (b) If so, can anyone spot the error in how I coded this?

    Thanks for any advice!

  • #2
    Hi

    you test for a rather odd contrast:
    Code:
    fit1 <- fitNbinomGLMs(cdsFull, count ~ type + condition + type:condition)
    fit0 <- fitNbinomGLMs(cdsFull, count ~ type + type:condition)
    The standard ANOVA or ANODEV approach is to test first for main effects without any interaction terms present in the fit, and then for the interaction, with all main effect present in both fits, i.e.,

    Code:
    fit1 <- fitNbinomGLMs(cdsFull, count ~ type + condition + type:condition)
    fit0 <- fitNbinomGLMs(cdsFull, count ~ type + condition)
    For the pasilla data, this shouldn't give many hits, though. (If there were interactions, this would be rather worrying.)

    Comment


    • #3
      Hi Simon !
      Usually each coeficient in a GLM is associated with a p value, do you know how to get these p value from the GLM of DEseq ?

      Comment

      Latest Articles

      Collapse

      • 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
      • seqadmin
        Strategies for Sequencing Challenging Samples
        by seqadmin


        Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
        03-22-2024, 06:39 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      22 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      24 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      19 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      50 views
      0 likes
      Last Post seqadmin  
      Working...
      X