R/AddGreaterthan.R

#' @export
AddGreaterthan <- function(filename,encodestyle){
  file <- readLines(filename,encoding=encodestyle)
  noemptyindex <- which(nchar(file)!=0)
  file[noemptyindex] <- paste(">",file[noemptyindex])
  writeLines(file,filename)
}
ahorawzy/usefulr documentation built on May 9, 2019, 7:31 p.m.