![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
TopHat Error: Could not find Bowtie index files /bowtie-0.12.5/indexes/. | rebrendi | Bioinformatics | 11 | 06-22-2016 10:55 AM |
Galaxy Error: Could not find Bowtie 2 index files | caa5042 | RNA Sequencing | 1 | 08-05-2013 11:54 PM |
Tophat can't find Bowtie index files | JohnGa | Bioinformatics | 38 | 05-17-2013 09:22 AM |
SpliceMap error: cannot find chromosomes in bowtie index | jgw | RNA Sequencing | 2 | 02-15-2013 07:37 AM |
Tophat - Could not find Bowtie 2 index files | janaahan13 | Illumina/Solexa | 2 | 11-28-2012 09:44 AM |
![]() |
|
Thread Tools |
![]() |
#1 |
Member
Location: North Carolina Join Date: Sep 2011
Posts: 38
|
![]()
I'm trying to align my rna-seq data to ref genome using tophat. I made bowtie2 index files, and it is in the working dir.
The code I used is : "source /usr/local/apps/tophat/tophat.csh cd /gpfs_share/hlibyar/tophat tophat Am_genome ../trim/IAPV_05h_TTAGGC_L003_R1_001.trimmed.fastq " This is my error msg. [2014-09-11 16:36:03] Beginning TopHat run (v2.0.8b) ----------------------------------------------- [2014-09-11 16:36:03] Checking for Bowtie Bowtie 2 not found, checking for older version.. Bowtie version: 1.0.0.0 [2014-09-11 16:36:03] Checking for Samtools Samtools version: 0.1.19.0 [2014-09-11 16:36:03] Checking for Bowtie index files Error: Could not find Bowtie index files (Am_genome.*.ebwt) It seems like tophat is looking for ebwt files, but my index are *.bt2 Pls help me here! thanks a lot! |
![]() |
![]() |
![]() |
#2 |
Super Moderator
Location: Walnut Creek, CA Join Date: Jan 2014
Posts: 2,707
|
![]()
The error states that it could not find bowtie2. I assume it needs to be in the path.
|
![]() |
![]() |
![]() |
#3 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
It found bowtie1 but the right index files (you have version 2 files) are missing. So you can either include path for bowtie2 or create indexes using bowtie1. I assume you want the former.
|
![]() |
![]() |
![]() |
#4 | |
Member
Location: North Carolina Join Date: Sep 2011
Posts: 38
|
![]() Quote:
still need to give the path? I'll try that. |
|
![]() |
![]() |
![]() |
#5 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Your default $PATH is pointing to bowtie v.1. executable. Do you have bowtie v.2. installed? That location of v.2 executable should be added to $PATH.
Once tophat finds a version of bowtie (I think it looks for v.2 first then v.1) it will go looking for the indexes. Since it found v.1 it went looking for those indexes (the indexes differ for the two versions). |
![]() |
![]() |
![]() |
#6 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
hi
I'm following a tutorial in tophat, but I don't know what is wrong with my code, please help I have been trying with tophat -p 2 -G GSM794483_C1_R1.transcripts.gtf -o C1_R1_thout /home/tomas/bin/c1/genome genome GSM794483_C1_R1_1.fq GSM794483_C1_R1_2.fq tophat -p 2 -G GSM794483_C1_R1.transcripts.gtf -o C1_R1_thout genome.1 GSM794483_C1_R1_1.fq GSM794483_C1_R1_2.fq or even this tophat -p 2 -G GSM794483_C1_R1.transcripts.gtf -o C1_R1_thout genome.1 GSM794483_C1_R1_1.fq GSM794483_C1_R1_2.fq but nothing work... |
![]() |
![]() |
![]() |
#7 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Are you following the tophat tutorial from nature protocols?
Can you post a long listing (ls -l) of files from the directory where you are trying to run tophat from? |
![]() |
![]() |
![]() |
#8 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
ls
C1_R1_thout genome.3.bt2 GSM794483_C1_R1_2.fq.gz genome genome.4.bt2 GSM794483_C1_R1.accepted_hits.bam genome.1.bt2 GSM794483_C1_R1_1.fq GSM794483_C1_R1.transcripts.gff genome.2.bt2 GSM794483_C1_R1_2.fq GSM794483_C1_R1.transcripts.gtf |
![]() |
![]() |
![]() |
#9 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Try this:
Code:
$ tophat -p 2 -G ./GSM794483_C1_R1.transcripts.gtf -o ./C1_R1_thout_new ./genome ./GSM794483_C1_R1_1.fq ./GSM794483_C1_R1_2.fq |
![]() |
![]() |
![]() |
#10 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
tomas@HP-Pavilion:~/bin/c1$ tophat -p 2 -G ./GSM794483_C1_R1.transcripts.gtf -o ./C1_R1_thout_new ./genome ./GSM794483_C1_R1_1.fq ./GSM794483_C1_R1_2.fq
[2015-03-20 13:53:45] Beginning TopHat run (v2.0.13) ----------------------------------------------- [2015-03-20 13:53:45] Checking for Bowtie Bowtie version: 2.2.5.0 [2015-03-20 13:53:45] Checking for Bowtie index files (genome).. Error: Could not find Bowtie 2 index files (./genome.*.bt2) |
![]() |
![]() |
![]() |
#11 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
i'm working with ubuntu 14, and every file are in the same directory
|
![]() |
![]() |
![]() |
#12 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Can you post a long listing of this directory?
Code:
$ ls -lh Last edited by GenoMax; 03-20-2015 at 10:02 AM. |
![]() |
![]() |
![]() |
#13 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
Are not
tomas@HP-Pavilion:~/bin/c1$ ls -lh total 4,1G drwxrwxr-x 4 tomas tomas 4,0K mar 20 10:32 C1_R1_thout drwxrwxr-x 4 tomas tomas 4,0K mar 20 13:53 C1_R1_thout_new drwxrwxr-x 2 tomas tomas 4,0K mar 20 12:15 genome -rwxrwxr-x 1 tomas tomas 43M abr 10 2012 genome.1.bt2 -rwxrwxr-x 1 tomas tomas 29M abr 10 2012 genome.2.bt2 -rwxrwxr-x 1 tomas tomas 143 abr 10 2012 genome.3.bt2 -rwxrwxr-x 1 tomas tomas 29M abr 10 2012 genome.4.bt2 -rw-rw-r-- 1 tomas tomas 1,8G mar 20 10:34 GSM794483_C1_R1_1.fq -rw-rw-r-- 1 tomas tomas 1,8G mar 20 10:35 GSM794483_C1_R1_2.fq -rw-rw-r-- 1 tomas tomas 138M sep 13 2011 GSM794483_C1_R1_2.fq.gz -rw-rw-r-- 1 tomas tomas 325M sep 9 2011 GSM794483_C1_R1.accepted_hits.bam -rw-rw-r-- 1 tomas tomas 14M mar 20 11:02 GSM794483_C1_R1.transcripts.gff -rw-rw-r-- 1 tomas tomas 14M mar 20 10:29 GSM794483_C1_R1.transcripts.gtf |
![]() |
![]() |
![]() |
#14 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Those index files do not look right. Where did you get those from? There are two genome.rev.*.bt2 files missing.
|
![]() |
![]() |
![]() |
#15 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
i get it from http://0-www.ncbi.nlm.nih.gov.elis.t...i?acc=GSE32038
|
![]() |
![]() |
![]() |
#16 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Official link for this data at NCBI is: http://www.ncbi.nlm.nih.gov/geo/quer...i?acc=GSE32038 (your link seems to be from Taiwan).
I don't think GEO dataset has fly genome indexes. Those should be downloaded from Illumina igenomes page here: http://support.illumina.com/sequenci...e/igenome.html (See link for BDGP5.25). |
![]() |
![]() |
![]() |
#17 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
and of these:
Drosophila melanogaster Ensembl BDGP5 BDGP5.25 NCBI build5.41 build5.3 build5 build4.1 which one should I download? You have been my informatic super hero ![]() Last edited by lupid; 03-20-2015 at 10:18 AM. |
![]() |
![]() |
![]() |
#18 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,080
|
![]()
Get Ensembl BDGP5.25 since that is used in Nature Protocols. (any of them would work).
|
![]() |
![]() |
![]() |
#19 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
You are the best, thank, that work
|
![]() |
![]() |
![]() |
#20 |
Member
Location: chile Join Date: Mar 2015
Posts: 54
|
![]()
Now the error is this
Building Bowtie index from GSM794483_C1_R1.transcripts.fa [FAILED] Error: Couldn't build bowtie index with err = 1 I tried to put the fata file in the directory, and not change, what can I do now? |
![]() |
![]() |
![]() |
Thread Tools | |
|
|