Skip to content

Commit

Permalink
fix duplicate barcode cellset duplication
Browse files Browse the repository at this point in the history
Signed-off-by: German Beldorati Stark <[email protected]>
  • Loading branch information
gerbeldo committed Nov 17, 2023
1 parent 587b026 commit 4429aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline-runner/R/qc-7-embed_and_cluster.R
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ detect_variable_types <- function(cl_metadata) {
# remove samples var, useless from this point on
clm_cols <- grep("^samples$", clm_cols, value = T, invert = T)

clm_cols <- c(clm_cols, "duplicate_barcode")
clm_cols <- union(clm_cols, "duplicate_barcode")

return(list(CLM = clm_cols, CLMPerSample = clm_per_sample_cols))
}
Expand Down

0 comments on commit 4429aba

Please sign in to comment.