vcf_isINDEL: Determines whether the last vcf_parse-call returned a InDel...

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/misc.R

Description

Returns TRUE if the last call to vcf_parse/VCF_parse returned an InDel.

Usage

1

Arguments

vcff

VCF file handle

Details

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

Value

TRUE or FALSE.

Author(s)

Ulrich Wittelsbuerger

See Also

vcf_isSNP

Examples

1
2
3
4
	vcffile <- vcf_open( system.file( "extdata", "ex.vcf.gz" , package="WhopGenome") )
	vcf_parseNextSNP( vcffile )
	vcf_getPos( vcffile )
	vcf_isINDEL( vcffile )

WhopGenome documentation built on May 1, 2019, 10:12 p.m.