Skip to content

Commit

Permalink
Update verify_blast.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gregdenay committed Jun 17, 2024
1 parent a0d5400 commit a38fb77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/recipes/verify_blast.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ an ancestor of `target`, in which case the result did not reach the expected res
or its descendant or the target itself, in which case the required resolution is attained:

``` py
not tax.isAncestorOf(target.taxid, tax.lca([agreement, 9913], ignore_missing=True)) # (1)!
not tax.isAncestorOf( # (1)!
target.taxid,
tax.lca([agreement, 9913], ignore_missing=True)
)
```

1. We added `not` in order to have the results in the same form as previously.

0 comments on commit a38fb77

Please sign in to comment.