R/findCNVkit.R

Defines functions findCNVkit

Documented in findCNVkit

findCNVkit <- function(..., command="cnvkit.py") {
  # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  # Validate arguments
  # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  # Argument 'command':
  command <- match.arg(command)

  # Aroma-specific variable
  path <- getExternalHome("CNVKIT_HOME")

  versionPattern <- c("version"="([0-9.]+)")
  res <- findExternal(command=command, path=path, versionPattern=versionPattern, ...)

  res
} # findCNVkit()
HenrikBengtsson/aroma.seq documentation built on Feb. 15, 2021, 2:21 a.m.