Is the path a path to the BEAST2 jar file? Does not check if the file at that path is present
Source:R/is_jar_path.R
is_jar_path.Rd
Is the path a path to the BEAST2 jar file? Does not check if the file at that path is present
Examples
# Returns TRUE
is_jar_path("beast.jar")
#> [1] TRUE
is_jar_path("launcher.jar")
#> [1] TRUE
is_jar_path(get_default_beast2_jar_path())
#> [1] TRUE
# Returns FALSE
is_jar_path("beast")
#> [1] FALSE
is_jar_path(get_default_beast2_bin_path())
#> [1] FALSE