Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
wxicu committed Mar 15, 2024
1 parent ec26a61 commit 022afd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/donor_match.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ parser$add_argument("--outputdir", help = "Output directory. ")
args <- parser$parse_args()

convert2binary <- function(result_csv, method_name, min_cell) {
method_assign <- result_csv %>% select(any_of("Barcode", method_name))
method_assign <- result_csv %>% select(all_of(c("Barcode", method_name)))
donor_id <- setdiff(
unique(method_assign[[method_name]]),
c(NA, "negative", "doublet")
Expand Down

0 comments on commit 022afd4

Please sign in to comment.