Entering edit mode
9.3 years ago
bioguy24
▴
230
I downloaded bowtie2-2.6.0 from github as I am blocked from sourceforge, extracted, and installed it. I added it to path using:
echo "export PATH=\$PATH:export PATH=$PATH:"/media/C2F8EFBFF8EFAFB9/bowtie2-2.6.0"/" >> ~/.bashrc
and confirmed it using:
/media/C2F8EFBFF8EFAFB9/picard-tools-1.135/:/media/C2F8EFBFF8EFAFB9/bowtie2-2.6.0/
it appears to be added but when I try to build and index using combined files from chromFA.tar.gz
using:
bowtie2-build hg19.fa hg19
No command 'bowtie2-build' found, did you mean:
Command 'bowtie-build' from package 'bowtie' (universe)
bowtie2-build: command not found
What did I do wrong? Thank you.
I edited .bashrc and used the command provided:
Here is the error I get (its different):
Thank you :)
The files probably are not set as executables, do:
Now, judging by its name (
/media/
) this is an external drive, depending how it is mounted and its file system, you may not be able to run programs from this drive.Getting closer:
You were right that
/media/
wasn't mounted so I moved bowtie2 and added it to path.Thank you :).
bowtie2-build doesn't know where is
hg19.fa
, it seems. Is the filehg19.fa
on the same folder where you are calling bowtie2 (~/Desktop/hg19_fasta/
)?