Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausVigo committed Nov 8, 2024
1 parent 43257c5 commit bb7e092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/plotAnc.R
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ plotSeqLogo <- function(x, node=getRoot(x$tree), start=1, end=10,
scheme="Ape_NT", ...){
stopifnot(inherits(x, "ancestral"))
chk <- requireNamespace("ggseqlogo", quietly = TRUE)
if (!chk) stop("package ggseqlogo needs to be not installed!\n")
if (!chk) stop("package ggseqlogo needs to be installed!\n")
type <- attr(x$data, "type")
tree <- x$tree
df <- as.data.frame(x)
Expand Down

0 comments on commit bb7e092

Please sign in to comment.