Wrapper function for bzip2
bzip2(
fileToBzip2,
bzip2 = "Bzip2",
keep = TRUE,
force = FALSE,
small = FALSE,
blockSize = 1,
stderr = file.path(dirname(fileToBzip2), paste0(basename(fileToBzip2),
"_Bzip2_stderr.txt")),
stdout = file.path(dirname(fileToBzip2), paste0(basename(fileToBzip2),
"_Bzip2_stdout.txt")),
useClipRConda = ifelse(is.null(getOption("CLIPflexR.condaEnv")), FALSE, TRUE),
additional_Args = NULL,
verbose = FALSE
)
path to file to bzip.
path to bzip2.
keep (don't delete) input files, TRUE (default) or FALSE.
overwrite existing output files.
use less memory (at most 2500k).
set block size to 100k .. 900k.
path to stderr file.
path to stdout file.
use conda environment installed by Herper, TRUE (default) or FALSE.
additional arguments to be passed to system call.
print messages to screen, TRUE or FALSE (default).
path to bzipped file.