diff --git a/DESCRIPTION b/DESCRIPTION index f7b28b9f..03a6db04 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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 Description: Generally useful tools to assess use of public resources in diff --git a/NEWS.md b/NEWS.md index 9e38506a..7c2d4246 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# DO.utils 0.2.9 + +* Fix dplyr code error in `onto_missing()`. + + # DO.utils 0.2.8 ## Highlights diff --git a/R/identify.R b/R/identify.R index 99c42502..8fac7598 100644 --- a/R/identify.R +++ b/R/identify.R @@ -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 {