Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Extracting statistically significant differentially expressed exons from DEXseq resu

    Hi

    I am trying to extract some data from my DEXseq results. I was able to get the final HTML report for my analysis. However, I was wondering if there's a way I could extract specific exons that are significantly differentially expressed between two conditions. I am interested in getting the gene id (ensembl gene id ok), exon or exon bin id (if applicable), their exon boundaries, fold change & adjusted p value. I am a R/bioconductor newbie. Any help is appreciated.

    Thanks

  • #2
    see the DEUresultTable function

    Hi,

    You can have a look at the DEUresultTable function, to create a table with gene id and number of exon bin, log2(fold change), adjusted p value...

    You can see the DEXSeq vignette on page 18 for usage of the DEUresultTable function :

    Code:
    > res1 <- DEUresultTable(ecs)
    > head( res1 )
    geneID exonID dispersion pvalue padjust meanBase
    FBgn0000256:E001 FBgn0000256 E001 0.046 0.94 1 58.34
    FBgn0000256:E002 FBgn0000256 E002 0.040 0.47 1 103.33
    FBgn0000256:E003 FBgn0000256 E003 0.035 0.92 1 326.48
    FBgn0000256:E004 FBgn0000256 E004 0.035 0.81 1 253.65
    FBgn0000256:E005 FBgn0000256 E005 0.046 0.87 1 60.64
    FBgn0000256:E006 FBgn0000256 E006 1.067 NA NA 0.79
    log2fold(untreated/treated)
    FBgn0000256:E001 0.025
    FBgn0000256:E002 -0.045
    FBgn0000256:E003 0.025
    FBgn0000256:E004 0.038
    FBgn0000256:E005 -0.013
    FBgn0000256:E006 0.126
    I think you can extract exon boundaries from the file you made earlier when preparing the annotation (the xxx_flattened.gff file).

    Hope that helps
    Best regards

    Comment


    • #3
      Another piece of information : to extract a table with only significant results (FDR < 10 % for example), you can try something like this

      Code:
       na.omit(res1[res1$padjust < 0.1, ])

      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...
        Today, 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, Today, 07:17 AM
      0 responses
      11 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-02-2024, 08:06 AM
      0 responses
      19 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-30-2024, 12:17 PM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-29-2024, 10:49 AM
      0 responses
      28 views
      0 likes
      Last Post seqadmin  
      Working...
      X