R/102-preclean.R

Defines functions preclean

Documented in preclean

preclean <- function(x, targetColumns, dirt) {
  if (is.numeric(targetColumns)) {
    if (any(targetColumns < 1)) {
      stop("Only positive column numbers are allowed.\n")
    }
    if (any(targetColumns > dim(x)[2])) {
      nx <- deparse(substitute(x))
      stop("Column numbers exceed dimension of x (", nx, ").\n", sep="")
    }
    targetColumns <- colnames(x)[targetColumns]
  }
  if (!all(targetColumns %in% colnames(x))) {
    warning("Will skip unknown column names.\n")
  }
  for (target in targetColumns) {
    if (!(target %in% colnames(x))) {
      cat("\tSkipping '", target, "'\n", sep="", file=stderr())
    }
    vec <- x[,target]
    for (smudge in dirt) {
      vec <- gsub(smudge, "", vec, fixed = TRUE)
    }
    x[,target] <- vec
  }
  x
}

Try the RCytoGPS package in your browser

Any scripts or data that you put into this service are public.

RCytoGPS documentation built on Feb. 12, 2024, 3 p.m.