View source: R/mutFilterNormalDP.R
mutFilterNormalDP | R Documentation |
Filter dbsnp/non-dbsnp variants based on their normal depth. Variants in dbSNP database should have normal depth >= 19, while non-dbSNP variants should have normal depth >= 8 to avoid being filtered.
mutFilterNormalDP(maf, dbsnpCutoff = 19, nonCutoff = 8, verbose = TRUE)
maf |
An MAF data frame, generated by |
dbsnpCutoff |
Cutoff of normal depth for dnSNP variants. Default: 19. |
nonCutoff |
Cutoff of normal depth for non-dnSNP variants. Default: 8. |
verbose |
Whether to generate message/notification during the filtration process. Default: TRUE. |
An MAF data frame where some variants has N tag in CaTag column for Normal depth filtration.
maf <- vcfToMAF(system.file("extdata",
"WES_EA_T_1_mutect2.vep.vcf", package="CaMutQC"))
mafF <- mutFilterNormalDP(maf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.