Hi!
I have a tree file in newick format that looks a bit like this:
(((A:0.5,B:0.5)30:0.3),((((C:0.3,D:0.6)80:0.4),F:0.3)100:0.2));
All the numbers between 0 and 1 are branch lengths.
The 30, 80, and 100 are bootstrap support values.
What I like to do is with a command or script or program, delete all bootstrap support values lower then 70. Thus, the resulting newick tree will look like.
(((A:0.5,B:0.5):0.3),((((C:0.3,D:0.6)80:0.4),F:0.3)100:0.2));
I feel like it should be quiet easy, but I simply can't get it.