This function allows you to download a PharmacoSet object for use with this
package. The PharmacoSets have been extensively curated and organised within
a PharacoSet class, enabling use with all the analysis tools provided in
PharmacoGx. User availablePSets to discover which PSets are available.
Usage
downloadPSet(
  name,
  saveDir = tempdir(),
  pSetFileName = NULL,
  verbose = TRUE,
  timeout = 600
)Arguments
- name
 Characterstring, the name of the PhamracoSet to download. Note that this is not the dataset name, but the PSet name - dataset names are not guaranteed to be unique.- saveDir
 Characterstring with the folder path where the PharmacoSet should be saved. Defaults totempdir(). Will create directory if it does not exist.- pSetFileName
 characterstring, the file name to save the dataset under- verbose
 boolShould status messages be printed during download. Defaults to TRUE.- timeout
 numericParameter that lets you extend R's default timeout for downloading large files. Defaults for this function to 600.
Warning
BREAKING CHANGES - this function now defaults to tempdir() as the download
path! You must specify a saveDir or manually save the PSet if you want
your download to persist past your current R session.`
Examples
if (FALSE) {
    if (interactive()) downloadPSet("CTRPv2_2015")
}