Learn R Programming

WhopGenome (version 0.9.4)

tabix_reopen: 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

Value

Tabix file handle

Details

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

See Also

tabix_open

Examples

Run this code

##
##	Example :
##

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

Run the code above in your browser using DataLab