This is my my blastn command that uses '/ordered.fasta' as a query and searched the nt database for matches:
blastn -query ./ordered.fasta -db nt -outfmt "6 qseqid sseqid pident length mismatch gapopen qstart qend sstart send evalue bitscore salltitles" -max_target_seqs 1 -num_threads 20 -evalue 1e-5 -out ./blast_searches/De_novo_edgeR_sig_DEGs.txt
The output file is good, but I'm wondering if anyone knows if there is a way to write out "no significant hits" (or similar) for sequences that didn't have a good match? These sequences could be important so I want them to be included in my final output file, so I can investigate them later using other databases.
Thanks in advance!
Thats a bummer. Thanks for your help though!