Skip to content

Commit

Permalink
fix roxygen issues
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Mar 4, 2024
1 parent 2cea8fa commit 72d639b
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/R_CMD_check_Hades.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ jobs:
remotes::install_cran("covr")
shell: Rscript {0}

- name: Setup upterm session
uses: lhotari/action-upterm@v1

- name: Test coverage
if: runner.os == 'Linux'
run: covr::codecov()
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ Remotes:
ohdsi/FeatureExtraction,
ohdsi/ShinyAppBuilder,
ohdsi/ResultModelManager,
RoxygenNote: 7.2.3
RoxygenNote: 7.3.1
Encoding: UTF-8
2 changes: 2 additions & 0 deletions R/HelperFunctions.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# fix issue with nrow - temp fix for me locally
nrow <- function(x){UseMethod("nrow",x)}
#' @exportS3Method NULL
nrow.default <- base::nrow
#' @exportS3Method NULL
nrow.tbl <- function(x){x %>% dplyr::tally() %>% dplyr::pull()}


Expand Down
3 changes: 1 addition & 2 deletions R/PatientLevelPrediction.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@
#'
#' @description A package for running predictions using data in the OMOP CDM
#'
#' @docType package
#' @name PatientLevelPrediction
#' @keywords internal
#' @importFrom dplyr %>%
#' @importFrom rlang .data
NULL
"_PACKAGE"

#' A simulation profile
#' @docType data
Expand Down
23 changes: 23 additions & 0 deletions man/PatientLevelPrediction.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/createCohortCovariateSettings.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/getCohortCovariateData.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 72d639b

Please sign in to comment.