Skip to content

Commit

Permalink
#294 change order of gruop.by eval
Browse files Browse the repository at this point in the history
@michael-kotliar pointed out that null evaluation should go before "none"
  • Loading branch information
ncborcherding authored Dec 21, 2023
1 parent d188e6f commit 14b7a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/combineExpression.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ combineExpression <- function(input.data,
Con.df <- NULL
meta <- .grabMeta(sc.data)
cell.names <- rownames(meta)
if (group.by == "none" || is.null(group.by)) {
if (is.null(group.by) || group.by == "none") {
for (i in seq_along(input.data)) {

data <- data.frame(input.data[[i]], stringsAsFactors = FALSE)
Expand Down

0 comments on commit 14b7a82

Please sign in to comment.