Skip to content
Snippets Groups Projects
Commit 99c8b9ac authored by Luke Zappia's avatar Luke Zappia
Browse files

Fix where simpleSimulate stores params

Fixes #72
parent d6d7dba6
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
* Add Kersplat simulation! Still experimental but is useable.
* Check for counts assay when estimating from SingleCellExperiment objects
(Fixes #82)
* Fix where simpleSimulate stores parameters (Fixes #72)
### Version 1.9.7.9019 (2019-10-11)
......
......@@ -62,7 +62,7 @@ simpleSimulate <- function(params = newSimpleParams(), verbose = TRUE, ...) {
sim <- SingleCellExperiment(assays = list(counts = counts),
rowData = features,
colData = cells,
metadata = list(params = params))
metadata = list(Params = params))
return(sim)
}
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