Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • watermark
    Member
    • Nov 2013
    • 20

    How to get TCGA transcript isoforms sequences ?

    Hi all,

    I've downloaded the breast cancer RNA-seq2 data from TCGA. it's contain the isoform of the genes .
    I'm looking way to get the sequence of theses isoforms. I tried BioMart and UCSC ,but I couldn't fin it. I face with error like: no such ID exist.

    Can anybody help me ?
    my ids are like :

    isoform_id
    uc011lsn.1
    uc010uoa.1
    uc002bgz.2
    uc002bic.2
    uc010zzl.1
    uc001jiu.2
    uc010qhg.1
    Last edited by watermark; 02-25-2014, 08:04 AM.
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2


    I see now that you want the sequences not just ID's.

    Comment

    • watermark
      Member
      • Nov 2013
      • 20

      #3
      Yes, exactly, I want to have the sequence of those IDs, which is the transcript isoforms from TCGA.

      Comment

      • GenoMax
        Senior Member
        • Feb 2008
        • 7142

        #4
        Here is a BED format file for the transcripts used for TCGA analysis: https://webshare.bioinf.unc.edu/publ...A/unc_hg19.bed

        General description of the TCGA pipeline: https://webshare.bioinf.unc.edu/publ...eq_summary.pdf

        Comment

        • dpryan
          Devon Ryan
          • Jul 2011
          • 3478

          #5
          Ah, I guess you're the "Jack" over on Biostars that PM'd me. There may be an easier way to do this, but one method would use the BED file that Genomax posted. That file actually have the coordinates of the exons for each of the transcripts, though that may not have been obvious at first glance. From that, one could create a GRanges object in R (see the GenomicRanges package) and then use getSeq() to just get the sequence for each exon (getSeq() is from BSgenomes, so you're using a good number of different packages). You could then "just" apply a function to output the merged sequence (this is only easy if you're really familiar with R).

          The hardest part of this is likely parsing the BED file to get all of the exonic coordinates. Let's just take a single example:

          Code:
          chr15   82647285        82707815        uc002bgz.2      0       +       0       0       0       5       307,57,140,80,1010,     0,45585,49532,53207,59520,
          The last column gives 5' offsets inside the coordinates specified in the first 3 columns for each exon. The next to last column gives the width of each of those exons in bases. In other words, this transcript has 5 exons starting at position:
          Code:
          #1: 82647285+0 = 82647285
          #2: 82647285+45585= 82692870
          #3: 82647285+49532= 82696817
          #4: 82647285+53207= 82700492
          #5: 82647285+59520= 82706805
          The easiest way to derive that is probably to split that next to last column by commas, drop the last value, convert to numeric, c(start_position, that_vector), and then use cumsum(). The output would then be the appropriate positions. You don't need to specify the end positions of each exon, just the widths, so that part is much easier.

          It'd be good to double check that that works with a transcript on the - strand, since sometimes UCSC does weird things with the coordinates there.

          Comment

          • GenoMax
            Senior Member
            • Feb 2008
            • 7142

            #6
            @Watermark:

            Sequence files for the isoforms are available here: https://webshare.bioinf.unc.edu/publ...transcripts.fa

            Mapping file: https://webshare.bioinf.unc.edu/publ...ownToLocus.txt
            Last edited by GenoMax; 02-21-2014, 12:57 PM.

            Comment

            • watermark
              Member
              • Nov 2013
              • 20

              #7
              Thanks GenoMax.

              Comment

              • watermark
                Member
                • Nov 2013
                • 20

                #8
                Thanks dpryan. it was helpful.

                Comment

                • watermark
                  Member
                  • Nov 2013
                  • 20

                  #9
                  Originally posted by GenoMax View Post
                  @Watermark:

                  Sequence files for the isoforms are available here: https://webshare.bioinf.unc.edu/publ...transcripts.fa

                  Mapping file: https://webshare.bioinf.unc.edu/publ...ownToLocus.txt

                  Do you know how can I find which miRNAs binds to theses isoforms ?

                  Comment

                  Latest Articles

                  Collapse

                  • SEQadmin2
                    Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                    by SEQadmin2


                    I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

                    Here are nine questions we think about, in roughly the order they matter, before...
                    06-18-2026, 07:11 AM
                  • SEQadmin2
                    From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                    by SEQadmin2


                    Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                    The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                    ...
                    06-02-2026, 10:05 AM

                  ad_right_rmr

                  Collapse

                  News

                  Collapse

                  Topics Statistics Last Post
                  Started by SEQadmin2, 06-26-2026, 11:10 AM
                  0 responses
                  15 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-17-2026, 06:09 AM
                  0 responses
                  49 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-09-2026, 11:58 AM
                  0 responses
                  107 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 06-05-2026, 10:09 AM
                  0 responses
                  125 views
                  0 reactions
                  Last Post SEQadmin2  
                  Working...