Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: gDRutils
Type: Package
Title: A package with helper functions for processing drug response data
Version: 1.9.2
Date: 2025-11-03
Version: 1.9.3
Date: 2025-11-27
Authors@R: c(person("Bartosz", "Czech", role=c("aut"),
comment = c(ORCID = "0000-0002-9908-3007")),
person("Arkadiusz", "Gladki", role=c("cre", "aut"), email="gladki.arkadiusz@gmail.com",
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## gDRutils 1.9.3 - 2025-11-27
* add support for the `time-course` experiment

## gDRutils 1.9.2 - 2025-11-03
* update merge_SE function to merge drugs with different batches together

Expand Down
6 changes: 4 additions & 2 deletions R/experiments.R
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
## The following are the default values that will be used for handling MAE experiments
SUPPORTED_EXPERIMENTS <-
c(sa = "single-agent", combo = "combination", "cd" = "co-dilution")
c(sa = "single-agent", combo = "combination", "cd" = "co-dilution", "time-course" = "time-course")

EXPERIMENT_GROUPS <-
list(`single-agent` = c(`single-agent` = "single-agent",
`co-dilution` = "co-dilution"),
combination = "combination")
combination = "combination",
`time-course` = "time-course")

#' get_supported_experiments
#'
Expand Down
Loading