vcf_isSNP: Determines whether the last vcf_parse-call returned a SNP...

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

View source: R/misc.R

Description

Determines whether the last vcf_parse/VCF_parse-call returned a SNP (instead of InDel)

Usage

1
vcf_isSNP(vcff)

Arguments

vcff

VCF file handle

Details

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

Value

None.

Author(s)

Ulrich Wittelsbuerger

See Also

vcf_isINDEL

Examples

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

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