Skip to content

Commit

Permalink
Merge pull request #167 from gdrplatform/bioc_fix151124
Browse files Browse the repository at this point in the history
  • Loading branch information
bczech authored Nov 15, 2024
2 parents 0e45c64 + e721e72 commit 084282a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Type: Package
Package: gDRcore
Title: Processing functions and interface to process and analyze drug
dose-response data
Version: 1.5.1
Date: 2024-11-05
Version: 1.5.2
Date: 2024-11-15
Authors@R: c(
person("Bartosz", "Czech", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0002-9908-3007")),
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## gDRcore 1.5.2 - 2024-11-15
* fix melt in annotation function to fix Bioc error

## gDRcore 1.5.1 - 2024-11-05
* synchronize Bioconductor and GitHub versioning

Expand Down
6 changes: 3 additions & 3 deletions R/add_annotation.R
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ get_drug_annotation_from_dt <- function(dt) {
unlist(drug_cols[c("drug",
"drug_name",
"drug_moa")])))),
value.name = unlist(drug_cols[c("drug",
"drug_name",
"drug_moa")]))
value.name = as.character(unlist(drug_cols[c("drug",
"drug_name",
"drug_moa")])))
dt_long[, "variable" := NULL]
unique_dt <- unique(dt_long)
unique_dt[!unique_dt[[drug_cols[["drug"]]]] %in% gDRutils::get_env_identifiers("untreated_tag"), ]
Expand Down

0 comments on commit 084282a

Please sign in to comment.