I am trying to run blastp locally using a multiple-fasta file as query, using this command:
blastp -query homo.faa -db cow.faa -out human_blast.csv -outfmt 6 -evalue 0.00001 -max_target_seqs 1 -num_threads 4
Then I saw this error:
"BLAST Database error: Argument "query". File is not accessible:"
How can I solve this problem?
Thanks for your reply, but now I'm getting this error. `
`
Can you post the cmdline you try to run again ?
this error points to the fact blast can't access the DB files, and looking at the initial cmdline it seems there was already an issue with that as well. There it looks like cow.faa is the DB so it's a bit weird blast complains about not able to access human as DB.
Also be sure that any (protein) fasta file you wish to blast again is correctly formatted to be used by blast as DB.
Thank you for answer