This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Combing multiple fasta files into one fasta for performing alignment

I have 2504 cds sequences in a fasta format which I want to combine into a single fasta file and run the alignment on them !

Help Required !!!!!!

sequencing

1 answer

Assuming your files have an common suffix (i.e 1.fasta, 2.fasta, 3.fasta...)

cat *.fasta > total.fasta

Then you can run the program of your interest (ClustalW, etc..)

Log in to answer this question.