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

kmerclust_boot.R: fix typo

parent c365873a
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,6 @@ res <- count %>% ...@@ -11,6 +11,6 @@ res <- count %>%
) %>% ) %>%
dplyr::filter(count_m + count_f > 0) %>% dplyr::filter(count_m + count_f > 0) %>%
as.matrix() %>% 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")) 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