Hi, am having a problem executing the following
s = '(si,se,(me,(er,(ya,(out,(hy,(vi,le)))))));'
input_tree = '((((si,se),me),(er,ya)),out);'
input_tree1= dendropy.Tree.get_from_string(input_tree, 'newick')
input_taxa = input_tree1.taxon_set.labels()
nuproposed_tree = dendropy.Tree.get_from_string(s, 'newick')
taxa_2_retain= nuproposed_tree.taxon_set.get_taxa(labels = input_taxa)
pruned_supertree = dendropy.treemanip.retain_taxa(nuproposed_tree, taxa=taxa_2_retain)
########## the pruned_supertree has nothing in it... so i figured i must be using the treemanip.retain_taxa wrong
pls any help woud be useful
wasiu