Skip to content

Commit

Permalink
Fix documentation issue in Summary method
Browse files Browse the repository at this point in the history
  • Loading branch information
alanocallaghan committed Nov 20, 2023
2 parents 1c8eab5 + 9507b7e commit 39b141d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: BASiCS
Type: Package
Title: Bayesian Analysis of Single-Cell Sequencing data
Version: 2.13.5
Date: 2023-09-20
Version: 2.15.1
Date: 2023-11-20
Authors@R: c(person("Catalina", "Vallejos", role=c("aut", "cre"),
email="[email protected]",
comment=c(ORCID = "0000-0003-3638-1960")),
Expand Down
6 changes: 4 additions & 2 deletions R/Methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#'
#' Data <- makeExampleBASiCS_Data()
#' Chain <- BASiCS_MCMC(Data, N = 50, Thin = 2, Burn = 2, Regression = FALSE)
#'
#'|
#' @author Catalina A. Vallejos \email{cnvallej@@uc.cl}
#'
#' @rdname BASiCS_Chain-methods
Expand Down Expand Up @@ -127,6 +127,8 @@ setMethod(
#' @param x A \code{\linkS4class{BASiCS_Chain}} object.
#' @param prob \code{prob} argument for \code{\link[coda]{HPDinterval}}
#' function.
#' @param ... Unused, only included for consistency with the generic.
#' @param na.rm Unused, only included for consistency with the generic.
#'
#' @return An object of class \code{\linkS4class{BASiCS_Summary}}.
#'
Expand All @@ -140,7 +142,7 @@ setMethod(
#' @export
setMethod("Summary",
signature = "BASiCS_Chain",
definition = function(x, prob = 0.95) {
definition = function(x, ..., prob = 0.95, na.rm = FALSE) {
param_ind <- !names(x@parameters) %in% c(
"designMatrix",
"RefFreq",
Expand Down
2 changes: 1 addition & 1 deletion man/BASiCS_Chain-methods.Rd

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

6 changes: 5 additions & 1 deletion man/Summary-BASiCS_Chain-method.Rd

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

0 comments on commit 39b141d

Please sign in to comment.