Skip to content

Commit

Permalink
Added comment on the collapse of bootstrap trees for Bayesian bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericlemoine committed Nov 8, 2024
1 parent 89e51fd commit 79ed6d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -3291,7 +3291,8 @@ void Bootstrap(t_tree *tree)
boot_tree);

if(tree->io->do_boot) Compare_Bip(tree,boot_tree,NO,-1.0);
else if(tree->io->do_bayesboot) Compare_Bip(tree,boot_tree,NO,0.1/n_site);
// We consider only branches of the boot tree that are longer than 0.1/n_site
else if(tree->io->do_bayesboot) Compare_Bip(tree,boot_tree,NO,0.1/n_site);
else if(tree->io->do_tbe) Compare_Bip_Distance(tree, boot_tree);
else assert(FALSE);

Expand Down

0 comments on commit 79ed6d6

Please sign in to comment.