Entering edit mode
3.6 years ago
Randal
•
0
I am utilizing this youtube video: to learn how to use command line BLAST to align my sequences. I am trying to use "blastp" rather than the "blastn" example in the video. I am using my own protein sequences because the files she mentioned in the video are no longer available. The issue is when I try to BLAST my sequences as she did in the video it states "Error: Too many positional arguments (1), the offending value:" What are you guys tips on creating a successful outcome as she did in the video.
Thank you in advance
Please include the actual command that you used so that we can point out the mistake..
Here is the command:
-db
should be followed by a valid database name. You can see from the error report that your problem lies here:the offending value: violaceum
Also we can see that you don't have a database with that name at least in the dir you are in. Have you setup a blastdb dir and is blast aware of it? I have a feeling that you haven't. Anyway if you have and that is a valid database name, then wrap it in single quotes:
Generally speaking there's little to be gained by creating a blast database consisting of just one bacterial genome. Instead of
-db
you would use-subject whateverFile.fasta
Thank you for your input I will definitely take that into account. My other question is , what should the database file consist of?
You make blast databases from fasta files with the
makeblastdb
tool..