vcf_getfieldnames {WhopGenome} | R Documentation |
Return a vector with the field names used in the VCF file.
vcf_getfieldnames(vcff)
vcff |
VCF file handle |
Use .Call("VCF_getFieldNames", vcff ) to eliminate the overhead of using the R wrapper function.
A vector of strings representing the field names present in the VCF file.
Ulrich Wittelsbuerger
vcffile <- vcf_open( system.file( "extdata", "ex.vcf.gz" , package="WhopGenome") ) vcf_getfieldnames( vcffile )