Skip to content

Commit

Permalink
Fix scran_high_Mito_percent argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
lahuuki committed Jun 26, 2024
1 parent e13ed4d commit 2006346
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/add_qc_metrics.R
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ add_qc_metrics <- function(spe) {
)

## high mito percent
spe$scran_high_subsets_Mito_percent <- NA
spe$scran_high_subsets_Mito_percent[which(spe$in_tissue)] <-
spe$scran_high_Mito_percent <- NA
spe$scran_high_Mito_percent[which(spe$in_tissue)] <-
qcfilter$high_subsets_Mito_percent
spe$scran_high_subsets_Mito_percent <-
factor(spe$scran_high_subsets_Mito_percent, levels = c("TRUE", "FALSE"))
spe$scran_high_Mito_percent <-
factor(spe$scran_high_Mito_percent, levels = c("TRUE", "FALSE"))

## Find edge spots
# define variables
Expand Down

0 comments on commit 2006346

Please sign in to comment.