Skip to content

Commit

Permalink
OTP 2024.06
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed Jun 21, 2024
1 parent fe2bbc1 commit 77f0f3b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Version 1.6.10

* Fixed some erroneous drug classifications
* CIViC update (20240618)
* CIViC update (20240621)
* OTP update (2024.06)

# Version 1.6.8 (June 7th 2024)

Expand Down
Binary file modified R/sysdata.rda
Binary file not shown.
2 changes: 2 additions & 0 deletions data-raw/drug_name_black_list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Tesmilifene Hydrochloride
8H9 131I
ABC-294640
AXL-1717
AZD-7451
TAS-115
Lenperone Hydrochloride
ABT-126
AZD-3759
Expand Down
5 changes: 5 additions & 0 deletions data-raw/drug_utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -2685,6 +2685,11 @@ assign_drug_category <- function(drug_df = NULL,
stringr::str_detect(
atc_code_level3, "(\\|L01XX[A-J])|(^L01XX[A-J])"
) ~ "cancer_targeted_therapy",
!is.na(target_symbol) &
!is.na(atc_code_level3) &
stringr::str_detect(
atc_code_level3, "(\\|L01XXM)|(^L01XXM)"
) ~ "cancer_targeted_therapy",
!is.na(target_symbol) &
!is.na(atc_code_level3) &
stringr::str_detect(
Expand Down
Binary file modified data-raw/metadata_pharm_oncox.xlsx
Binary file not shown.
4 changes: 2 additions & 2 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ citEntry(
title = "pharmOncoX: Targeted and non-targeted anti-cancer drugs and drug regimens",
author = "Sigve Nakken",
year = "2024",
note = "R package version 1.6.10",
note = "R package version 1.6.9",
url = "https://github.com/sigven/pharmOncoX",
textVersion = paste("Nakken S. ","(2024)",
" pharmOncoX: Targeted and non-targeted anti-cancer drugs and drug regimens.",
" R package version 1.6.10.",
" R package version 1.6.9.",
" (https://github.com/sigven/pharmOncoX)")
)
2 changes: 0 additions & 2 deletions vignettes/pharmOncoX.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ remotes::install_github('sigven/pharmOncoX')
library(pharmOncoX)
cache_dir <- tempdir()
#cache_dir <-
# "/Users/sigven/project_data/packages/package__pharmOncoX/pharmOncoX/data-raw/gd_local"
```

Expand Down

0 comments on commit 77f0f3b

Please sign in to comment.