-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automating dependency handling, platform interop,
R CMD check
house…
…keeping, etc (#319) * Adding .gitattributes * Adding OHDSI/OhdsiRTools as remote so devtools::install_github can find it * rebuilding man pages and fixing duplicate Achilles.Rd by deleting it Problem with duplicates was introduced by cloning repo to Windows machine * Step 2: adding achilles.Rd back * Changing title to title case per CRAN reco * Changing install instructions and fixing formatting of README.md * Moved OhdsiRTools to Suggests since it is only needed for multithreaded mode. * Linting README.md * Addressing some issues raised by R CMD check. * Linting * Since dependency OhdsiRTools was moved to Suggests, import directive was removed from the NAMESPACE * Updating version number and date Per @t-abdul-basser's recommendation.
- Loading branch information
1 parent
7fa4deb
commit b71c4ec
Showing
15 changed files
with
274 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
^\.Rproj\.user$ | ||
^.travis.yml$ | ||
deploy.sh | ||
^\.github$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
inst/doc/* linguist-documentation | ||
vignettes/* linguist-documentation | ||
man/* linguist-documentation | ||
extras/* linguist-documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
Package: Achilles | ||
Type: Package | ||
Title: Creates descriptive statistics summary for an entire OMOP CDM instance | ||
Version: 1.6.1 | ||
Date: 2018-10-02 | ||
Title: Creates Descriptive Statistics Summary for an Entire OMOP CDM Instance | ||
Version: 1.6.2 | ||
Date: 2018-10-04 | ||
Author: Patrick Ryan, Martijn Schuemie, Vojtech Huser, Chris Knoll, Ajit Londhe | ||
Maintainer: Patrick Ryan <ryan@ohdsi.org> | ||
LazyData: true | ||
Description: creates descriptive statistics summary for an entire OMOP CDM | ||
Description: Creates descriptive statistics summary for an entire OMOP CDM | ||
instance. Since Aug 2016 only CDM v5 is actively being extended. Achilles | ||
Heel component does data quality assesment. | ||
Depends: | ||
SqlRender, | ||
DatabaseConnector (>= 2.0.0), | ||
rjson, | ||
OhdsiRTools | ||
rjson | ||
Suggests: | ||
testthat, | ||
dplyr, | ||
R.utils | ||
R.utils, | ||
OhdsiRTools | ||
Remotes: | ||
OHDSI/OhdsiRTools | ||
License: Apache License | ||
Roxygen: list(wrap = FALSE) | ||
RoxygenNote: 6.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
#' Achilles | ||
#' | ||
#' @name Achilles | ||
#' @docType package | ||
NULL | ||
|
||
|
||
|
||
|
||
#' allReports | ||
#' | ||
#' A list of reports | ||
#' | ||
#' | ||
#' @docType data | ||
#' @keywords datasets | ||
#' @name allReports | ||
|
||
#' @import DatabaseConnector | ||
#' @import SqlRender | ||
#' @import rjson | ||
#' @importFrom utils compareVersion packageVersion read.csv zip | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.