Skip to content

Commit

Permalink
Release version 3.26.1
Browse files Browse the repository at this point in the history
* Ensures cohorts that are withdrawn or deprecated, do not appear in log
* Update function getPhenotypeLog
* package maintenance
  • Loading branch information
gowthamrao committed Oct 9, 2023
1 parent ab9bf84 commit bb6bf8f
Show file tree
Hide file tree
Showing 34 changed files with 221 additions and 259 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: PhenotypeLibrary
Type: Package
Title: The OHDSI Phenotype Library
Version: 3.26.0
Version: 3.27.0
Date: 2023-10-09
Author: Gowtham Rao [aut, cre]
Maintainer: Gowtham Rao <rao@ohdsi.org>
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
PhenotypeLibrary 3.27.0
======================
Accepted Cohorts: No cohorts were accepted in this release.

New Cohorts: No new cohorts were added in this release.

PhenotypeLibrary 3.26.0
======================
Accepted Cohorts: No cohorts were accepted in this release.
Expand Down
14 changes: 14 additions & 0 deletions R/Phenotypes.R
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,20 @@ getPhenotypeLog <- function(cohortIds = NULL,
string = tolower(.data$status),
pattern = "accepted"
)
) |>
dplyr::filter(
stringr::str_detect(
string = .data$cohortName,
pattern = stringr::fixed("[W]"),
negate = TRUE
)
) |>
dplyr::filter(
stringr::str_detect(
string = .data$cohortName,
pattern = stringr::fixed("[D]"),
negate = TRUE
)
)
}

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.

2 changes: 1 addition & 1 deletion docs/articles/CohortDefinitionSubmissionRequirements.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/CohortDefinitionsInOhdsiPhenotypeLibrary.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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/GuidanceOnCohortDefinitionSetRObject.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/GuidanceOnLiteratureReview.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/GuidanceOnPerformingPeerReview.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/GuidanceOnWritingAnEvaluationReport.html

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

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/HowToUsePhenotypeLibraryRPackage.html

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

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/SubmittedCohortDefinitions.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/ValidityChecksForCohortDefinitions.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.

7 changes: 6 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 @@ -15,5 +15,5 @@ articles:
ReservedWordsWithSpecialMeaningToPhenotypers: ReservedWordsWithSpecialMeaningToPhenotypers.html
SubmittedCohortDefinitions: SubmittedCohortDefinitions.html
ValidityChecksForCohortDefinitions: ValidityChecksForCohortDefinitions.html
last_built: 2023-10-09T14:52Z
last_built: 2023-10-09T17:51Z

2 changes: 1 addition & 1 deletion docs/reference/PhenotypeLibrary-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/getPhenotypeLog.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/getPlCohortDefinitionSet.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/getPlConceptDefinitionSet.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.

6 changes: 3 additions & 3 deletions docs/reference/listPhenotypes.html

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

Binary file modified extras/PhenotypeLibrary.pdf
Binary file not shown.
Loading

0 comments on commit bb6bf8f

Please sign in to comment.