Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Comparing DEXSeq counting bin and real exons

    Hi All:

    I use DEXSeq for detecting differential exon usage (DEU), and the results seem to be good. One thing I am not sure is that, I know which gene has DEU, and I know which "exonic region (counting bin)" is differentially expressed. However, I wonder if I can accurately tell which "real exons" are differentially expressed. The authors of DEXSeq kindly pointed out that we could overlap the exon bins with the real exons to see to which specific "real" exons my exon bins overlap -- is there any R functions that can:

    1. Pass an Ensembl gene ID
    2. Output a transcript profile plot (with annotated exons) associated with that gene

    For now, I just search Ensembl website and get the profile, but most time, it's hard to tell the correspondences...

    Thanks a lot!!

  • #2
    HI a little boy, you could use findOverlaps from the Bioconductor package GenomicRanges to associate exon bins to real exons.

    Comment


    • #3
      Originally posted by areyes View Post
      HI a little boy, you could use findOverlaps from the Bioconductor package GenomicRanges to associate exon bins to real exons.
      Hi @areyes:

      Would you please give me some examples on how to get the real exons from the fData(ExonCountSet_obj) output (which contains exon bins start and end information)? Thanks a lot!

      Comment


      • #4
        It would be something like this:

        Code:
        library(DEXSeq)
        library(GenomicFeatures)
        library(GenomicRanges)
        
        data("pasillaExons", package="pasilla")
        exonBins <- GRanges(
           seqnames=fData(pasillaExons)$chr, 
           ranges=IRanges( 
              fData(pasillaExons)$start, fData(pasillaExons)$end ),    
           strand=fData(pasillaExons)$strand)
           transcriptDb <- makeTranscriptDbFromGFF("/home/alejandro/Work/Graveley/Reanalisis/Annotations/Drosophila_melanogaster.BDGP5.25.62.mychr_tss.gtf", format="gtf")
        
        exonsByTranscript <- exonsBy(transcriptDb, "tx", use.names=TRUE)
        
        findOverlaps( unlist(exonsByTranscript), exonBins )

        Comment


        • #5
          Originally posted by areyes View Post
          It would be something like this:

          Code:
          library(DEXSeq)
          library(GenomicFeatures)
          library(GenomicRanges)
          
          data("pasillaExons", package="pasilla")
          exonBins <- GRanges(
             seqnames=fData(pasillaExons)$chr, 
             ranges=IRanges( 
                fData(pasillaExons)$start, fData(pasillaExons)$end ),    
             strand=fData(pasillaExons)$strand)
             transcriptDb <- makeTranscriptDbFromGFF("/home/alejandro/Work/Graveley/Reanalisis/Annotations/Drosophila_melanogaster.BDGP5.25.62.mychr_tss.gtf", format="gtf")
          
          exonsByTranscript <- exonsBy(transcriptDb, "tx", use.names=TRUE)
          
          findOverlaps( unlist(exonsByTranscript), exonBins )
          Hi @areyes:

          Thanks so much! I tried that on my own ExonCountSet object, and it works well. I personally think that exonsByTranscript is more informative as I can pass a particular transcript name to it and see all its exon information as the output. Combined with the plotDEXSeq(), I can tell which real exons are differentially expressed.

          Comment


          • #6
            Hi areyes, can this script applied to the current DEXSeq version? How can I get the real exon? Thanks

            Originally posted by areyes View Post
            It would be something like this:

            Code:
            library(DEXSeq)
            library(GenomicFeatures)
            library(GenomicRanges)
            
            data("pasillaExons", package="pasilla")
            exonBins <- GRanges(
               seqnames=fData(pasillaExons)$chr, 
               ranges=IRanges( 
                  fData(pasillaExons)$start, fData(pasillaExons)$end ),    
               strand=fData(pasillaExons)$strand)
               transcriptDb <- makeTranscriptDbFromGFF("/home/alejandro/Work/Graveley/Reanalisis/Annotations/Drosophila_melanogaster.BDGP5.25.62.mychr_tss.gtf", format="gtf")
            
            exonsByTranscript <- exonsBy(transcriptDb, "tx", use.names=TRUE)
            
            findOverlaps( unlist(exonsByTranscript), exonBins )

            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
            25 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