Hi Will,
I'm just starting with your programme, and I have a question that I hope isn't going to be too annoying....
I want to generate a plant phylogeny with ~261 taxa. I've tried to make a constraint tree using pez and the phylogeny from Zanne et al (2014), using the code you sent someone else on the list (below), but it seems that none of my species are in the tree, so I end up with a tree with nothing in it. My species list is attached - I tried to follow the format from the demo examples, but perhaps it's not correct?
#Load pez package
require(pez)
#Load phylogeny and species
tree <- read.tree("Vascular_Plants_rooted.dated.tre")
species <- read.delim("veg_names_final.csv",
as.is=TRUE)[,1]
#Make tree and drop unwanted species
tree <- congeneric.merge(tree, species)
tree <- drop.tip(tree, setdiff(tree$tip.label, species))
Any help you could give me would be great,
Bec