Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mnoon
    Junior Member
    • May 2015
    • 3

    DESeq2 for subset of (4115) genes

    I have a question about how reliable results would I get if I ran DESeq2 on about 4000 genes instead of all 17000 genes?

    Basically I have two conditions with 2 and 3 replicates each respectively. I ran DESeq2 and got about 4115 differentially expressed up-regulated genes (with Padj < 0.05). Would it make sense if I subset my counts-matrix for these 4000 genes and run DESeq2 on this subset (dataMatrix for 4000 genes only) for other samples and/or conditions?

    I did and I got about 51 genes (with Padj < 0.05). Should I not get more genes? what I am trying to ask is that would it make any statistical sense if I only take subset of these genes for other conditions (samples) and do differential expression? would my results be statistically reliable?

    here is my code:

    countData <- read.table("/Users/mnoon/Desktop/fruit_fly/analysis2/ugr_utgr_gfp/ugr_utgr_gfp_merged_counts.txt",header=TRUE)
    head(countData)

    gene_4114_list <- read.table("/Users/mnoon/Desktop/fruit_fly/analysis2/ugrInput_ugrvg_upregulated_4114genes.csv",header=TRUE)
    head(gene_4114_list)

    #Subset 4114 genes to get Read-Counts
    subLIST <- merge(gene_4114_list, countData, by.x= "fly_id", by.y= "gene")
    head(subLIST)
    rownames(subLIST) <- subLIST$fly_id
    subLIST <- subLIST[-1]
    head(subLIST)

    colData<-data.frame(condition=factor(c("UGRgfp", "UGRgfp", "UTGRgfp", "UTGRgfp", "UTGRgfp")))


    dds <- DESeqDataSetFromMatrix(countData = subLIST, colData = colData, design = ~ condition)
    colData(dds)$condition<-factor(colData(dds)$condition,levels=c("UGRgfp","UTGRgfp"))

    dds <- DESeq(dds)

    res<-results(dds)
    res<-res[order(res$padj),]
    head(res)
    mcols(res, use.names=TRUE)
    #get number of genes filtered with this threshold
    sum( res$padj < 0.05, na.rm=TRUE )
    Last edited by mnoon; 05-28-2015, 10:35 AM.
  • wetSEQer
    Member
    • Dec 2013
    • 15

    #2
    Why would you want to do that?

    Comment

    • mnoon
      Junior Member
      • May 2015
      • 3

      #3
      I did that for two reasons;

      1. I know this set of genes represent CNS and I wanted to see how there are expressed in CNS

      2. this could be a silly reason since some biologist suggested that if I have small set of genes for Differential expression it might give me more fold changes which doesnt make sense at all to me but I gave it a try and dont see any change in the fold change.

      Comment

      • dpryan
        Devon Ryan
        • Jul 2011
        • 3478

        #4
        The biologist that suggested that should be ignored, he/she hasn't the remotest clue.

        1. Taking a subset that you know to be up-regulated and reanalysing that from scratch should yield few if any significant results. The actual changes will get normalized out.

        2. Even if (1) weren't the case, doing what's suggested would be statistically impermissible and frankly a breach of scientific ethics. Any attempt to publish such results should result in immediate rejection. You would be well advised to never believe any results produced by the person that suggested this.

        Comment

        • mnoon
          Junior Member
          • May 2015
          • 3

          #5
          Thanks so much Dpryan for shedding light on the topic. I am sorry for not being clear earlier that I took subset of up-regulated (4115) genes from one comparison and ran DESeq2 for different samples and/or conditions (not for the same comparison/data matrix). Actually the idea was not to violate science ethics but taking a subset of 4000 genes (which are genes of interest) was an attempt to get a reasonable/doable set of targets for further validation.
          I was a little afraid of losing some effects/changes. So you are saying it is absolutely a wrong approach to take subset of counts-matrix for differential expression or is it a matter of losing some statistical power??
          Last edited by mnoon; 05-28-2015, 10:31 AM.

          Comment

          Latest Articles

          Collapse

          • mylaser
            Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by mylaser
            Kheloyaar: The Complete Guide to Kheloyaar Loginand Kheloyaar ID
            The online gaming industry has transformed the way people enjoy digital entertainment. As technology continues to improve, players are looking for platforms that offer convenience, security, and a seamless user experience. Kheloyaarhas gained attention among users who value an easy-to-use platform, quick account access, and a simple registration process.
            Whether you're exploring Kheloyaar for the first time or want to understand...
            Today, 09:27 PM
          • SEQadmin2
            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by SEQadmin2



            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
            ...
            Today, 11:10 AM
          • SEQadmin2
            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
            by SEQadmin2



            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
            Yesterday, 05:17 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, Today, 10:04 AM
          0 responses
          8 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, Yesterday, 10:08 AM
          0 responses
          7 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-07-2026, 11:05 AM
          0 responses
          10 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-02-2026, 11:08 AM
          0 responses
          31 views
          0 reactions
          Last Post SEQadmin2  
          Working...