Skip to content

Commit

Permalink
Update 05-control_calidad.R
Browse files Browse the repository at this point in the history
Arreglar typo (pbmc)
  • Loading branch information
Melii99 authored Sep 22, 2023
1 parent de250b8 commit 46c4ea1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 05-control_calidad.R
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,12 @@ col = "grey80"
## ----pbmc_chrMT_ayuda-------------------------------------------------------------------------------
sce.pbmc <- sce.pbmc[, which(e.out$FDR <= 0.001)]
is.mito <- grep("^MT-", rowData(sce.pbmc)$Symbol)
sce.pmbc <- addPerCellQC(sce.pbmc, subsets = list(MT = is.mito))
sce.pbmc <- addPerCellQC(sce.pbmc, subsets = list(MT = is.mito))
discard.mito <-
isOutlier(sce.pmbc$subsets_MT_percent, type = "higher")
isOutlier(sce.pbmc$subsets_MT_percent, type = "higher")
plot(
sce.pmbc$sum,
sce.pmbc$subsets_MT_percent,
sce.pbmc$sum,
sce.pbmc$subsets_MT_percent,
log = "x",
xlab = "Total count",
ylab = "Mitochondrial %"
Expand Down

0 comments on commit 46c4ea1

Please sign in to comment.