CFastaReader: Hyphens are invalid and will be ignored around line 288
1
2
Entering edit mode
4.7 years ago
baurumon ▴ 30

enter image description here

Hi, I am doing reciprocal blast to find ortholog. for that i run i create database and run blastn and retrieve hit sequence fasta through awk 'BEGIN { OFS = "\n" } { print ">"$2, $3 }' blast.out > hit.fa but when i am trying to align hit.fa to reference genome database, i am getting this issue.

I used this command.--

blastn -query ~/Blast/hit.fa -db ~/Blast/omykiss/genome/omykiss -outfmt 6 -out blast_out -num_alignments 1

please help to solve it.

Thanks in advance

alignment • 3.9k views
ADD COMMENT
5
Entering edit mode
4.7 years ago
Brice Sarver ★ 3.8k

Hyphens (coding for indels relative to another sequence, from BLAST in this case) are not in {A, C, G, T, N}. You should remove them or replace them with Ns, depending on what you're trying to do.

A quick Google search reveals this was an issue in some other applications, as well.

ADD COMMENT

Login before adding your answer.

Traffic: 2510 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6