Entering edit mode
13 months ago
Yarabi
•
0
Hello, I am a beginner in bioinformatics and I am currently doing gene mapping of viral RNA sequences. And I have the following question:
How can I concatenate several FASTA files without losing the ID of each one?
These files are located in different folders.
I hope you can help me, thank you very much.
what do you mean with concatenate ? concatenate the files or the entries ?
I want to concatenate the input FASTA files.
If you are referring to not losing the fasta header inside each file then that would not happen when you
cat
the files together. But you will end up with a single fasta file after this operation.