Skip to content

Instantly share code, notes, and snippets.

@jhcepas
Created March 15, 2017 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhcepas/5fea1a726a9e57fb00a03629efe8a968 to your computer and use it in GitHub Desktop.
Save jhcepas/5fea1a726a9e57fb00a03629efe8a968 to your computer and use it in GitHub Desktop.
Sort a fasta alignment by the order of branches in a phylogenetic tree
import re
from ete3 import SeqGroup, Tree
import sys
alg_file = sys.argv[1] # in fasta format
tree_file = sys.argv[2] # in newick format
alg = SeqGroup(alg_file)
for k,v in alg.name2id.items():
# converts ilegal newick chars from alg names.
# Comment this line if not necessary
k = re.sub('[:,();]','_', k)
alg.name2id[k] = v
tree = Tree(tree_file)
for leaf in tree:
print ">%s\n%s" %(leaf.name, alg.get_seq(leaf.name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment