fai_close {WhopGenome} | R Documentation |
Closes a file previously opened with fai_open
fai_close( faifh )
faifh |
A FAIhandle as returned by fai_open |
Use .Call("FAI_close", faifh ) to eliminate the slight overhead of using the R wrapper function.
TRUE if call succeeds, FALSE if it fails.
Ulrich Wittelsbuerger
fai_open
## ## Example : ## faifile <- system.file("extdata", "ex.fasta", package = "WhopGenome") faifh <- fai_open( faifile ) stopifnot( !is.null(faifh) ) fai_close( faifh )