Entering edit mode
5.7 years ago
Kumar
▴
120
Hi all,
I have been making non-redundant sequence database for BLAST analysis. Therefore, I have used stand alone emboss-skipredundant tool. It works perfectly, but the output sequence fasta headers been renamed as EMBOSS1, EMBOSS2 .....etc. However, I need to have the original fasta headers in the output file. So, could anyone help me to to do the same.
Thanks in advance
Thank you genomax, I have used the following command line, but it shows error as follows
You just need to use
-feature
. Including that should set the feature to on. So it acts as atoggle
.BTW: How did your fasta headers get renamed? I tested a small sample and mine did not.
I used the following command and got the response like this on the terminal,
The fasta headers have been changed like this,
online EMBOSS-skip redundant server also showing error like as `
What do your original headers look like (post output of
grep "^>" your.fasta | head -5
). It is possible that you have spaces in your fasta headers and the part before the first space is not unique across your sequences. That may be the reason why the headers are being changed.In my test, the headers where left alone.
Thank you genomax, As you said, header changes happened because of the space in my input fasta sequence headers. Once, I remove the space, its retains the original header.