Skip to content

Commit 3d07fe8

Browse files
author
Katy Sadowski
committed
release
1 parent 2c21fab commit 3d07fe8

File tree

74 files changed

+116
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+116
-107
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: DataQualityDashboard
22
Type: Package
33
Title: Execute and View Data Quality Checks on OMOP CDM Database
4-
Version: 2.7.0
5-
Date: 2025-08-25
4+
Version: 2.8.0
5+
Date: 2025-09-23
66
Authors@R: c(
77
person("Katy", "Sadowski", email = "[email protected]", role = c("aut", "cre")),
88
person("Clair", "Blacketer", role = c("aut")),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
DataQualityDashboard 2.8.0
2+
==========================
3+
This release includes a bugfix in the `isStandardValidConcept` check. Previously, this check was not flagging records with a valid, non-standard concept in the concept ID field. It was only flagging classification concepts and invalid concepts.
4+
15
DataQualityDashboard 2.7.0
26
==========================
37
This release includes:

R/executeDqChecks.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ executeDqChecks <- function(connectionDetails,
252252
})]
253253

254254
checkDescriptionsDf <- checkDescriptionsDf[checkDescriptionsDf$checkLevel %in% checkLevels &
255-
checkDescriptionsDf$severity %in% checkSeverity &
256-
checkDescriptionsDf$evaluationFilter != "" &
257-
checkDescriptionsDf$sqlFile != "" &
258-
checkDescriptionsDf$checkName %in% checksToInclude, ]
255+
checkDescriptionsDf$severity %in% checkSeverity &
256+
checkDescriptionsDf$evaluationFilter != "" &
257+
checkDescriptionsDf$sqlFile != "" &
258+
checkDescriptionsDf$checkName %in% checksToInclude, ]
259259

260260
if (length(checkNames) > 0) {
261261
checkDescriptionsDf <- checkDescriptionsDf[checkDescriptionsDf$checkName %in% checkNames, ]

docs/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/AddNewCheck.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/CheckStatusDefinitions.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/DataQualityDashboard.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/DqdForCohorts.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/SqlOnly.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)