Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • DESeq2 fold change does not match normalized counts data

    I am trying to understand how DESeq2 calculates Log2foldchange, because it does not match my calculations of fold change from my normalized counts.

    My script:
    CountTable_POS = read.table("DIF_pos_counts", header=TRUE, sep="")
    Design = data.frame( row.names = colnames( CountTable_POS ),
    condition = c( "untreated", "untreated", "untreated",
    "treated", "treated", "treated" ),
    type = c( "single-end", "single-end", "single-end",
    "single-end", "single-end","single-end" ) )
    dds_pos<-DESeqDataSetFromMatrix(countData = CountTable_POS,
    colData = Design,
    design = ~ condition)
    dds_pos<-DESeq(dds_pos, fitType="local")
    norm<-counts(dds_pos, normalized=T)
    write.csv(as.data.frame(norm), file="norm_counts.csv")
    res_pos<-results(dds_pos, contrast=c("condition", "treated", "untreated"))
    write.csv(as.data.frame(res_pos), file="DESeq2_out.csv")

    RESULTS
    from norm_counts.csv:
    Locus Control1 Control2 Control3 Treated1 Treated2 Treated3 Mean_Control Mean_Treated Basemean Fold change
    2R_188654 3.8127 5.7220 5.7191 1.9351 4.9898 2.9518 5.0846 3.2922 4.1884 0.6475
    2R_188736 3.8127 3.8147 6.6723 1.9351 4.9898 5.9036 4.7666 4.2762 4.5214 0.8971

    From DESeq2_out:
    Locus Basemean Log2foldchange P value Fold change
    2R_188654 4.1884 -0.3108 0.4093 0.8062
    2R_188736 4.5214 -0.0819 0.8279 0.9448

    As you can see, the basemeans (mean of control and treated counts) match- which tells me there is no internal error- but the fold changes do not. Why is this???

  • #2
    Fold-changes are shrunken, so they won't match what you calculate by hand (the shrinkage produces more reliable results). If you want the number that will more or less match what you're calculating them have it output the MLE results (use "addMLE=T" in results()).

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Latest Developments in Precision Medicine
      by seqadmin



      Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

      Somatic Genomics
      “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
      05-24-2024, 01:16 PM
    • 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...
      05-06-2024, 07:48 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 06-03-2024, 06:55 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-30-2024, 03:16 PM
    0 responses
    24 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-29-2024, 01:32 PM
    0 responses
    29 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-24-2024, 07:15 AM
    0 responses
    215 views
    0 likes
    Last Post seqadmin  
    Working...
    X