Skip to content

Commit

Permalink
Fix for unwanted type check
Browse files Browse the repository at this point in the history
  • Loading branch information
mjsteinbaugh committed Dec 4, 2023
1 parent f9ff3cf commit 3001fcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/updateObject-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' @name updateObject
#' @author Michael Steinbaugh
#' @note Updated 2022-05-09.
#' @note Updated 2023-12-04.
#'
#' @inheritParams AcidRoxygen::params
#'
Expand Down Expand Up @@ -153,7 +153,7 @@ NULL
)
assert(is.factor(c2s))
colData[["sampleId"]] <- c2s
sampleData[["sampleId"]] <- rownames(sampleData)
sampleData[["sampleId"]] <- as.factor(rownames(sampleData))
colData <- leftJoin(x = colData, y = sampleData, by = "sampleId")
assert(
is(colData, "DataFrame"),
Expand Down
2 changes: 1 addition & 1 deletion man/plotReadsPerCell.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/updateObject.Rd

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

0 comments on commit 3001fcf

Please sign in to comment.