Skip to content

Commit

Permalink
Update to v0.2.9
Browse files Browse the repository at this point in the history
Fixes critical bug in onto_missing().
  • Loading branch information
allenbaron committed Jun 20, 2023
1 parent 8ddc624 commit 65039b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: DO.utils
Type: Package
Title: Public Resource Utilities Designed by/for the Disease Ontology
Version: 0.2.8
Version: 0.2.9
Author: J. Allen Baron
Maintainer: J. Allen Baron <[email protected]>
Description: Generally useful tools to assess use of public resources in
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# DO.utils 0.2.9

* Fix dplyr code error in `onto_missing()`.


# DO.utils 0.2.8

## Highlights
Expand Down
2 changes: 1 addition & 1 deletion R/identify.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ onto_missing <- function(onto_path, input, what = "OMIM",
compare_by <- c("mapping" = "omim")
from_input <- dplyr::select(
from_input,
dplyr::all_of("omim", "phenotype", "location", "inheritance"),
"omim", "phenotype", "location", "inheritance",
dplyr::everything()
)
} else {
Expand Down

0 comments on commit 65039b4

Please sign in to comment.