Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RStudio addin to define new panels. #4

Open
wants to merge 11 commits into
base: devel
Choose a base branch
from
Prev Previous commit
Next Next commit
Cleaned up specific leftovers in the template.
kevinrue committed Dec 13, 2019
commit 67fc4b3bd0aa68e187fbaaf56c12310e62a85bc7
5 changes: 0 additions & 5 deletions inst/templates/NewPanel.R
Original file line number Diff line number Diff line change
@@ -25,10 +25,6 @@ setClass("__ENCODED__", contains="__PARENT__")
#' sce <- mockSCE()
#' sce <- logNormCounts(sce)
#'
#' # Spits out a NULL and a warning if no reducedDims are available.
#' sce0 <- .cacheCommonInfo(x, sce)
#' .refineParameters(x, sce0)
#'
#' # Replaces the default with something sensible.
#' sce <- runPCA(sce)
#' sce0 <- .cacheCommonInfo(x, sce)
@@ -54,7 +50,6 @@ setMethod("initialize", "__ENCODED__", function(.Object, ...) {
})

#' @export
#' @importClassesFrom SingleCellExperiment SingleCellExperiment
#' @importFrom methods callNextMethod
setMethod(".cacheCommonInfo", "__ENCODED__", function(x, se) {
callNextMethod()