From 36fb5d2c40511e3a5f1d7d99e17f20d92511c690 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Mon, 12 Jun 2023 10:13:22 +0200 Subject: [PATCH] kmerclust.R: fix typo --- src/bin/kmerclust.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/kmerclust.R b/src/bin/kmerclust.R index fdfc4f9..1f87616 100644 --- a/src/bin/kmerclust.R +++ b/src/bin/kmerclust.R @@ -2,5 +2,5 @@ library(kmerclust) args <- commandArgs(trailingOnly = TRUE) print(args) load(file = paste0(args[1], ".Rdata")) -res <- compare_models(count, nboot = as.numeirc(args[2]) * 2, bootsize = nrow(count), core = as.numeric(args[2])) +res <- compare_models(count, nboot = as.numeric(args[2]) * 2, bootsize = nrow(count), core = as.numeric(args[2])) save(res, file = paste0(args[1], "_boot_", args[3], ".Rdata")) -- GitLab