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

switch to poisson clustering

parent 01cd8f9c
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,7 @@ load(file = paste0(args[1], ".Rdata"))
res <- count %>%
dplyr::select(count_m, count_f) %>%
as.matrix() %>%
compute_tpm() %>%
log() %>%
compare_models_constraint(count, nboot = as.numeric(args[2]) * 2, bootsize = nrow(count), core = as.numeric(args[2]))
poiss_compare_models(count, nboot = as.numeric(args[2]) * 2, bootsize = 1, core = as.numeric(args[2]))
save(res, file = paste0(args[1], "_boot_", args[3], ".Rdata"))
......@@ -2,7 +2,6 @@ library(kmerclust)
library(vroom)
args <- commandArgs(trailingOnly = TRUE)
data <- vroom::vroom(args[2], show_col_types = FALSE)
format(object.size(data), units = "Mb")
annotation <- parse_annotation(args[1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment