Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Loczi94
    Junior Member
    • Mar 2016
    • 6

    #1

    How to get starting and ending positions of 5'UTRs and 3'UTRs?

    Hi everyone!

    I have a gff file with genome annotations downloaded from NCBI (http://www.ncbi.nlm.nih.gov/genome/23338). Does anyone know if there is any easy way to get starting and ending positions of 5'UTRs and 3'UTRs for that genome?

    I hope that someone would be able to answer me, cause I need this informations to go on with my project. Thanks in advance
  • dpryan
    Devon Ryan
    • Jul 2011
    • 3478

    #2
    If you download the GFF file from that link you'll notice that the UTRs aren't explicitly labeled, which is too bad. You might be able to use R to create a TxDB object from that GFF file:

    Code:
    library("GenomicFeatures")
    gff = makeTxDbFromGFF("GCF_000633615.1_Guppy_female_1.0_MT_genomic.gff")
    fiveUTRsByTranscript(gff)
    There's also a threeUTRsByTranscript() function.

    Comment

    • Loczi94
      Junior Member
      • Mar 2016
      • 6

      #3
      Warning messages

      Thank you very much. I've done that, but I got some warning messages:

      1: In '.extract_exons_from_GRanges(exon_IDX, gr, ID, Name, Parent, feature = "exon", ':
      The following orphan exon were dropped (showing only the 6 first):
      seqid start end strand ID Parent Name
      1 NC_024338.1 11587093 11587135 - id225630 id225629 id225630
      2 NC_024338.1 11586584 11586996 - id225631 id225629 id225631
      3 NC_024338.1 11599024 11599069 - id225633 id225632 id225633
      4 NC_024338.1 11598612 11598925 - id225634 id225632 id225634
      5 NC_024338.1 11601674 11601728 - id225636 id225635 id225636
      6 NC_024338.1 11601296 11601594 - id225637 id225635 id225637
      2: In 'makeTxDbFromGRanges(gr, metadata = metadata)':
      The following transcripts were dropped because their exon ranks could
      not be inferred (either because the exons are not on the same
      chromosome/strand or because they are not separated by introns):
      gene23263

      I found some tips here: https://support.bioconductor.org/p/69716/ , but I'm not sure if it's appropriate for my problem.

      Comment

      • dpryan
        Devon Ryan
        • Jul 2011
        • 3478

        #4
        Those are sort of weird regions, they have CDS but no annotated exons. If you look through the file, they're annotated as undergoing VDJ recombination (meaning that they're presumably immune related). I'm not sure how things get annotated like this and why they then lack exons, but that's the cause of the error. You can essentially ignore these warnings, since the only way to fix them would be to add a bunch of fake exons to the files and I can't say with certainty that that'd be correct.

        Comment

        Latest Articles

        Collapse

        • SEQadmin2
          Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
          by SEQadmin2



          CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

          Despite this, “CRISPR helped turn genome editing from a specialized technique into
          ...
          07-31-2026, 11:01 AM
        • SEQadmin2
          Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
          by SEQadmin2


          Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

          The systematic characterization of the human proteome has
          ...
          07-20-2026, 11:48 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 08-06-2026, 07:41 AM
        0 responses
        19 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 08-03-2026, 10:13 AM
        0 responses
        33 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-31-2026, 02:55 AM
        0 responses
        43 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-24-2026, 12:17 PM
        0 responses
        26 views
        0 reactions
        Last Post SEQadmin2  
        Working...