Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • DESeq and edgeR

    Hi,
    i am using both programs to analyse differential expression.
    i used this manual http://manuals.bioinformatics.ucr.edu/home/ht-seq
    so may script is that:

    library("DESeq");
    conditions <- c("1","2")
    cds <- newCountDataSet(x,conditions)
    cds <- estimateSizeFactors(cds)
    cds <- estimateDispersions(cds,method="blind",sharingMode="maximum",fitType="local")
    res <- nbinomTest(cds,condA="1",condB="2")
    res[order(res$padj), ][1:4,]

    sigDESeq <- res[res$padj <= 0.05, ]
    sigDESeq <- na.omit(sigDESeq)
    sigDESeq <- as.character(sigDESeq[,1])

    library("edgeR");
    group <- factor(c(1,2))
    cdsR <- DGEList(counts=x, group=group)
    cdsR <- estimateCommonDisp(cdsR)
    cdsR <- estimateTagwiseDisp(cdsR)
    et <- exactTest(cdsR, pair=c("1", "2"))

    all <- as.data.frame(topTags(et, n=100000))
    sigedgeR <- all[all$adj.P.Val <= 0.05, ]
    sigedgeR <- na.omit(sigedgeR)
    sigedgeR <- row.names(sigedgeR)

    source("http://faculty.ucr.edu/~tgirke/Documents/R_BioCond/My_R_Scripts/overLapper.R")
    OLlist <- overLapper(setlist=list(DESeq=sigDESeq, edgeR=sigedgeR), sep="_", type="vennsets")
    counts <- sapply(OLlist$Venn_List, length)
    vennPlot(counts=counts)
    counts

    oveLapp <- OLlist$Venn_List

    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

    i want to check Differential expression between biological replicates.(here: i have only 2)
    1 & 2 are biological replicates.

    the problem is:
    in edgeR i get 377 significant genes where in DESeq i got 0 (ZERO)

    it looks weird to me, but i do'nt know what i did wrong..

    Any advice!?!?

    Thanks,
    Pap

  • #2
    For the record, Pap cross-posted this question also to another list, where it has been addressed in the thread starting at https://stat.ethz.ch/pipermail/bioco...ch/044178.html
    Wolfgang Huber
    EMBL

    Comment


    • #3
      Hi Wolfgang Huber,
      Thank you!
      i didn't see that someone answer me there

      Comment


      • #4
        I had the similar issue. I used the sharingMode="fit-only", but still Deseq gave me 0 differential genes, whereas edgeR gave over 1000

        I couldn't post to BioC mailist since it was in archive and I just subscribed. So I posted here.

        Comment

        Latest Articles

        Collapse

        • 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
        • seqadmin
          Techniques and Challenges in Conservation Genomics
          by seqadmin



          The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

          Avian Conservation
          Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
          03-08-2024, 10:41 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Yesterday, 06:37 PM
        0 responses
        12 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, Yesterday, 06:07 PM
        0 responses
        10 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 03-22-2024, 10:03 AM
        0 responses
        52 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 03-21-2024, 07:32 AM
        0 responses
        68 views
        0 likes
        Last Post seqadmin  
        Working...
        X