![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Tophat - Error: gtf_to_fasta returned an error. | papori | Bioinformatics | 8 | 09-03-2014 03:16 PM |
bowtie index problem (bowtie-build and then bowtie-inspect) | tgenahmet | Bioinformatics | 4 | 09-10-2013 12:51 PM |
Cufflinks - 'u' Class Code - Consistently Returned | AndrewCarpenter | Bioinformatics | 3 | 01-19-2011 07:16 PM |
bowtie-inspect question | dicty | Bioinformatics | 0 | 12-02-2010 05:45 PM |
help with bowtie-inspect | nimmi | RNA Sequencing | 0 | 10-25-2010 12:28 PM |
![]() |
|
Thread Tools |
![]() |
#1 |
Member
Location: Sweden Join Date: Nov 2009
Posts: 23
|
![]()
Hi all
I'm trying to run TopHat for the first time. I've checked the installation with the complementary test data set and that worked. Now with my own data set I get that message right after it tries to create the rat rn4.fa file since it's lacking in the index_folder. I've downloaded and unpacked the files from the bowtie/tophat webpage and I ran the make script. I've asked our IT people but since they are even more unfamiliar then me (which says a lot) with this program I got no help. So any help would be greatly appreciated! I 've pasted the entire message from TopHat below. Sincerely /Petter [1] 19633 [petter_v@purple BaseCalls]$ [Fri Nov 12 19:28:30 2010] Beginning TopHat run (v1.1.2) ----------------------------------------------- [Fri Nov 12 19:28:30 2010] Preparing output location ./tophat_out/ [Fri Nov 12 19:28:30 2010] Checking for Bowtie index files Error: Could not find Bowtie index files /data/archive/bowtie-indexes/chr*.* tophat -r 100 -p 4 --library-type fr-unstranded chr s_1_1_* s_1_2_* & [2] 19634 [1] Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded chr* s_1_1_* s_1_2_* [petter_v@purple BaseCalls]$ [Fri Nov 12 19:28:40 2010] Beginning TopHat run (v1.1.2) ----------------------------------------------- [Fri Nov 12 19:28:40 2010] Preparing output location ./tophat_out/ [Fri Nov 12 19:28:40 2010] Checking for Bowtie index files Error: Could not find Bowtie index files /data/archive/bowtie-indexes/chr.* tophat -r 100 -p 4 --library-type fr-unstranded rn4 s_1_1_* s_1_2_* & [3] 19635 [2] Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded chr s_1_1_* s_1_2_* [petter_v@purple BaseCalls]$ [Fri Nov 12 19:28:47 2010] Beginning TopHat run (v1.1.2) ----------------------------------------------- [Fri Nov 12 19:28:47 2010] Preparing output location ./tophat_out/ [Fri Nov 12 19:28:47 2010] Checking for Bowtie index files [Fri Nov 12 19:28:47 2010] Checking for reference FASTA file Warning: Could not find FASTA file /data/archive/bowtie-indexes/rn4.fa [Fri Nov 12 19:28:47 2010] Reconstituting reference FASTA file from Bowtie index [FAILED] Error: bowtie-inspect returned an error [3]+ Exit 1 tophat -r 100 -p 4 --library-type fr-unstranded rn4 s_1_1_* s_1_2_* |
![]() |
![]() |
![]() |
#2 |
Member
Location: Israel Join Date: Oct 2010
Posts: 19
|
![]()
Hi
I am new to this too. also trying to run Tophat v1.1.2 with Bowtie v0.12.7.0 and get the same error message - Code:
[Sun Nov 14 12:15:36 2010] Beginning TopHat run (v1.1.2) ----------------------------------------------- [Sun Nov 14 12:15:36 2010] Preparing output location ./tophat_out/ [Sun Nov 14 12:15:36 2010] Checking for Bowtie index files [Sun Nov 14 12:15:36 2010] Checking for reference FASTA file Warning: Could not find FASTA file /bowtie-0.12.7/indexes/mm9.fa [Sun Nov 14 12:15:36 2010] Reconstituting reference FASTA file from Bowtie index Executing: bowtie-inspect mm9 > ./tophat_out/mm9.fa [FAILED] Error: bowtie-inspect returned an error Last edited by reut; 11-14-2010 at 10:49 PM. |
![]() |
![]() |
![]() |
#3 |
Member
Location: Sweden Join Date: Nov 2009
Posts: 23
|
![]()
Thanks for the tip. I've asked our IT department to install the older versions. Is there somewhere I can get them from? Question two, are we the only ones with this issue? Because if others are able to get the whole thing to work maybe installing the older software is a less then optimal workaround.
Is there someone that's been able to get bowtie/tophat to work versus the rat genome using the latest installations of the software together with the latest genomes from the bowtie manual page? |
![]() |
![]() |
![]() |
#4 |
Member
Location: Israel Join Date: Oct 2010
Posts: 19
|
![]()
You can download older versions from here:
http://tophat.cbcb.umd.edu/downloads/ What I finally did was run the bowtie-inspect manually to create the .fa file (bowtie-inspect index_prefix), copied the .fa file to the BOWTIE_INDEXES directory and then run Tophat. Anyone else encountered this issue? |
![]() |
![]() |
![]() |
#5 |
Member
Location: Sweden Join Date: Nov 2009
Posts: 23
|
![]()
Thanks for the tip. I ran bowtie-inspect manually as well and managed to create the .fa file. I then proceeded to convert my qseqs to fastq using a perl script from (http://seqanswers.com/forums/showthread.php?t=1655). What suprised me was that the converter only created two (large) files, one per pair and lane from my paired end run. Anyway, I've now started tophat and I've gotten further then before, it's now on mapping reads.
|
![]() |
![]() |
![]() |
#6 |
Junior Member
Location: Cambridge, UK Join Date: Nov 2010
Posts: 3
|
![]()
It looks like the problem has to do with the path to the indexes files. Running
tophat /full/path/to/indexes/m_musculus reads1.fq,reads2.fq,reads3.fq or if you have a variable to the indexes path: tophat $BOWTIE_INDEXES/m_musculus reads1.fq,reads2.fq,reads3.fq did the trick for me Hope this can be helpful! Last edited by tleonardi; 11-18-2010 at 12:46 PM. |
![]() |
![]() |
![]() |
#7 |
Member
Location: United States Join Date: Jun 2011
Posts: 49
|
![]()
hi,
i have the same problem. and if i use the full path, then it will be ok. but there is still an error like: Warning: junction database is empty! at last the bam file is very small. anyone can help me? Last edited by camelbbs; 06-27-2011 at 09:30 AM. |
![]() |
![]() |
![]() |
#8 | |
Member
Location: United States Join Date: Jun 2011
Posts: 49
|
![]() Quote:
is bowtie-inspect mm9.1.ebwt mm9.2.ebwt mm9.3.ebwt mm9.4.ebwt? |
|
![]() |
![]() |
![]() |
#9 | ||
Member
Location: Hong Kong Join Date: Oct 2010
Posts: 74
|
![]()
Hi everyone
Now I have installed tophat on mac64bit,but I have some question. I download tophat-1.31 Mac OS X x86_64 binary,and it doesn't need to compile. Quote:
How do I ./configure --prefix=..../../. And when I run tophat,it shows the error Quote:
Please tell me. Thanks |
||
![]() |
![]() |
![]() |
Tags |
rnaseq, tophat bowtie |
Thread Tools | |
|
|