R/common.R

Defines functions .show_message_if_batch_size_1

.show_message_if_batch_size_1 <- function(batch_size) {
  if(batch_size == 1) {
    message("Single-threaded mode enabled. In order to speed up computations, increase defined batch_size or use a default value")
  }
}

Try the seqR package in your browser

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

seqR documentation built on Oct. 6, 2021, 1:10 a.m.