From 901eeea3d8c1f36c1939d65876ca143152b75090 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Thu, 12 Oct 2023 16:02:13 +0200 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 1857219..d5c9a96 100644 --- a/src/bin/kmerclust_boot.R +++ b/src/bin/kmerclust_boot.R @@ -5,7 +5,7 @@ load(file = paste0(args[1], ".Rdata")) res <- count %>% dplyr::select(count_m, count_f) %>% as.matrix() %>% - poiss_compare_models(count, nboot = as.numeric(args[2]) * 2, frac = 1e-3 bootsize = 1, core = as.numeric(args[2])) + poiss_compare_models(count, nboot = as.numeric(args[2]) * 2, frac = 1e-3, bootsize = 1, core = as.numeric(args[2])) save(res, file = paste0(args[1], "_boot_", args[3], ".Rdata")) -- GitLab