Description Usage Arguments Details Value Author(s) Examples
Write contents of file <infilename> bgzip-compressed to file named <outfilename>.
1 | 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
1 2 3 4 5 6 7 8 | ##
## Example :
##
gfffile <- system.file("data", "ex.gff3", package = "WhopGenome" )
gffgzfile <- paste( sep="", gfffile, ".gz" )
file.remove( gffgzfile )
bgzf_compress( gfffile , gffgzfile )
file.exists( gffgzfile )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.