How I update makeblastdb
Can someone help me? I have downloaded blast+ version 2.9.0 but in the terminal shows version 2.6. How I update my blast? I need a new version for prokka installation.
makeblastdb
blast
prokka
• 330 views
•
link
written
by
pehenriquejp
0
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to update ncbi-blast+?
written by ongchip 0Hi, I installed ncbi-blast+. sudo apt-get install ncbi-blast+ I checked the version and it was 2.9.0+. blastn -version However, the latest version of ncbi-blast+ is …
-
Updating BLAST+ and PATH variable
written by A_heath 18Hi all, I have BLAST+ version 2.11.0+ on my Linux computer and I would like to update this version to the latest (2.13.0+). I downloaded …
-
Problem installing/testing gatk-4.1.7.0
written by arjun.upadhaya 1Hi there, Need help for beginner. I have a problem testing gatk-4.1.7.0. I am new to both Linux system and GATK. I am following (https://gatk.broadinstitute.org/hc/en-us/articles/360041320571--How-to-Install-all-software-packages-required-to-follow-the-GATK-Best-Practices) …
-
error in installation of DESeq2 in RStudio
written by ravi.eshwari 1I need help with installation of DESeq2 in Rstudio. This is the error message i receive also my ubuntu software shows libxml2-dev is already the …
-
How to install bamtofastq utility in my terminal?
written by Farah 8Hello, I need to use bamtofastq utility described in kallisto | bustools workflow (https://www.kallistobus.tools/install_bamtofastq.html) in order to convert bam files to fastq files for single-cell …
-
Issue with version of makeblastdb during Prokka installation
written by dongyun.jung 0Hello, First of all, it's the very first time for me to use any bioinformatics tools so this could be a dumb question. Can you …
-
Need help to solve Standalone blast error
written by ashokkumar.mb 0Hi I am trying run standalone blastn for some of contigs from genome assembly. So i have installed ncbi-blast-2.9.0+ version and downloaded nr database, and …
-
Wrong version of data file with Fgenesh gene finder
written by Rob 15Hi, When I launch fgenesh I got: Wrong version of data file Please update: your dat file for old version of fgenesh I don't understand …
-
Running PSI-BLAST Against Multiple Queries
written by Xylanaser 8Hi, I'm new in standalone blast+ and in linux terminal. I set the bash-profile to load the PATH and BLASTDB for my blast already, but …
-
Incomplete Blast Database In Ubuntu
written by rehma.ar 30<p>hello all, i am trying to do local blast using this command</p> <pre><code> blastall -p blastn -n T -i query.fasta -d nt.12 -o /blast.out </code></pre> …
did you set the PATH ? https://www.cyberciti.biz/faq/unix-linux-adding-path/
I think not. Just follow the steps?? Or I need change something??
You have an older version of
blastthat perhaps occurs earlier in your$PATH. Make sure the directory containing new version is at beginning of your$PATH.I modified .bashrc and export PATH using terminal according the command, but version remains 2.6.
What do you see when you do
which -a blastn? You should be able to see both versions ofblastnand their full paths.Setting/exporting
PATHvariable does not work instantly in the same session. You need to log out and back in, or open a new session. To find out which binary is executed by system, typewhich makeblastdb. After logging back in, that should change to the new binary if you have set thePATHcorrectly.Rather than setting new
PATHvariable, you can always move your new binaries to the same location as your old binaries (whichcommand will tell you what that location is). I would not normally suggest overwriting any files, but BLAST is free and easy to download again if something goes wrong.