Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Question related to analysis using DESeq2

    Hi All,

    I have expression data for a mutant where a drug is injected over time with increasing dosage (no replicates and no drug was injected at time 0). I would like to identify genes that change in expression significantly over time. I used the following design in DEseq2 where time is assumed to be a continuous variable.

    ddsp <- DESeqDataSet(dds, ~ time)
    ddsp <- DESeq(ddsp, test="LRT", reduced = ~ 1)
    resp <- results(ddsp)

    is this the correct design? since I have only one mutant, are there other possible ways to answer the same question?

  • #2
    If time is a numeric vector:

    class(dds$time)

    then this will find genes which have linear relationship between log counts and time.

    (note to other people reading the thread: if you have replicates, it's preferable to include time as a factor, such that each time point gets its own parameter in the model)

    If you have more than 3 time points, you can include a quadratic term, which will also find genes which have up-down or down-up patterns in addition to linear relationships. That would look like a design of ~ time + I(time^2) and reduced design ~ 1.

    Comment


    • #3
      Thanks Michael ,

      To follow up on my original post, I am trying to compare the results between DESeq and DESeq 2 and found the output was very different (correlation=0.59), is that expected? I have read other posts and learned that we expect more genes to be differentially expressed using DESeq2 compared to DESeq which is what I got. The code for DESeq follows


      ### using DESeq ##############
      cds = newCountDataSet(data, expdesign)
      cds <- estimateSizeFactors( cds )
      sizeFactors( cds )
      cds = estimateDispersions( cds, method="blind", sharingMode="fit-only" )
      fit1 <- fitNbinomGLMs( cds, count ~ time )
      fit0 <- fitNbinomGLMs( cds, count ~ 1 )
      res<-nbinomGLMTest( fit1, fit0 )

      Comment


      • #4
        question related to analysis using DESeq2

        Hi,

        when using the following design to test for differentila expression

        ddsTC <- DESeqDataSet(dds, ~ time)
        ddsTC <- DESeq(ddsTC, test="LRT", reduced = ~ 1)
        resTC <- results(ddsTC)

        How to interprest the log2foldchange in the results file?
        I find most of the genes with significant pvalues have a very low log2fold change.

        thanks


        Originally posted by Michael Love View Post
        If time is a numeric vector:

        class(dds$time)

        then this will find genes which have linear relationship between log counts and time.

        (note to other people reading the thread: if you have replicates, it's preferable to include time as a factor, such that each time point gets its own parameter in the model)

        If you have more than 3 time points, you can include a quadratic term, which will also find genes which have up-down or down-up patterns in addition to linear relationships. That would look like a design of ~ time + I(time^2) and reduced design ~ 1.

        Comment


        • #5
          Read the section on the likelihood ratio test in the help pages:

          ?results

          Comment


          • #6
            Thanks Michael for your help
            I have one more question , do I need to perform a between-sample normalization before using the following design ?

            ddsTC <- DESeqDataSet(dds, ~ time)
            ddsTC <- DESeq(ddsTC, test="LRT", reduced = ~ 1)
            resTC <- results(ddsTC)

            thanks

            Comment


            • #7
              Any help will greatly be appreciated.

              Comment


              • #8
                the 'DESeq' function does normalization internally

                Comment

                Latest Articles

                Collapse

                • 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
                • 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...
                  04-22-2024, 07:01 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by seqadmin, 05-10-2024, 06:35 AM
                0 responses
                20 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 05-09-2024, 02:46 PM
                0 responses
                26 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 05-07-2024, 06:57 AM
                0 responses
                21 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 05-06-2024, 07:17 AM
                0 responses
                21 views
                0 likes
                Last Post seqadmin  
                Working...
                X