View source: R/diagnostic-qc-checks.R
perSegChrQC | R Documentation |
Plots the summary statistics of segments that are generated by 'sgcocaller' https://gitlab.svi.edu.au/biocellgen-public/sgcocaller which have been detected by finding consequtive viter states along the list of SNP markers.
perSegChrQC(
sampleName,
chroms = c("chr1", "chr7", "chr15"),
path,
barcodeFile = NULL,
maxRawCO = 10
)
sampleName, |
the name of the sample to parse which is used as prefix for finding relevant files for the underlying sample |
chroms, |
the vector of chromosomes |
path, |
the path to the files, with name patterns *chrom_vi.mtx, *chrom_viSegInfo.txt, end with slash |
barcodeFile, |
defaults to NULL, it is assumed to be in the same directory as the other files and with name sampleName_barcodes.txt |
maxRawCO, |
if a cell has more than 'maxRawCO' number of raw crossovers called across a chromosome, the cell is filtered out#' |
It provides guidance in filtering out close double crossovers that are not likely biological but due to technical reasons as well as crossovers that are supported by fewer number of SNPs at the ends of the chromosomes.
Histogram plots for statistics summarized across all Viterbi state segments
Ruqian Lyu
demo_path <- system.file("extdata",package = "comapr")
s1_rse_qc <- perSegChrQC(sampleName="s1",
chroms=c("chr1"),
path=demo_path, maxRawCO=10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.