This is a test version of Biostars. For the public version, visit https://www.biostars.org.
sorting an alignment in fasta format after the tip order in a phylogenetic tree

Dear all, I am trying to sort the sequences in a fasta file after the tip order of a phylogenetic tree containing the same sequences but arranged in a different order. Do you know any quick way to do it in R or in Biopython?

So far, I only managed to do it if by first converting the fasta file into a .csv, but this is not very efficient...

Thanks a lot, Alejandro

alignment

Hard to answer without the proper phylogenetic tree. I would say that you need to move in a list your fasta headers ordered from your phylogenetic tree (this is the hard part actually). Then, with Biopython you will be able to sort your fasta sequences according to that list.

Thanks for the answer. I will try to be more precise... I have this fasta file:

>seq1
agagaga

>seq2 cgcgcggc

>seq3 tctctctc

>seq4
acgacgcg

and I want to sort it after a text file containing this:

seq4

seq1

seq2

seq3

Do you know how to do it? Thanks a lot for your time!

1 answer

Using fasta index.

If the ID list is not long, simply paste the IDs into cmd.

samtools faidx seqs.fasta $(paste -s -d " " ids.txt) > result.fasta

Or

seqkit faidx seqs.fasta $(paste -s -d " " ids.txt) > result.fasta

For large number of IDs:

cat ids.txt | parallel -k seqkit faidx seqs.fasta {} > result.fasta

Log in to answer this question.