Skip to content

Commit

Permalink
Fix parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
EvoLandEco committed Sep 6, 2024
1 parent 3470eba commit 50c2fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/edd_stat_utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ calculate_tree_stats <- function(phy = NULL, min_size = 3, method = "treestats",
} else if (metric == "TCI") {
return(treestats::tot_coph(phy, normalization = "yule"))
} else if (metric == "Steps") {
return(treestats::imbalance_steps(phy, normalize = TRUE))
return(treestats::imbalance_steps(phy, normalization = TRUE))
} else if (metric == "Branch") {
return(calculate_branch_colless(phy))
} else if (metric == "B1") {
Expand Down

0 comments on commit 50c2fce

Please sign in to comment.