vcf_isINDEL {WhopGenome} | R Documentation |
Returns TRUE if the last call to vcf_parse/VCF_parse returned an InDel.
vcf_isINDEL(vcff)
vcff |
VCF file handle |
Use .Call("VCF_isInDel", vcff ) to eliminate the overhead of using the R wrapper function.
TRUE or FALSE.
Ulrich Wittelsbuerger
vcf_isSNP
vcffile <- vcf_open( system.file( "extdata", "ex.vcf.gz" , package="WhopGenome") ) vcf_parseNextSNP( vcffile ) vcf_getPos( vcffile ) vcf_isINDEL( vcffile )