From 65039b4f082a2e09dc917862e8a429a3f0e95170 Mon Sep 17 00:00:00 2001 From: "J. Allen Baron" Date: Tue, 20 Jun 2023 12:31:32 -0400 Subject: [PATCH] Update to v0.2.9 Fixes critical bug in onto_missing(). --- DESCRIPTION | 2 +- NEWS.md | 5 +++++ R/identify.R | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 {