Hello, I wrote this code
(test) ➜ dene bowtie2 --very-fast-local -x /Users/uguremre/Desktop/dene/bowtie2_index/bowtie2 -1 /Users/uguremre/Desktop/dene/B11_L03_57_1.fq.gz -2 /Users/uguremre/Desktop/dene/B11_L03_57_2.fq.gz -S /Users/uguremre/Desktop/dene/B11.sam
But I got this ERROR. How can I figure out this issue? Could you pls help me?
(ERR): "/Users/uguremre/Desktop/dene/bowtie2_index/bowtie2" does not exist or is not a Bowtie 2 index
Exiting now ...
(test) ➜ dene ls
It would be not so logical to use
bowtie2
asbasename
of your index since that also happens to be a program name. When you create the index use some other name as thebasename
if that is what you did above.Otherwise show us a listing from
ls -lhR /Users/uguremre/Desktop/dene/bowtie2_index/*
.It says
Looks like that is not the location of
bowtie2
indexes. Please use the correct path in your command line above. Only provide the basename of the index.I created a new folder on my desktop whose name is
dene
. In this folder, I have my reference dataPrunus_armeniaca_cv_Stella.fasta.gz
and my other fastq data which isB11_L03_57_1.fq.gz
andB11_L03_57_2.fq.gz
and to createbowtie2_ index
I used this codeIt created
bt2_index_base.3.bt2l.tmp
andbowtie.2.bt2.tmp
this type four or five files and I tried to run bowtie2. I used this codebut I got ERROR. How can I fix it?
That is rather unfortunate choice of name but you called your index with basename
bt2_index_base
. So in your code you will need to use-x /Users/uguremre/Desktop/dene/bowtie2_index/bt2_index_base
. This will work as long as your index was created without any errors.(ERR): "/Users/uguremre/Desktop/dene/bowtie2_index/bt2_index_base" does not exist or is not a Bowtie 2 index. Unfortunately, I have got the same ERROR:(