Learn R Programming

rCNV (version 1.3.0)

exportVCF: Export VCF files

Description

A function to export tables/matrices in VCF format to VCF files

Usage

exportVCF(out.vcf, out.path, compress = TRUE)

Value

Exports a vcf file to a given destination

Arguments

out.vcf

a matrix or data frame in vcf file format to be exported

out.path

a character string of output path for the vcf file; should end in the name as the vcf file and .vcf. See examples

compress

logical. whether to compress the output file. If TRUE, the file will be .gz compressed

Author

Piyal Karunarathne

Examples

Run this code
if (FALSE) vcf.file.path <- paste0(path.package("rCNV"), "/example.raw.vcf.gz")
vcf <- readVCF(vcf.file.path)
exportVCF(vcf,"../exVcf.vcf")

Run the code above in your browser using DataLab