R/sel.coeffile.R

Defines functions sel.coeffile

Documented in sel.coeffile

# 1.7.2009
# Select coefficient file from those available

sel.coeffile <- function(fstring = "coef") {

  temp <- data(package = "bio.infer")
  flist <- temp$results[,3]

  incvec <- substring(flist, 1, 4) == substring(fstring,1,4)

  flist <- flist[incvec]

  fsel <- tk_select.list(flist, title = "Available coefficient files")

  return(fsel)
}

Try the bio.infer package in your browser

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

bio.infer documentation built on Sept. 2, 2020, 5:08 p.m.