Skip to content
Snippets Groups Projects
Verified Commit 36fb5d2c authored by Laurent Modolo's avatar Laurent Modolo
Browse files

kmerclust.R: fix typo

parent c92da733
No related branches found
No related tags found
No related merge requests found
......@@ -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"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment