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

kmerclust.R: fix numeric convertion

parent 601b4bfb
No related branches found
No related tags found
No related merge requests found
library(kmerclust)
args <- commandArgs(trailingOnly = TRUE)
print(args)
load(file = paste0(args[1], ".Rdata"))
res <- compare_models(count, nboot = args[2] * 2, bootsize = nrow(count), core = as.numeric(args[2]))
res <- compare_models(count, nboot = as.numeirc(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.
Finish editing this message first!
Please register or to comment