tabix_reopen {WhopGenome} | R Documentation |
Reopen a Tabix-indexed file if the filehandle became invalid.
tabix_reopen( tabfh )
tabfh |
Tabix handle, once returned by tabix_open |
Use .Call("tabix_reopen", tabfh ) to eliminate the slight overhead of using the R wrapper function.
Tabix file handle
Ulrich Wittelsbuerger
tabix_open
## ## Example : ## ## ## Example : ## gffgzfile <- system.file("extdata", "ex.gff3.gz", package = "WhopGenome" ) gffh <- tabix_open( gffgzfile ) gffh tabix_close( gffh ) gffh tabix_reopen( gffh ) gffh