From 7c10a6ab1027b74c6787713d2f21436aaad6a16f Mon Sep 17 00:00:00 2001 From: dyammons <91163228+dyammons@users.noreply.github.com> Date: Sun, 20 Feb 2022 11:26:28 -0700 Subject: [PATCH] Update score.R The call of the colcenter function had a capitalization discrepancy, so I corrected the call of the function from "colCenter" to "colcenter". --- R/score.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/score.R b/R/score.R index 678c5b3..8a1ddfa 100755 --- a/R/score.R +++ b/R/score.R @@ -43,7 +43,7 @@ # Center? if (center) { - s.mat = colCenter(s.mat) + s.mat = colcenter(s.mat) } return(s.mat)