R/rescale_tree.R

Defines functions rescale_tree

rescale_tree <-
function(tree){
  tree$edge.length <- tree$edge.length/sum(tree$edge.length)
  return(tree)}
BPerezLamarque/HOME documentation built on May 17, 2023, 7:02 a.m.