From 1267b717c883bd986408e1ffc3d8d0810706f39f Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent.modolo@ens-lyon.fr>
Date: Tue, 12 Dec 2023 16:02:20 +0100
Subject: [PATCH] kmerclust_boot.R: fix typo

---
 src/bin/kmerclust_boot.R | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/kmerclust_boot.R b/src/bin/kmerclust_boot.R
index f2ecc17..a0a5aa4 100644
--- a/src/bin/kmerclust_boot.R
+++ b/src/bin/kmerclust_boot.R
@@ -11,6 +11,6 @@ res <- count %>%
   ) %>%
   dplyr::filter(count_m + count_f > 0) %>%
   as.matrix() %>%
-  poiss_compare_models(count, nboot = as.numeric(args[2]) * 2, nbatch = 100, max_iter = 1e4, bootsize = 1, core = as.numeric(args[2]))
+  poiss_compare_models(nboot = as.numeric(args[2]) * 2, nbatch = 100, max_iter = 1e4, bootsize = 1, core = as.numeric(args[2]))
 save(res, file = paste0(args[1], "_boot_", args[3], ".Rdata"))
 
-- 
GitLab