Remove redundant thresholdScore parameter from add_multi_vc_comparisons function

Change-Id: I3a0077497f52d94e0b63d90bca0812c7e3d0c9d6
diff --git a/R/collocationAnalysis.R b/R/collocationAnalysis.R
index b7c5be6..69d2208 100644
--- a/R/collocationAnalysis.R
+++ b/R/collocationAnalysis.R
@@ -196,7 +196,6 @@
 
         multi_result |>
           add_multi_vc_comparisons(
-            thresholdScore = thresholdScore,
             missingScoreQuantile = missingScoreQuantile
           )
       }
@@ -316,7 +315,7 @@
   return(res)
 }
 
-add_multi_vc_comparisons <- function(result, thresholdScore, missingScoreQuantile = 0.05) {
+add_multi_vc_comparisons <- function(result, missingScoreQuantile = 0.05) {
   label <- node <- collocate <- NULL
 
   if (!"label" %in% names(result) || dplyr::n_distinct(result$label) < 2) {