Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • joseph
    Member
    • Feb 2008
    • 39

    TopHat: no GFF3_file.expr in the output

    Can you please help me to figure out why the “GFF3_file.expr” was not generated without getting any error message?
    I had someone made me a GFF3 file from the KnowGene table; the first lines look like this:


    ##gff-version 3
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC gene 1115 4121 0 + 0 ID=uc001aaa.2gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC mRNA 1115 4121 0 + 0 ID=uc001aaa.2mRNA;Parent=uc001aaa.2gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 1115 2090 0 + 0 ID=uc001aaa.2exon1;Parent=uc001aaa.2mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 2475 2584 0 + 0 ID=uc001aaa.2exon2;Parent=uc001aaa.2mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 3083 4121 0 + 0 ID=uc001aaa.2exon3;Parent=uc001aaa.2mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC gene 1115 4272 0 + 0 ID=uc009vip.1gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC mRNA 1115 4272 0 + 0 ID=uc009vip.1mRNA;Parent=uc009vip.1gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 1115 2090 0 + 0 ID=uc009vip.1exon1;Parent=uc009vip.1mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 2475 4272 0 + 0 ID=uc009vip.1exon2;Parent=uc009vip.1mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC gene 4268 14764 0 - 0 ID=uc001aab.2gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC mRNA 4268 14764 0 - 0 ID=uc001aab.2mRNA;Parent=uc001aab.2gene
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 4268 4692 0 - 0 ID=uc001aab.2exon1;Parent=uc001aab.2mRNA
    gi|89161185|ref|NC_000001.9|NC_000001 UCSC exon 4832 4901 0 - 0 ID=uc001aab.2exon2;Parent=uc001aab.2mRNA


    I ran TopHat with the following command:

    tophat -r 200 /myDir/bowtie-0.9.9.3/indexes/h_sapiens_asm s_7_1.fastq s_7_2.fastq -G GFF3_knownGene
  • Cole Trapnell
    Senior Member
    • Nov 2008
    • 213

    #2
    Hi Joseph,

    All of the options need to be specified before the index and reads in the command. If you run it like this:

    tophat -G GFF3_knownGene -r 200 /myDir/bowtie-0.9.9.3/indexes/h_sapiens_asm s_7_1.fastq s_7_2.fastq

    You should get a non-empty .expr file.

    Comment

    • joseph
      Member
      • Feb 2008
      • 39

      #3
      Error: Report generation failed

      Originally posted by Cole Trapnell View Post
      Hi Joseph,

      All of the options need to be specified before the index and reads in the command. If you run it like this:

      tophat -G GFF3_knownGene -r 200 /myDir/bowtie-0.9.9.3/indexes/h_sapiens_asm s_7_1.fastq s_7_2.fastq

      You should get a non-empty .expr file.
      Hi Cole
      I still don’t see an .expr file.
      Here is the content of tophat_out
      ls
      GFF3_knownGene.juncs junctions.bed left_kept_reads.fq.candidate_hits.sam right_kept_reads.fq
      accepted_hits.sam knownGene.juncs logs right_kept_reads.fq.candidate_hits.sam
      coverage.wig left_kept_reads.fq repeat_reads.fa tmp


      tophat -G GFF3_knownGene -r 200 /MyDir/bowtie-0.9.9.3/indexes/h_sapiens_asm s_7test_1.fastq s_7test_2.fastq

      [Wed Jun 3 09:30:42 2009] Beginning TopHat run (v1.0.8)
      -----------------------------------------------
      [Wed Jun 3 09:30:42 2009] Preparing output location ./tophat_out/
      [Wed Jun 3 09:30:42 2009] Checking for Bowtie index files
      [Wed Jun 3 09:30:42 2009] Checking for reference FASTA file
      [Wed Jun 3 09:30:42 2009] Checking for Bowtie
      Bowtie version: 0.9.9.3
      [Wed Jun 3 09:30:42 2009] Checking reads
      seed length: 36bp
      format: fastq
      quality scale: phred
      [Wed Jun 3 09:30:42 2009] Reading known junctions from GFF file
      Warning: TopHat did not find any junctions in GFF file
      Splitting reads into 1 segments
      [Wed Jun 3 09:31:01 2009] Mapping reads against h_sapiens_asm with Bowtie
      Splitting reads into 1 segments
      [Wed Jun 3 09:31:12 2009] Mapping reads against h_sapiens_asm with Bowtie
      [Wed Jun 3 09:31:21 2009] Searching for junctions via coverage islands
      [Wed Jun 3 09:34:58 2009] Searching for junctions via mate-pair closures
      [Wed Jun 3 09:39:55 2009] Retrieving sequences for splices
      [Wed Jun 3 09:42:17 2009] Indexing splices
      [Wed Jun 3 09:42:17 2009] Mapping reads against segment_juncs with Bowtie
      [Wed Jun 3 09:42:18 2009] Joining segment hits
      [Wed Jun 3 09:42:18 2009] Mapping reads against segment_juncs with Bowtie
      [Wed Jun 3 09:42:18 2009] Joining segment hits
      [Wed Jun 3 09:42:18 2009] Reporting output tracks
      [FAILED]
      Error: Report generation failed
      M1-80330:test jdhahbi$

      Comment

      • Cole Trapnell
        Senior Member
        • Nov 2008
        • 213

        #4
        Can you please email me the logs directory?

        Comment

        Latest Articles

        Collapse

        • SEQadmin2
          Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
          by SEQadmin2



          Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
          ...
          07-09-2026, 11:10 AM
        • SEQadmin2
          Cancer Drug Resistance: The Lingering Barrier to Rising Survival
          by SEQadmin2



          Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

          There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
          07-08-2026, 05:17 AM
        • GATTACAT
          Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
          by GATTACAT
          Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
          07-01-2026, 11:43 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 07-13-2026, 10:26 AM
        0 responses
        26 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-09-2026, 10:04 AM
        0 responses
        36 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-08-2026, 10:08 AM
        0 responses
        23 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-07-2026, 11:05 AM
        0 responses
        34 views
        0 reactions
        Last Post SEQadmin2  
        Working...