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
              Advancing Precision Medicine for Rare Diseases in Children
              by seqadmin




              Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
              12-16-2024, 07:57 AM
            • seqadmin
              Recent Advances in Sequencing Technologies
              by seqadmin



              Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.

              Long-Read Sequencing
              Long-read sequencing has seen remarkable advancements,...
              12-02-2024, 01:49 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 12-17-2024, 10:28 AM
            0 responses
            28 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-13-2024, 08:24 AM
            0 responses
            43 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-12-2024, 07:41 AM
            0 responses
            29 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 12-11-2024, 07:45 AM
            0 responses
            42 views
            0 likes
            Last Post seqadmin  
            Working...
            X