Function 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
)

Arguments

path

the path where the project sits

projectName

the name of the project

studyInfo

a list object identifying the title, type and study version, defaults to setStudyInfo, see documentation

authors

a list object identifying the lead and developer authors names and emails, defaults to setStudyAuthors, see documentation.

timeline

a list object identifying the study status, start and end date, defaults to setStudyTimeline, see documentation

about

a list object identifying the study description, therapeutic area and databases, defaults to setStudyDescription, see documentation

links

a list object identifying the linked resources of the study, defaults to setStudyLinks, see documentation

tags

a list object identifying tags to the study, defauls to setStudyTags, see documentation

verbose

whether the function should provide steps, default TRUE

openProject

should the project be opened if created