Skip to content

Commit

Permalink
pipeline failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rammprasad committed Jan 16, 2024
1 parent 372aced commit 28f700d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 20 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Depends: R (>= 4.1)
Imports:
admiraldev,
dplyr (>= 1.0.0),
purrr (>= 1.0.0),
rlang (>= 1.0.0),
stringr,
purrr (>= 0.3.3),
rlang (>= 0.4.4),
stringr (>= 1.4.0),
tibble
Suggests:
knitr,
Expand Down
4 changes: 2 additions & 2 deletions inst/create_cm_template.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ library(dplyr)

# Read Specification

# sdtm_spec <- read_sdtm_spec(filename = "~/study/study_sdtm_spec.csv")
sdtm_spec <- read_sdtm_spec(filename = "~/study/study_sdtm_spec.csv")

study_ct <- read_study_ct(filename = "~/study/study_sdtm_ct.csv")

# Read in raw data

MD1 <- read_raw_data_csv(filename = "~/study/MD1.csv") |>
md1 <- read_raw_data_csv(filename = "~/study/MD1.csv") |>
# Derive oak_id_vars
derive_oak_id_vars()

Expand Down
12 changes: 9 additions & 3 deletions man/sdtm.oak-package.Rd

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

3 changes: 2 additions & 1 deletion vignettes/articles/algorithms.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ algorithms <- data.frame(
),
paste("AE = 'Adverse Events' on early phase SAE form"),
paste("EC = 'Exposure as Collected'")
)
),
stringsAsFactors = TRUE
)
knitr::kable(algorithms)
```
Expand Down
14 changes: 3 additions & 11 deletions vignettes/articles/study_sdtm_spec.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -351,16 +351,8 @@ definition <- data.frame(
"GROUP_BY",
"ASSIGN_NO_CT",
"ASSIGN_NO_CT"
)
)
# We do not want URLs to be activated since they are part of the longer API calls
# and direct use is faulty.
definition$Example_Values <- ifelse(
grepl("http", definition$Example_Values),
yes = paste0("`", definition$Example_Values, "`"),
no = definition$Example_Values
),
stringsAsFactors = TRUE
)
knitr::kable(definition, col.names = gsub("_", " ", names(definition)))
knitr::kable(definition)
```
</div>

0 comments on commit 28f700d

Please sign in to comment.