tabix_reopen {WhopGenome}R Documentation

Reopen a Tabix-indexed file if the filehandle became invalid.

Description

Reopen a Tabix-indexed file if the filehandle became invalid.

Usage

tabix_reopen( tabfh )

Arguments

tabfh

Tabix handle, once returned by tabix_open

Details

Use .Call("tabix_reopen", tabfh ) to eliminate the slight overhead of using the R wrapper function.

Value

Tabix file handle

Author(s)

Ulrich Wittelsbuerger

See Also

tabix_open

Examples


##
##	Example :
##

##
##	Example :
##
gffgzfile  <- system.file("extdata", "ex.gff3.gz", package = "WhopGenome" )
gffh <- tabix_open( gffgzfile )
gffh
tabix_close( gffh )
gffh
tabix_reopen( gffh )
gffh


[Package WhopGenome version 0.9.7 Index]