retrieve_file_list()
retrieve the complete list
of files to be copied into a new project, while
download_file_list()
copies the files to the destination_directory
on your local maachine.
Table of files to copy
Currently, two types of project is supported:
r-analysis-skeleton
cdw-skeleton-1
To view the files involved in each project type, refer to https://github.com/OuhscBbmc/pluripotent/inst/data/file-to-copy.csv. Each line represents one file that will be placed in the new project. The columns are
offspring
: the project type to be created.
copy
: indicator if the file should be copied. If FALSE
, the file is ignored.
destination
: the file's location in the new project.
source
: the location where the file is copied from.
library(pluripotent)
d1 <- retrieve_file_list("r-analysis-skeleton")
if (FALSE) {
download_file_list("r-analysis-skeleton", "new-project", "./data-public/testing")
}