R/make.random.string.r

Defines functions make.random.string

Documented in make.random.string

#' @title make.random.string
#' @description unknown
#' @family abysmally documented
#' @author  unknown, \email{<unknown>@@dfo-mpo.gc.ca}
#' @export
  make.random.string = function(x="_") {
    rand.seq = floor(runif(1)*10^9)
    out = paste( x, rand.seq, sep="_")
    return(out)
  }
AtlanticR/bio.utilities documentation built on June 21, 2020, 7:43 p.m.