We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test_that("BEAST2 freezes when treelog file already exists", { skip("Issue 50, Issue #50") if (!is_beast2_installed()) return() beast2_xml_filename <- tempfile( pattern = "beast2_", tmpdir = rappdirs::user_cache_dir(), fileext = ".xml" ) beautier::create_beast2_input_file_from_model( input_filename = beautier::get_fasta_filename(), output_filename = beast2_xml_filename, inference_model = beautier::create_test_inference_model( mcmc = beautier::create_test_mcmc( screenlog = beautier::create_screenlog(filename = "") ) ) ) testit::assert(file.exists(beast2_xml_filename)) # First run works fine, takes approx 1 sec on my computer beastier::run_beast2_from_options( beastier::create_beast2_options( input_filename = beast2_xml_filename, overwrite = FALSE, verbose = TRUE ) ) # Second run causes BEAST2 to freeze beastier::run_beast2_from_options( beastier::create_beast2_options( input_filename = beast2_xml_filename, overwrite = FALSE, verbose = TRUE ) ) })
The text was updated successfully, but these errors were encountered:
Expose #50
c673b28
8e725b0
No branches or pull requests
The text was updated successfully, but these errors were encountered: