vcf_close {WhopGenome} | R Documentation |
Closes the VCF file described by the given handle and prevents subsequent use.
vcf_close(vcf_filehandle)
vcf_filehandle |
A VCF filehandle returned by vcf_open |
Use .Call("VCF_close", vcf_filehandle ) to eliminate the overhead of using the R wrapper function.
None
Ulrich Wittelsbuerger
vcf_open
## ## Example: ## vcffile <- system.file( "extdata" , "ex.vcf.gz" , package="WhopGenome" ) vcffile vcffh <- vcf_open( vcffile ) vcffh ## ## vcf_close( vcffh )