Seqanswers Leaderboard Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • yve
    Junior Member
    • Mar 2012
    • 1

    DESeq newCountDataSet with seven groups

    Hello,

    I have a question regarding the differential analysis of miRNAs with DESeq. I have seven different groups (all with replicates), one control group and six groups corresponding to different cells.
    I want to do pairwise comparisons between the control group and each of the other groups. Therefore I did the following:

    countData <- newCountDataSet(countTable, groups)
    countData <- estimateSizeFactors(countData)
    countData <- estimateDispersions(countData, method="pooled")

    Next I did the following (group 1 being the control group):

    res <- nbinomTest( countData, group1, group2 )
    res <- nbinomTest( countData, group1, group3 )
    res <- nbinomTest( countData, group1, group4 ) ...

    Now my question is, if this is the right way to do this analysis or if I should estimate the size factors and dispersion using only the "needed data" for the specific analysis:

    countData <- newCountDataSet(countTable[,c(group1, group2)], groups)
    countData <- estimateSizeFactors(countData)
    countData <- estimateDispersions(countData, method="pooled)

    res <- nbinomTest( countData, group1, group2 )

    Thanks in advance!

    Yvonne
  • Simon Anders
    Senior Member
    • Feb 2010
    • 995

    #2
    There are arguments in favour of either way. Estimating the dispersion from all samples has more degrees of freedom and hence yields more precise estimates, which (due to DESeq's "maximum rule") translates into better power.

    On the other hand, if replicates agree badly in one group, this will drive up the dispersion estimates for the full data and hence costs power for all comparisons, unless you do everything separately.

    I would use the full data, but first check (with a sample clustering after a variance-stabilizing transformation) that there are no bad samples.

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Pathogen Surveillance with Advanced Genomic Tools
      by seqadmin




      The COVID-19 pandemic highlighted the need for proactive pathogen surveillance systems. As ongoing threats like avian influenza and newly emerging infections continue to pose risks, researchers are working to improve how quickly and accurately pathogens can be identified and tracked. In a recent SEQanswers webinar, two experts discussed how next-generation sequencing (NGS) and machine learning are shaping efforts to monitor viral variation and trace the origins of infectious...
      03-24-2025, 11:48 AM
    • seqadmin
      New Genomics Tools and Methods Shared at AGBT 2025
      by seqadmin


      This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.

      The Headliner
      The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...
      03-03-2025, 01:39 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 03-20-2025, 05:03 AM
    0 responses
    49 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-19-2025, 07:27 AM
    0 responses
    57 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-18-2025, 12:50 PM
    0 responses
    50 views
    0 reactions
    Last Post seqadmin  
    Started by seqadmin, 03-03-2025, 01:15 PM
    0 responses
    201 views
    0 reactions
    Last Post seqadmin  
    Working...