Nothing
#' Determine if the \code{inference_model} uses tip dating.
#'
#' Determine if the \code{inference_model} uses tip dating
#' @inheritParams default_params_doc
#' @return TRUE if the \code{inference_model} uses tip dating,
#' FALSE otherwise
#' @author Richèl J.C. Bilderbeek
#' @examples
#' check_empty_beautier_folder()
#'
#' # Yes, has tip dating
#' has_strict_clock_model(
#' create_inference_model(
#' tipdates_filename = get_beautier_path("test_output_0_tipdates.tsv")
#' )
#' )
#'
#' # No tip dating
#' has_strict_clock_model(
#' create_inference_model()
#' )
#'
#' check_empty_beautier_folder()
#' @export
has_tip_dating <- function(inference_model) {
check_inference_model(inference_model)
!is_one_na(inference_model$tipdates_filename)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.