Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausVigo committed Feb 14, 2024
1 parent 717f47d commit 88fa224
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ S3method(unique,dist)
S3method(unique,phyDat)
S3method(unique,splits)
S3method(update,pml)
S3method(vcov,pml)
export(AICc)
export(Ancestors)
export(CI)
Expand Down Expand Up @@ -161,7 +160,7 @@ export(h2st)
export(h4st)
export(hadamard)
export(hash)
export(keep.as.tip)
export(keep_as_tip)
export(ldfactorial)
export(lento)
export(lli)
Expand Down Expand Up @@ -231,6 +230,7 @@ export(tidy)
export(transferBootstrap)
export(treedist)
export(upgma)
export(vcov.pml)
export(wRF.dist)
export(wpgma)
export(write.nexus.dist)
Expand Down
2 changes: 1 addition & 1 deletion R/pmlPart.R
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ makePart <- function(fit, rooted, weight = ~index + genes) {
multiphyDat2pmlPart <- function(x, method="unrooted", tip.dates=NULL, ...) {
if(is.list(x) && all(sapply(x,inherits, "phyDat"))) seq <- x
else if(inherits(x, "multiphyDat")) seq <- x@seq
else stop("x must be of class 'multiphyDat' or a list of 'phyDat' objects")
else stop("x must be of class multiphyDat or a list of phyDat objects")
shared_tree <- TRUE
if (shared_tree) {
concatenate_x <- do.call(cbind.phyDat, seq)
Expand Down

0 comments on commit 88fa224

Please sign in to comment.