sync_files_local | R Documentation |
Copy files
from remote_path
to local_path
. Parameter files
could e.g.
be the files defined in a phenodata text file.
This functions, along with the related remove_local_files
, help to
manage local copies of e.g. mzML files of an experiment and keep them in sync
with a central file storage. A typical use case for these functions is:
mzML files are kept in a central storage. To setup or run a specific analysis
some of these files (those belonging to the experiment) should be copied to
a local copy to enable also off-line analyses. Copying files manually can be
cumbersome and error prone, this function thus helps to identify and copy
the required files. After an analysis local files might again be removed
using the remove_local_files
function.
sync_files_local(files, remote_path, local_path)
remove_local_files(files, local_path)
files |
|
remote_path |
|
local_path |
|
Johannes Rainer
##fls <- c("2018/2018_02/20180203_20000630_NEG.mzML",
## "2018/2018_02/20180203_20000703_NEG.mzML",
## "2018/2018_02/20180203_20000735_NEG.mzML")
##sync_files_local(fls, remote_path = "/Users/jo/data",
## local_path = "/Users/jo/tmp")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.