R/validation-paths.R
validatePathIsAbsolute.Rd
Relative paths will be detected based on the presence of wildcard character(*) in the path specification.
validatePathIsAbsolute(path)
A valid file path name.
Error in case a relative path is found, otherwise no output will be returned.
# no error if path is absolute validatePathIsAbsolute("Organism|path") #> NULL # error otherwise # validatePathIsAbsolute("Organism|*path")