Entering edit mode
4.1 years ago
lukhanyomakhabane
▴
30
Hello guys, can you please help me. I want to rename headers of different sequences in large FASTA file. I want to rename each individual sequence with different name, is there any easy script that can perform such purpose? PLzzz help, I am new into this field of bioinformatics.
I'm very sorry. but this is a pretty easy thing to do in any scripting language, and you aren't going to be able to get far in this field unless you know enough programming to do simple custom one-off tasks like this in some language.
See a recent thread: how to change header of fasta file and the answer in it. Sounds like you just need a different name? Change
>ASV
to get any other prefix you want.You can use
sed
too.Try searching for a few tasks done by sed, and you will learn how to make it work for this task :)
If you provide an example of sample input and sample output, we can help you better.