diff --git a/DESCRIPTION b/DESCRIPTION index 374dccc3..e744155b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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", diff --git a/NEWS.md b/NEWS.md index 3ff4073e..154464fa 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 diff --git a/R/experiments.R b/R/experiments.R index 32d2adb8..f0fdc5ad 100644 --- a/R/experiments.R +++ b/R/experiments.R @@ -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 #'