Skip to content

Commit

Permalink
Changes for notes
Browse files Browse the repository at this point in the history
  • Loading branch information
azimov committed Dec 19, 2023
1 parent 610976f commit 02a5906
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ deploy.sh
compare_versions
^doc$
^Meta$
LICENSE
LICENSE
.git
..Rcheck
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: ResultModelManager
Title: Result Model Manager (RMM) for OHDSI packages
Title: Result Model Manager
Version: 0.5.6
Authors@R:
person("Jamie", "Gilbert", , "[email protected]", role = c("aut", "cre"))
Expand Down
4 changes: 2 additions & 2 deletions R/DataModel.R
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ uploadChunk <- function(chunk, pos, env, specifications, resultsFolder, connecti
# Ensure dates are formatted properly
toDate <- specifications %>%
dplyr::filter(
tableName == env$tableName &
.data$tableName == env$tableName &
tolower(.data$dataType) == "date"
) %>%
dplyr::select("columnName") %>%
Expand All @@ -322,7 +322,7 @@ uploadChunk <- function(chunk, pos, env, specifications, resultsFolder, connecti

toTimestamp <- specifications %>%
dplyr::filter(
tableName == env$tableName &
.data$tableName == env$tableName &
grepl("timestamp", tolower(.data$dataType))
) %>%
dplyr::select("columnName") %>%
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ResultModelManager
==================
[![Build Status](https://github.com/OHDSI/ResultModelManager/workflows/R-CMD-check/badge.svg)](https://github.com/OHDSI/ResultModelManager/actions?query=workflow%3AR-CMD-check)
[![codecov.io](https://codecov.io/github/OHDSI/ResultModelManager/coverage.svg?branch=main)](https://codecov.io/github/OHDSI/ResultModelManager?branch=main)
[![codecov.io](https://app.codecov.io/github/OHDSI/ResultModelManager/coverage.svg?branch=main)](https://codecov.io/github/OHDSI/ResultModelManager?branch=main)

ResultModelManager (RMM) [HADES](https://ohdsi.github.io/Hades).
ResultModelManager (RMM) [HADES](https://ohdsi.github.io/Hades/).

Introduction
============
Expand Down
2 changes: 1 addition & 1 deletion man/ResultModelManager-package.Rd

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

0 comments on commit 02a5906

Please sign in to comment.