Description Usage Arguments Value Author(s) Examples
Perform QC step on single cells.
1 | get_samp_QC(bambedObj)
|
bambedObj |
object returned from |
QCmetric |
A matrix containing total number/proportion of reads, total number/proportion of mapped reads, total number/proportion of mapped non-duplicate reads, and number/proportion of reads with mapping quality greater than 20 |
Rujin Wang rujin@email.unc.edu
1 2 3 4 5 6 7 8 9 10 | library(WGSmapp)
library(BSgenome.Hsapiens.UCSC.hg38)
bamfolder <- system.file('extdata', package = 'WGSmapp')
bamFile <- list.files(bamfolder, pattern = '*.dedup.bam$')
bamdir <- file.path(bamfolder, bamFile)
sampname_raw <- sapply(strsplit(bamFile, '.', fixed = TRUE), '[', 1)
bambedObj <- get_bam_bed(bamdir = bamdir,
sampname = sampname_raw,
hgref = "hg38")
QCmetric_raw = get_samp_QC(bambedObj)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.