newOhdsiStudy.RdFunction that initializes a new ohdsi study project environment
newOhdsiStudy(
path,
projectName = basename(path),
studyInfo = setStudyInfo(id = basename(path)),
authors = setStudyAuthors(),
timeline = setStudyTimeline(),
about = setStudyDescription(),
links = setStudyLinks(),
tags = setStudyTags(),
verbose = TRUE,
openProject = TRUE
)the path where the project sits
the name of the project
a list object identifying the title, type and study version,
defaults to setStudyInfo, see documentation
a list object identifying the lead and developer authors names and emails,
defaults to setStudyAuthors, see documentation.
a list object identifying the study status, start and end date,
defaults to setStudyTimeline, see documentation
a list object identifying the study description, therapeutic area and databases,
defaults to setStudyDescription, see documentation
a list object identifying the linked resources of the study,
defaults to setStudyLinks, see documentation
a list object identifying tags to the study,
defauls to setStudyTags, see documentation
whether the function should provide steps, default TRUE
should the project be opened if created