R/create_temp_input_filename.R

Defines functions create_temp_input_filename

Documented in create_temp_input_filename

#' Create a temporary filename for the BEAST2 XML filename
#' @return a temporary filename, that starts with `beast2_`
#' and has extension `.xml`
#' @examples
#' check_empty_beaustier_folders()
#'
#' create_temp_input_filename()
#'
#' check_empty_beaustier_folders()
#' @author Richèl J.C. Bilderbeek
#' @export
create_temp_input_filename <- function() {
  get_beastier_tempfilename(
    pattern = "beast2_", fileext = ".xml"
  )
}
richelbilderbeek/beastier documentation built on Nov. 8, 2023, 9:29 p.m.