From 50c2fce1334427b05728ac9b9cf455473f6f2f19 Mon Sep 17 00:00:00 2001 From: Tianjian Date: Fri, 6 Sep 2024 18:28:42 +0200 Subject: [PATCH] Fix parameter name --- R/edd_stat_utilities.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/edd_stat_utilities.R b/R/edd_stat_utilities.R index 7b39d49..5961a83 100644 --- a/R/edd_stat_utilities.R +++ b/R/edd_stat_utilities.R @@ -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") {