Skip to content

Commit b0957c8

Browse files
Merge pull request #417 from OHDSI/develop
v2.1 release
2 parents 6c9c8fe + 1d1a2ec commit b0957c8

File tree

130 files changed

+32086
-4489
lines changed

Some content is hidden

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

130 files changed

+32086
-4489
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ compare_versions
77
deploy.sh
88
docs/*
99
extras/*
10+
^doc$
11+
^Meta$

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ docs/Gemfile
3737
docs/Gemfile.lock
3838
sql
3939
vignettes/*.log
40+
/doc/
41+
/Meta/

DESCRIPTION

Lines changed: 5 additions & 3 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.0.0
5-
Date: 2022-12-08
4+
Version: 2.1.0
5+
Date: 2023-02-13
66
Authors@R: c(
77
person("Clair", "Blacketer", , "[email protected]", role = c("aut", "cre")),
88
person("Ajit", "Londhe", role = c("aut")),
@@ -28,7 +28,9 @@ Imports:
2828
rJava,
2929
SqlRender (>= 1.6.0),
3030
plyr,
31-
stringr
31+
stringr,
32+
rlang,
33+
tidyselect
3234
Suggests:
3335
testthat,
3436
knitr,

NAMESPACE

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ export(writeJsonResultsToTable)
99
import(DatabaseConnector)
1010
import(magrittr)
1111
importFrom(magrittr,"%>%")
12+
importFrom(rlang,.data)
1213
importFrom(stats,na.omit)
1314
importFrom(stats,setNames)
1415
importFrom(stringr,regex)
1516
importFrom(stringr,str_detect)
17+
importFrom(tidyselect,all_of)
18+
importFrom(utils,install.packages)
19+
importFrom(utils,menu)
1620
importFrom(utils,packageVersion)
1721
importFrom(utils,read.csv)
22+
importFrom(utils,write.table)

NEWS.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
DataQualityDashboard 2.1.0
2+
===========================
3+
This release includes:
4+
5+
### Bugfixes
6+
7+
- cdmDatatype check, which checks that values in integer columns are integers, updated so that float values will now fail the check
8+
- Quotes removed from `offset` column name in v5.4 thresholds file so that this column is skipped by DQD in all cases (use of reserved word causes failures in some SQL dialects)
9+
- Broken images fixed in addNewCheck vignette
10+
11+
### HADES requirements
12+
13+
- All snakecase variables updated to camelcase
14+
- Global variable binding R Check note resolved
15+
116
DataQualityDashboard 2.0.0
217
===========================
318
This release includes:

R/constants.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Observational Health Data Sciences and Informatics
1+
# Copyright 2023 Observational Health Data Sciences and Informatics
22
#
33
# This file is part of DataQualityDashboard
44
#
@@ -14,4 +14,4 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
ACCEPTED_CDM_REGEX <- "^5.[2-4]$"
17+
acceptedCdmRegex <- "^5.[2-4]$"

0 commit comments

Comments
 (0)