Description Usage Arguments Value Author(s) References See Also Examples
bgzip
compresses tabix (e.g. SAM or VCF) or FASTA files
to a format that allows indexing for later fast random-access.
1 2 3 4 5 6 |
file |
A character(1) path to an existing uncompressed or gz-compressed file. This file will be compressed. |
dest |
A character(1) path to a file. This will be the compressed
file. If |
overwrite |
A logical(1) indicating whether |
The full path to dest
.
Martin Morgan <mtmorgan@fhcrc.org>
http://samtools.sourceforge.net/
1 2 3 4 | from <- system.file("extdata", "ex1.sam", package="Rsamtools",
mustWork=TRUE)
to <- tempfile()
zipped <- bgzip(from, to)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.