-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi,when I was ready to simulate the pseudo bulk samples using 'custom' scenario, it reported an error.
Error: BiocParallel errors
1 remote errors, element index: 1
1 unevaluated and other errors
first remote error: invalid 'type' (character) of argument
#mycode:
simulation <- SimBu::simulate_bulk(data = ds,
scenario = "custom",
custom_scenario_data = cell_pt0,
scaling_factor = "NONE",
ncells=3000,
nsamples = 2,
BPPARAM = BiocParallel::MulticoreParam(workers = 4),
run_parallel = F)
############
However, I can run the next code successfully when use the same data
#mycode2:
simulation <- SimBu::simulate_bulk(data = ds,
scenario = "random",
custom_scenario_data = cell_pt0,
scaling_factor = "NONE",
ncells=2000,
nsamples = 1,
BPPARAM = BiocParallel::MulticoreParam(workers = 4),
run_parallel = TRUE)
Now,how to deal with the problem?