read_vcf | R Documentation |
MAF file is more recommended. In this function, we will mimic
the MAF object from the key c(1, 2, 4, 5, 7)
columns of VCF file.
read_vcf(
vcfs,
samples = NULL,
genome_build = c("hg19", "hg38", "T2T", "mm10", "mm9", "ce11"),
keep_only_pass = FALSE,
verbose = TRUE
)
vcfs |
VCF file paths. |
samples |
sample names for VCF files. |
genome_build |
genome build version like "hg19". |
keep_only_pass |
if |
verbose |
if |
a MAF.
read_maf, read_copynumber
vcfs <- list.files(system.file("extdata", package = "sigminer"), "*.vcf", full.names = TRUE)
maf <- read_vcf(vcfs)
maf <- read_vcf(vcfs, keep_only_pass = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.