Skip to content

Commit

Permalink
Release v0.0.11
Browse files Browse the repository at this point in the history
* Update renv
* Update global.R
* Update package maintenance
  • Loading branch information
gowthamrao authored Apr 18, 2023
1 parent 20b6533 commit e462848
Show file tree
Hide file tree
Showing 20 changed files with 600 additions and 261 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: CohortExplorer
Type: Package
Title: An R package with a Shiny viewer to explore profiles of patients in a cohort
Version: 0.0.11
Date: 2022-02-23
Version: 0.0.12
Date: 2022-04-17
Authors@R: c(
person("Gowtham", "Rao", email = "[email protected]", role = c("aut", "cre")),
person("Observational Health Data Science and Informatics", role = c("cph"))
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
CohortExplorer 0.0.12
======================

Minor bug fixes

CohortExplorer 0.0.11
======================

Minor bug fixes

CohortExplorer 0.0.10
======================

Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

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

6 changes: 3 additions & 3 deletions docs/articles/HowToUseCohortExplorer.html

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

2 changes: 1 addition & 1 deletion docs/articles/index.html

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

2 changes: 1 addition & 1 deletion docs/authors.html

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

2 changes: 1 addition & 1 deletion docs/index.html

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

10 changes: 9 additions & 1 deletion docs/news/index.html

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

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 2.0.7
pkgdown_sha: ~
articles:
HowToUseCohortExplorer: HowToUseCohortExplorer.html
last_built: 2023-02-14T00:19Z
last_built: 2023-04-18T02:53Z

2 changes: 1 addition & 1 deletion docs/pull_request_template.html

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

2 changes: 1 addition & 1 deletion docs/reference/CohortExplorer-package.html

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

2 changes: 1 addition & 1 deletion docs/reference/createCohortExplorerApp.html

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

2 changes: 1 addition & 1 deletion docs/reference/index.html

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

Binary file modified extras/CohortExplorer.pdf
Binary file not shown.
Binary file modified inst/doc/HowToUseCohortExplorer.pdf
Binary file not shown.
7 changes: 3 additions & 4 deletions inst/shiny/global.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (file.exists("R/Default.R")) {
source("R/Default.R")
}

files <- list.files(path = file.path("data"), pattern = ".RDS")
files <- list.files(path = file.path("data"), pattern = ".rds", ignore.case = TRUE)
if (length(files) == 0) {
stop("No .rds found in data folder.")
}
Expand All @@ -27,12 +27,11 @@ listOfFiles$newName <-
)
listOfFiles$newName <-
gsub(
pattern = ".RDS",
pattern = ".rds",
replacement = "",
fixed = TRUE,
x = listOfFiles$newName
x = gsub(pattern = ".RDS", replacement = ".rds", x = listOfFiles$newName)
)

listOfFiles <- listOfFiles %>%
tidyr::separate(
col = newName,
Expand Down
Loading

0 comments on commit e462848

Please sign in to comment.