Hi, I have two fasta files which converted from sam files. They both are ~1 gb in size and I want to perform blastn keeping one as query and other as subject. I made a blast database from one fasta file using the following command :
> makeblastdb -in Ref.fa -dbtype nucl -input_type fasta -out Ref_db
Following files were created as a result :
- Ref_db.ndb
- Ref_db.nhr
- Ref_db.nin
- Ref_db.njs
- Ref_db.not
- Ref_db.nsq
- Ref_db.ntf
- Ref_db.nto
Then I split the query fasta into several chunks of ~130 mb and ran blastn with the command:
blastn -db Ref_db -query chunk0.fa -out blastout_chunk0.txt
But it's giving me the following error :
Error : mdb_env_open: No such file or directory
I don't understand what is the problem here. Could someone please help me with this ?
Thank you.
I tried the above command got this message:
How can I find out what is the exact error ?