Skip to content

Commit

Permalink
drug classifications and CIViC update
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed Jun 18, 2024
1 parent f4ced47 commit 14370e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 1.6.10

* Fixed some erroneous drug classifications
* CIViC update (20240618)

# Version 1.6.8 (June 7th 2024)

* NCI update (24.05d)
Expand Down
Binary file modified R/sysdata.rda
Binary file not shown.
4 changes: 3 additions & 1 deletion data-raw/drug_utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -2288,6 +2288,9 @@ assign_drug_category <- function(drug_df = NULL,
dplyr::mutate(atc_drug_entry = dplyr::case_when(
!is.na(atc_drug_entry) &
(tolower(atc_drug_entry) == "sotorasib" |
tolower(atc_drug_entry) == "ivosidenib" |
tolower(atc_drug_entry) == "enasidenib" |
tolower(atc_drug_entry) == "venetoclax" |
tolower(atc_drug_entry) == "adagrasib") ~ as.character(NA),
TRUE ~ as.character(atc_drug_entry)
)) |>
Expand Down Expand Up @@ -2742,7 +2745,6 @@ assign_drug_category <- function(drug_df = NULL,
as.logical(cancer_target_classified)
))


drug_df <- remove_duplicate_chembl_ids(
drug_df = classified_drugs_all_final)

Expand Down

0 comments on commit 14370e4

Please sign in to comment.