start_r_analysis_skeleton()
copies the files
to the destination_directory
on your local maachine.
start_r_analysis_skeleton(
project_name = "new-project-analysis",
destination_directory = "~/analysis"
)
start_cdw_skeleton_1(
project_name = "new-project-cdw",
destination_directory = "~/cdw"
)
start_neonatology_1(
project_name = "new-project-neonatology",
destination_directory = "~/neonatology"
)
Currently, three types of project are supported:
r-analysis-skeleton
cdw-sekeleton-1
start_neonatology_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.
destination
: the file's location in the new project.
source
: the location where the file is copied from.
library(pluripotent)
if (FALSE) {
start_r_analysis_skeleton("new-project", "./data-public/testing")
start_cdw_skeleton_1()
start_cdw_skeleton_1("thumann-awesomeness-4")
start_neonatology_1("deshea-awesomeness-4")
}