R/check_install_ok.R

Defines functions check_install_ok

check_install_ok <- function() {
  los <- get_os()
  kmc_dir <- get_kmc_dir()

  kmc <- "kmc"
  if (los == "Windows") kmc <- "kmer_counter.exe"
  kmcc <- file.path(kmc_dir, kmc)
  kmc_ok <- file.exists(kmcc)
  return(kmc_ok)
}
c5sire/kmerize documentation built on June 7, 2020, 9:26 p.m.