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
        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, Today, 06:55 AM
      0 responses
      8 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-30-2024, 03:16 PM
      0 responses
      23 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-29-2024, 01:32 PM
      0 responses
      27 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-24-2024, 07:15 AM
      0 responses
      214 views
      0 likes
      Last Post seqadmin  
      Working...
      X