Add Description
Path to the vcf file
ID of the sample to select from VCF. If NULL, then the
first sample will be selected. Default NULL.
Rename the sample to this value when extracting variants.
If NULL, then the sample will be named according to ID.
Some algoriths will save the name of the
sample in the ##SAMPLE portion of header in the VCF (e.g.
##SAMPLE=<ID=TUMOR,SampleName=TCGA-01-0001>). If the ID is specified via the
id parameter ("TUMOR" in this example), then sample_field can
be used to specify the name of the tag ("SampleName" in this example).
Default NULL.
If set to TRUE, the file name will be used
as the sample name.
Only used if filename_as_id is set to
TRUE. If set to TRUE, the file extention will be stripped
from the filename before setting the sample name.
If a character vector is given, then all the strings
in the vector will removed from the end of the filename before setting the
sample name. Default c(".vcf",".vcf.gz",".gz")
Exclude variants that do not have a PASS in the
FILTER column of the VCF. Default TRUE.
Multialleles are when multiple alternative variants
are listed in the same row in the vcf. One of "expand" or
"exclude". If "expand" is selected, then each
alternate allele will be given their own rows. If "exclude" is
selected, then these rows will be removed. Default "expand".
Optionally extract additional fields from the INFO
section of the VCF. Default NULL.
Attempt to automatically fix VCF file formatting errors.
Returns a data.table of variants extracted from a vcf
vcf <- system.file("extdata", "public_LUAD_TCGA-97-7938.vcf",
package = "musicatk")
variants <- extract_variants_from_vcf_file(vcf_file = vcf)