Description Usage Arguments Details Value Author(s) See Also Examples
Recompress the SeqArray GDS file.
1 2 |
gds.fn |
the file name of SeqArray file |
compress |
the compression method, |
exclude |
a list of GDS nodes to be excluded, see details |
optimize |
if |
verbose |
if |
This function requires gdsfmt (>= v1.17.2). seqVCF2GDS
usually
takes lots of memory when the compression method "LZMA_RA.max"
,
"Ultra"
or "UltraMax"
is specified. So users could call
seqVCF2GDS(, storage.option="ZIP_RA")
first, and then recompress the
GDS file with a higher compression option, e.g., "UltraMax"
.
seqRecompress()
takes much less memory, since it recompresses data in
a GDS node each time.
ls.gdsn(gdsfile, include.hidden=TRUE, recursive=TRUE)
returns a list
of GDS nodes to be re-compressed, and users can specify the excluded nodes in
the argument exclude
.
None.
Xiuwen Zheng
1 2 3 4 5 6 | gds.fn <- seqExampleFileName("gds")
file.copy(gds.fn, "tmp.gds")
seqRecompress("tmp.gds", "LZMA")
unlink("tmp.gds")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.