From c0003a569eb0ac6e61ac1b3ef46208bdfb94aedf Mon Sep 17 00:00:00 2001 From: Simon J Greenhill Date: Fri, 15 Aug 2025 15:51:39 +1200 Subject: [PATCH] read.beast is not propagating the threading argument threads is always set to 1 (and verbose always FALSE) --- R/beast.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/beast.R b/R/beast.R index 77f8bfa..0a5e954 100644 --- a/R/beast.R +++ b/R/beast.R @@ -17,7 +17,7 @@ read.beast <- function(file, threads = 1, verbose = FALSE) { text <- readLines(file) treetext <- read.treetext_beast(text) - stats <- read.stats_beast(text, treetext, threads = 1, verbose = FALSE) + stats <- read.stats_beast(text, treetext, threads = threads, verbose = verbose) phylo <- read.nexus(file) if (length(treetext) == 1) {