Skip to content

Commit

Permalink
final updates from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Smith authored and Smith committed Apr 4, 2024
1 parent 7b487ef commit e56b552
Show file tree
Hide file tree
Showing 33 changed files with 569 additions and 401 deletions.
18 changes: 18 additions & 0 deletions R/aou_join.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,24 @@ aou_join <- function(data,

if (is.character(table)) y_table <- dplyr::tbl(con, table) else y_table <- table

if (type %in% c("anti", "semi")) {
# don't need extra warning and can't do suffix
res <- get(paste(type, "join", sep = "_"))(data, y_table,
x_as = if (missing(x_as)) {
paste(sample(letters, 10, TRUE), collapse = "")
} else {
x_as
},
y_as = if (missing(y_as)) {
paste(sample(letters, 10, TRUE), collapse = "")
} else {
y_as
},
by = by,
...)
return(res)
}

res <- get(paste(type, "join", sep = "_"))(data, y_table,
x_as = if (missing(x_as)) {
paste(sample(letters, 10, TRUE), collapse = "")
Expand Down
48 changes: 24 additions & 24 deletions docs/articles/allofus.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/articles/web_only/health_codebook.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/articles/web_only/searchable_codebook.html

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ articles:
health_codebook: web_only/health_codebook.html
searchable_codebook: web_only/searchable_codebook.html
workspace: workspace.html
last_built: 2024-04-02T21:15Z
last_built: 2024-04-04T14:41Z

42 changes: 26 additions & 16 deletions docs/reference/aou_atlas_cohort.html

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

0 comments on commit e56b552

Please sign in to comment.