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
              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
            • seqadmin
              Current Approaches to Protein Sequencing
              by seqadmin


              Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
              04-04-2024, 04:25 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 04-11-2024, 12:08 PM
            0 responses
            59 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 10:19 PM
            0 responses
            57 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 09:21 AM
            0 responses
            51 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-04-2024, 09:00 AM
            0 responses
            56 views
            0 likes
            Last Post seqadmin  
            Working...
            X