Description Usage Arguments Details Value Note Examples
Loads VCFs files
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | loadVCFs(
vcf.files,
sample.names = NULL,
cnvs.gr,
min.total.depth = 10,
regions.to.exclude = NULL,
vcf.source = NULL,
ref.support.field = NULL,
alt.support.field = NULL,
list.support.field = NULL,
homozygous.range = c(90, 100),
heterozygous.range = c(28, 72),
exclude.indels = TRUE,
genome = "hg19",
exclude.non.canonical.chrs = TRUE,
verbose = TRUE
)
|
vcf.files |
vector of VCFs paths. Both .vcf and .vcf.gz extensions are allowed. |
sample.names |
Sample names vector containing sample names for each |
cnvs.gr |
|
min.total.depth |
Minimum total depth. Variants under this value will be excluded. (Defaults to 10) |
regions.to.exclude |
A |
vcf.source |
VCF source, i.e., the variant caller used to generate the VCF file. If set, the |
ref.support.field |
Reference allele depth field. (Defaults to NULL) |
alt.support.field |
Alternative allele depth field. (Defaults to NULL) |
list.support.field |
Allele support field in a list format: reference allele, alternative allele. (Defaults to NULL) |
homozygous.range |
Homozygous range. Variants not in the homozygous/heterozygous intervals will be excluded. (Defaults to |
heterozygous.range |
Heterozygous range. Variants not in the homozygous/heterozygous intervals will be excluded. (Defaults to |
exclude.indels |
Whether to exclude indels when loading the variants. TRUE is the recommended value given that indels frequency varies in a different way than SNVs. (Defaults to TRUE) |
genome |
The name of the genome. (Defaults to "hg19") |
exclude.non.canonical.chrs |
Whether to exclude non canonical chromosomes (Defaults to TRUE) |
verbose |
Whether to show information messages. (Defaults to TRUE) |
Loads VCF files and computes alt allele frequency for each variant. It uses
loadSNPsFromVCF
function load the data and identify the
correct VCF format for allele frequency computation.
If sample.names is not provided, the sample names included in the VCF itself will be used. Both single-sample and multi-sample VCFs are accepted, but when multi-sample VCFs are used, sample.names parameter must be NULL.
If vcf is not compressed with bgzip, the function compresses it and generates the .gz file. If .tbi file does not exist for a given VCF file, the function also generates it. All files are generated in a temporary folder.
A list where names are the sample names, and values are the GRanges
objects for each sample.
Important: Compressed VCF must be compressed with [bgzip ("block gzip") from Samtools htslib](http://www.htslib.org/doc/bgzip.html) and not using the standard Gzip utility.
1 2 3 4 5 6 7 8 | # Load CNVs data (required by loadVCFs to speed up the load process)
cnvs.file <- system.file("extdata", "DECoN.CNVcalls.csv", package = "CNVfilteR", mustWork = TRUE)
cnvs.gr <- loadCNVcalls(cnvs.file = cnvs.file, chr.column = "Chromosome", start.column = "Start", end.column = "End", cnv.column = "CNV.type", sample.column = "Sample")
# Load VCFs data
vcf.files <- c(system.file("extdata", "variants.sample1.vcf.gz", package = "CNVfilteR", mustWork = TRUE),
system.file("extdata", "variants.sample2.vcf.gz", package = "CNVfilteR", mustWork = TRUE))
vcfs <- loadVCFs(vcf.files, cnvs.gr = cnvs.gr)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.