Skip to content

Commit

Permalink
fix cqc_delete #7
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejiang committed Jan 22, 2023
1 parent 30ff8a9 commit 72948d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Type: Package
Title: Quality control and standardization of cytometry data
Version: 0.99.2
Author: Mike Jiang, Jake Wagner, Greg Finak
Maintainer: Mike Jiang <[email protected]>
Maintainer: Mike Jiang <[email protected]>
Description: Provides quality control, quality assessment, and data standardization tools for cytometry.
Depends: R (>= 3.5.0)
Imports:
Expand Down
2 changes: 1 addition & 1 deletion R/cqc_fix.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ cqc_delete.cytoframe <- function(x, value, type, ...) {
if (type == "channel") {
cols <- flowWorkspace::colnames(x)
j <- which(!cols %in% value)
flowWorkspace:::subset_cytoframe_by_cols(x@pointer, j - 1)
flowWorkspace:::subset_cytoframe_by_cols(x@pointer, as.integer(j - 1))
} else if (type == "marker") {
cf_rename_marker(x, value, "")
} else if (type == "keyword") {
Expand Down

0 comments on commit 72948d1

Please sign in to comment.