Skip to content

Commit

Permalink
fix bug in vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
sdgamboa committed Apr 15, 2024
1 parent acd1551 commit 7e28949
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vignettes/articles/nsti.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ known_y <- sample(tree$tip.label, 2000)
## Get NSTI values

```{r}
nsti_x <- getNsti(tree = tree, annotated_tip_labels = known_x)
nsti_y <- getNsti(tree = tree, annotated_tip_labels = known_y)
nodes_with_taxid <- grep("^n", tree$node.label, value = TRUE, invert = TRUE)
nsti_x <- getNsti(tree = tree, annotated_tip_labels = known_x, nodes = nodes_with_taxid)
nsti_y <- getNsti(tree = tree, annotated_tip_labels = known_y, nodes = nodes_with_taxid)
```

## Plot a couple of histograms
Expand Down

0 comments on commit 7e28949

Please sign in to comment.