ReadAndSplitMutectVCFs {ICAMS} | R Documentation |
Read and split Mutect VCF files
Description
Read and split Mutect VCF files
Usage
ReadAndSplitMutectVCFs(
files,
names.of.VCFs = NULL,
tumor.col.names = NA,
suppress.discarded.variants.warnings = TRUE
)
Arguments
files |
Character vector of file paths to the Mutect VCF files. |
names.of.VCFs |
Optional. Character vector of names of the VCF files.
The order of names in |
tumor.col.names |
Optional. Character vector of column names in VCFs
which contain the tumor sample information. The order of names in
|
suppress.discarded.variants.warnings |
Logical. Whether to suppress warning messages showing information about the discarded variants. Default is TRUE. |
Value
A list containing the following objects:
-
SBS
: List of VCFs with only single base substitutions. -
DBS
: List of VCFs with only doublet base substitutions as called by Mutect. -
ID
: List of VCFs with only small insertions and deletions. -
discarded.variants
: Non-NULL only if there are variants that were excluded from the analysis. See the added extra columndiscarded.reason
for more details.
See Also
Examples
file <- c(system.file("extdata/Mutect-vcf",
"Mutect.GRCh37.s1.vcf",
package = "ICAMS"))
list.of.vcfs <- ReadAndSplitMutectVCFs(file)