Skip to content

Commit

Permalink
Addresses #64, #70, #79, #92, #120, #132, #131 in code, documentation…
Browse files Browse the repository at this point in the history
… is still being updated to reflect these changes.
  • Loading branch information
clairblacketer committed Nov 9, 2017
1 parent df2d439 commit afd9a52
Show file tree
Hide file tree
Showing 15 changed files with 893 additions and 35 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
2 changes: 2 additions & 0 deletions DDLGeneratr/DDLGeneratr/.Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
^.*\.Rproj$
^\.Rproj\.user$
20 changes: 20 additions & 0 deletions DDLGeneratr/DDLGeneratr/DDLGeneratr.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

AutoAppendNewline: Yes
StripTrailingWhitespace: Yes

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
14 changes: 14 additions & 0 deletions DDLGeneratr/DDLGeneratr/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Package: DDLGeneratr
Type: Package
Title: OMOP CDM DDL Generator
Version: 0.1.0
Author: Clair Blacketer
Maintainer: Clair Blacketer <mblacke@its.jnj.com>
Description: This packages uses the SqlRender package to convert a DDL script written in OHDSql to the other supported dialects.
License: Apache License 2.0
Encoding: UTF-8
LazyData: true
Imports: SqlRender
NeedsCompilation: no
RoxygenNote: 6.0.1
VignetteBuilder: knitr
1 change: 1 addition & 0 deletions DDLGeneratr/DDLGeneratr/NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exportPattern("^[[:alpha:]]+")
18 changes: 18 additions & 0 deletions DDLGeneratr/DDLGeneratr/R/hello.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Hello, world!
#
# This is an example function named 'hello'
# which prints 'Hello, world!'.
#
# You can learn more about package authoring with RStudio at:
#
# http://r-pkgs.had.co.nz/
#
# Some useful keyboard shortcuts for package authoring:
#
# Build and Reload Package: 'Ctrl + Shift + B'
# Check Package: 'Ctrl + Shift + E'
# Test Package: 'Ctrl + Shift + T'

hello <- function() {
print("Hello, world!")
}
Loading

0 comments on commit afd9a52

Please sign in to comment.