Skip to content

Commit

Permalink
cores = 4 -> cores = 2
Browse files Browse the repository at this point in the history
  • Loading branch information
zhewa committed Apr 9, 2019
1 parent dc0ddbb commit ccc3c72
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion R/celdaGridSearch.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ availableModels <- c("celda_C", "celda_G", "celda_CG")
#' paramsFixed = list(sampleLabel = celdaCGSim$sampleLabel),
#' bestOnly = TRUE,
#' nchains = 1,
#' cores = 4)
#' cores = 2)
#' @import foreach
#' @export
celdaGridSearch <- function(counts,
Expand Down
28 changes: 14 additions & 14 deletions R/data.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#' A toy count matrix for use with celda.
#' A toy count matrix for use with celda.
#'
#' @title sampleCells
#' @description A matrix of simulated gene counts.
Expand All @@ -9,18 +9,18 @@
"sampleCells"

#' An example simulated count matrix from the celda_CG model.
#'
#'
#' @title celdaCGSim
#' @format A list of counts and properties as returned from simulateCells().
#' @examples
#' @examples
#' celdaCGSim = simulateCells("celda_CG")
"celdaCGSim"

#' celda_CG results generated from celdaCGSim
#'
#'
#' @title celdaCGmod
#' @format A celda_CG object
#' @examples
#' @examples
#' celdaCGMod = celda_CG(celdaCGSim$counts,
#' K = celdaCGSim$K,
#' L = celdaCGSim$L,
Expand All @@ -37,39 +37,39 @@
#' paramsFixed = list(sampleLabel = celdaCGSim$sampleLabel),
#' bestOnly = TRUE,
#' nchains = 1,
#' cores = 4)
#' cores = 2)
"celdaCGGridSearchRes"


#' An example simulated count matrix from the celda_C model.
#'
#'
#' @title celdaCSim
#' @format A list of counts and properties as returned from simulateCells().
#' @examples
#' @examples
#' celdaCSim = simulateCells("celda_C")
"celdaCSim"

#' celda_C results generated from celdaCSim
#'
#'
#' @title celdaCMod
#' @format A celda_C object
#' @examples
#' @examples
#' celdaCMod = celda_C(celdaCSim$counts, K = celdaCSim$K, nchains = 1)
"celdaCMod"

#' An example simulated count matrix from the celda_G model.
#'
#'
#' @title celdaGSim
#' @format A list of counts and properties as returned from simulateCells()
#' @examples
#' @examples
#' celdaGSim = simulateCells("celda_G")
"celdaGSim"

#' celda_G results generated from celdaGsim
#'
#'
#' @title celdaGMod
#' @format A celda_G object
#' @examples
#' @examples
#' celdaGMod = celda_G(celdaGSim$counts, L = celdaGSim$L, nchains = 1)
"celdaGMod"

Expand Down
2 changes: 1 addition & 1 deletion man/celdaCGGridSearchRes.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/celdaGridSearch.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ccc3c72

Please sign in to comment.