Skip to content
Snippets Groups Projects
Commit 293393ab authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

Add smash to method parameters

parent ef82bf36
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,11 @@ glmgampoi_pars <- expand_grid(
) %>%
mutate(file_name = paste0(method))
smash_pars <- expand_grid(
method = "smash",
) %>%
mutate(file_name = paste0(method))
method_pars_data <- list(
scran_pars,
seurat_pars,
......@@ -101,7 +106,8 @@ method_pars_data <- list(
rankcorr_pars,
random_pars,
difference_pars,
glmgampoi_pars
glmgampoi_pars,
smash_pars
)
method_pars <- flatten(map(method_pars_data, ~ transpose(.x, .names = .x$file_name)))
......
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