View source: R/mutFilterQual.R
mutFilterQual | R Documentation |
Filter variants in low sequencing quality or low confidence.
mutFilterQual(
maf,
panel = "Customized",
tumorDP = 20,
normalDP = 10,
tumorAD = 5,
normalAD = Inf,
VAF = 0.05,
VAFratio = 0
)
maf |
An MAF data frame, generated by |
panel |
The sequencing panel applied on the dataset. Parameters
for |
tumorDP |
Threshold of tumor total depth. Default: 20 |
normalDP |
Threshold of normal total depth. Default: 10 |
tumorAD |
Threshold of tumor alternative allele depth. Default: 5 |
normalAD |
Threshold of normal alternative allele depth. Default: Inf |
VAF |
Threshold of VAF value. Default: 0.05 |
VAFratio |
Threshold of VAF ratio (tVAF/nVAF). Default: 0 |
An MAF data frame where some variants have Q tag in CaTag column for sequencing quality filtration
maf <- vcfToMAF(system.file("extdata",
"WES_EA_T_1_mutect2.vep.vcf", package="CaMutQC"))
mafF <- mutFilterQual(maf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.