bgzf_compress {WhopGenome} | R Documentation |
Write contents of file <infilename> bgzip-compressed to file named <outfilename>.
bgzf_compress( infilename, outfilename )
infilename |
Name of file to read data from for compression |
outfilename |
Name of file to write compressed data to |
Compresses the file specified by <infilename> with the bgzip compression scheme, as developed by Bob Handsaker and modified by Heng Li, and creates a compressed file under the name given by <outfilename>.
TRUE if call succeeds, FALSE if it fails).
Ulrich Wittelsbuerger
## ## Example : ## gfffile <- system.file("data", "ex.gff3", package = "WhopGenome" ) gffgzfile <- paste( sep="", gfffile, ".gz" ) file.remove( gffgzfile ) bgzf_compress( gfffile , gffgzfile ) file.exists( gffgzfile )