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
              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
            • 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, 05-10-2024, 06:35 AM
            0 responses
            15 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 05-09-2024, 02:46 PM
            0 responses
            21 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 05-07-2024, 06:57 AM
            0 responses
            18 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 05-06-2024, 07:17 AM
            0 responses
            19 views
            0 likes
            Last Post seqadmin  
            Working...
            X