R/AllGenerics.R, R/plotPseudoVsAlignedCounts-methods.R
plotPseudoVsAlignedCounts.RdCompare pseudoaligned counts to aligned counts.
plotPseudoVsAlignedCounts(object, ...) # S4 method for bcbioRNASeq plotPseudoVsAlignedCounts(object, genes = NULL, title = "Pseudoaligned vs. aligned counts", ...)
| object | Object. |
|---|---|
| ... | Passthrough to |
| genes |
|
| title |
|
Currently supported for salmon or kallisto. The function will
intentionally error for datasets containing aligned counts in the primary
counts assay.
Updated 2019-09-16.
#>#>#>## Individual genes. ## Checking the most expressed aligned genes here. aligned <- assay(bcb, i = "aligned") genes <- rowSums(aligned) %>% sort %>% tail(n = 2L) %>% names() plotPseudoVsAlignedCounts(bcb, genes = genes)#>#>