#' Reads an RAW ID header
#'
#' Header information is presided by # and separated name:value with colon
#' for example # Version: 1.0
#'
#' @param fIDfile path and file name for RAW-ID.csv file
#'
#' @importFrom utils read.csv
#'
#' @examples
#' pRAW = makeRAWtestFolder()
#' raw.readRAWIDheader(file.path(pRAW, "RAW-ID.csv"))
#'
#' @export
raw.readRAWIDheader <- function(fIDfile = 'data-raw/RAW-ID.csv') {
# return empty path if RAW ID file is not found.
if (!file.exists(fIDfile)) {
header = list(path="")
return(header)
}
df <- readLines(con <- file(fIDfile))
close(con)
h <- df[grep("^#",df)]
if (is.integer(h)) return(list(version="0.1", path=""))
h <- trimws(gsub('^#','',h))
header = setNames(as.list(trimws(sapply(strsplit(h,": "),'[[',2 ))),
trimws(sapply(strsplit(h,": "),'[[',1 )))
# un-serialize vectors
for(keys in names(header)) {
v = header[[keys]]
if (grepl(";",v)) {
header[[keys]] <- strsplit(v,";")[[1]]
}
}
header
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.