wd_get: Return working directory

Description Usage Arguments Value Examples

View source: R/args.R

Description

Utility function for determining the working directory from arglist. The working directory can be determined from the arglist either by a key:value or an index. For example, the working directory may be determined by the key -wd in which case this function will identify whether this key exists in the arglist and will return its corresponding value. Alternatively, the working directory may be determined by the first argument (e.g. an input file), in which case setting i=1 will return the first argument in the arglist. If an input file is returned, a user can use dirpath_get to convert the file path to a directory path. If both key and i are provided, key takes precedence. If no key or i is provided and/or no working directory is found in the arguments, the function will return the R session's working directory. If no arguments are provided, returns empty character vector.

Usage

1
wd_get(arglist, key = NULL, i = NULL)

Arguments

arglist

Arguments as character vector

key

Argument key identifying the working directory, e.g. -wd

i

Index in the arglist that determines the working directory, e.g. 1.

Value

Character

Examples

1
2
3
4
5
6
7
library(outsider.base)
# wd is determined by key argument
arglist <- c('-a', 10, '-wd', 'path/to/wd', '-b', 'model2')
(wd_get(arglist = arglist, key = '-wd'))
# wd is determined by an index
arglist <- c('path/to/wd', '-a', 10, '-b', 'model2')
(wd_get(arglist = arglist, i = 1))

outsider.base documentation built on April 19, 2021, 1:06 a.m.