Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • identify single exon transcripts from cufflinks output

    Hey guys,

    Do you have an idea how to identify single exon transcripts from cufflinks output? Dose 'genes with only one exon' means exon_number "1" are eligible?
    The transcripts.gtf file looks like:
    chr1 Cufflinks transcript 11387 11823 1000 . . gene_id "CUFF.1"; transcript_id "CUFF.1.1"; FPKM "126581774.1320091337"; frac "1.000000"; conf_lo "23084341.949073"; conf_hi "230079206.314945"; cov "2.510922"; full_read_support "yes";
    chr1 Cufflinks exon 11387 11823 1000 . . gene_id "CUFF.1"; transcript_id "CUFF.1.1"; exon_number "1"; FPKM "126581774.1320091337"; frac "1.000000"; conf_lo "23084341.949073"; conf_hi "230079206.314945"; cov "2.510922";
    chr1 Cufflinks transcript 11874 29043 658 + . gene_id "CUFF.2"; transcript_id "CUFF.2.1"; FPKM "120296038.9757787585"; frac "0.143074"; conf_lo "104144214.907809"; conf_hi "136447863.043749"; cov "2.644528"; full_read_support "no";
    chr1 Cufflinks exon 11874 12227 658 + . gene_id "CUFF.2"; transcript_id "CUFF.2.1"; exon_number "1"; FPKM "120296038.9757787585"; frac "0.143074"; conf_lo "104144214.907809"; conf_hi "136447863.043749"; cov "2.644528";
    chr1 Cufflinks exon 12613 12721 658 + . gene_id "CUFF.2"; transcript_id "CUFF.2.1"; exon_number "2"; FPKM "120296038.9757787585"; frac "0.143074"; conf_lo "104144214.907809"; conf_hi "136447863.043749"; cov "2.644528";
    chr1 Cufflinks exon 13221 29043 658 + . gene_id "CUFF.2"; transcript_id "CUFF.2.1"; exon_number "3"; FPKM "120296038.9757787585"; frac "0.143074"; conf_lo "104144214.907809"; conf_hi "136447863.043749"; cov "2.644528";
    chr1 Cufflinks transcript 11874 14408 1 + . gene_id "CUFF.2"; transcript_id "NR_046018_1"; FPKM "0.0000000000"; frac "0.000000"; conf_lo "0.000000"; conf_hi "6894923.389408"; cov "0.000000"; full_read_support "no";

  • #2
    Something like the following should work:
    Code:
    grep exon transcripts.gtf | awk '{print $10}' | sort | uniq -u
    The will likely give the list of single-exon genes, assuming cufflinks is consistent in its file formatting.

    Edit: I just saw that you wanted single-exon transcripts, not genes. Just change "print $10" to "print $12".

    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
    33 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-13-2024, 08:24 AM
    0 responses
    49 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-12-2024, 07:41 AM
    0 responses
    34 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 12-11-2024, 07:45 AM
    0 responses
    46 views
    0 likes
    Last Post seqadmin  
    Working...
    X