Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inst/book/quality-control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Finally, the `altexps_ERCC_percent` column contains the percentage of reads mapp
library(SingleCellExperiment)
# Identifying the mitochondrial transcripts in our SingleCellExperiment.
location <- rowRanges(sce.416b)
is.mito <- any(seqnames(location)=="MT")
is.mito <- sapply(seqnames(location)=="MT", any)

library(scuttle)
df <- perCellQCMetrics(sce.416b, subsets=list(Mito=is.mito))
Expand Down