vcf_getfieldnames {WhopGenome}R Documentation

Return a vector with the field names used in the VCF file.

Description

Return a vector with the field names used in the VCF file.

Usage

vcf_getfieldnames(vcff)

Arguments

vcff

VCF file handle

Details

Use .Call("VCF_getFieldNames", vcff ) to eliminate the overhead of using the R wrapper function.

Value

A vector of strings representing the field names present in the VCF file.

Author(s)

Ulrich Wittelsbuerger

Examples

	vcffile <- vcf_open( system.file( "extdata", "ex.vcf.gz" , package="WhopGenome") )
	vcf_getfieldnames( vcffile )

[Package WhopGenome version 0.9.7 Index]