# HG changeset patch # User vandelj # Date 1601023966 0 # Node ID b9ef036de8180bbe2f1f26f6de8dc5fa130fe950 # Parent 0435f94d27a76e3a9fba3fdf0c45165f0fe84ed9 "planemo upload for repository https://github.com/juliechevalier/GIANT/tree/master commit 89b7d0e8812f53222691cffe29bd48be6519829d" diff -r 0435f94d27a7 -r b9ef036de818 src/utils.R --- a/src/utils.R Wed Sep 09 10:28:54 2020 +0000 +++ b/src/utils.R Fri Sep 25 08:52:46 2020 +0000 @@ -18,7 +18,7 @@ distExtended <- function(x,method) { if(method %in% c("euclidean", "maximum", "manhattan", "canberra", "binary", "minkowski"))return(dist(x,method = method)) if(method %in% c("pearson", "spearman", "kendall"))return(as.dist(1-cor(t(x),method=method))/2) - if(method %in% c("absPearson", "absSpearman", "absKendall"))return(as.dist(1-abs(cor(t(x),method=method)))) + if(method %in% c("absPearson", "absSpearman", "absKendall"))return(as.dist(1-abs(cor(t(x),method=tolower(substr(method,4,15)))))) return(NULL) }