Version history

Togepi is a Fairy type Pokémon. After hatching from its Egg, Togepi’s body remains encased in its eggshell. It is able to siphon the positive energy of others, storing that happiness in its shell, and then release it to those in need of it. Because of its disposition, Togepi is seen as a sign of good luck, especially if a Trainer is capable of getting a sleeping Togepi to stand. Togepi’s innocent smile is said to calm the soul.

What’s Changed

Added

  • #56 Added HiRSE code promotion badge
  • #57 DrEvalPy v1.4.0 contains two new datasets (BeatAML2, PDX_Bruna) and two new models (DrugGNN, ChemBERTaNeuralNetwork). Adapted the code and the summary svg accordingly.
  • #67
    • Replaced local unzip module with patched nf-core one (by @vagkaratzas)
    • Added amd64, arm64 containers, and condalock environment configurations and profiles.(by @vagkaratzas) -> condalock files deactivated again by #74

Changed

  • #59 Update to new runner size syntax by @mashehu
  • #57 Updated to the new Zenodo version which now also contains two new datasets: BeatAML2 and PDX_Bruna. Adapted the README, documentation, config, schema and code accordingly. This also required changes in /bin/load_response and a new module UNZIP_META.
  • #57, #73 drevalpy version updates: -> 1.4.0 -> 1.4.1
  • #55, #58, #60 Template version updates: -> 3.3.2 -> 3.4.1 -> 3.5.1
  • #69 Added local environment.yml files, meta.yml files, and conda/container declarations for each local module and subworkflow.
  • #72 Updated the minimal Nextflow version to 25.10.0
  • #73 Pulling test data from nf-core/test-datasets

Removed

  • #73 Python scripts that are now handled by the drevalpy CLI

Fixed

  • #62 Fixes hardcoded unzip version

Dependencies

DependencyOld versionNew version
drevalpy1.3.51.4.1

New Contributors

Full Changelog: https://github.com/nf-core/drugresponseeval/compare/1.1.0…1.2.0

What’s Changed

Added

  • #43 Preprint is out now! Linking it in the documentation.
  • #42 Added authors and licenses to the python scripts.
  • #43 Added --no_hyperparameter_tuning flag for quick runs without hyperparameter tuning: hpam_split takes this as argument
  • #43 Added --final_model_on_full data flag: if True, a final/production model is saved in the results directory. If hyperparameter_tuning is true, the final model is tuned, too. The model can later be loaded using the implemented load functions of the drevalpy models.
    • New process FINAL_SPLIT: splits the full dataset for each model class into train, validation, and optionally early stopping. This is done per model class and not overall because here, we no longer need across-model compatibility but want to train on the maximum amount of data (which might vary between models due to different feature availability)
    • New process TUNE_FINAL_MODEL: trains the final model(s) with all hyperparameter combinations
    • Added process EVALUATE_AND_FIND_MAX_FINAL: re-uses the EVALUATE_AND_FIND_MAX process to find the best hpam combination (evaluated on the validation dataset)
    • New process TRAIN_FINAL_MODEL: uses the best hpam combination to train the final model and save it
  • #43 Added ProteomicsElasticNet, SingleDrugProteomicsRandomForest to list of known models
  • #38 Reporting all package versions
  • #38 Added UNZIP module for loading and unzipping the drug response datasets instead of handling this in LOAD_RESPONSE: UNZIP_RESPONSE, UNZIP_CS_RESPONSE (for cross-study datasets).
  • #38 Added icon
  • #30 Added the possibility of a leave-tissue-out (LTO) split

Changed

  • #53 Changed to large runner for the GitHub Actions because of Docker → Singularity conversion.
  • #42 Moved all publishDir directives to modules.config.
  • #44 Fixed drevalpy versions in conda and docker to 1.3.5: now supporting Python 3.13
  • #38 Support for AWS: changed the structure of load response and parameter check to conform more to Nextflow best practices.
  • #44 Since drevalpy 1.3.5., the split_early_stopping function is no longer private.
  • #39 Template update to version 3.3.1
  • #38 Changed the defaults for test_mode from LPO to LCO and dataset_name from GDSC to CTRPv2 to better match the publication.
  • #35 , #38 Introducing assets/NO_FILE for empty file handling in the visualization process.
  • #30 Changed pipeline overview svg to Figure 1 from paper

Removed

  • #30 Simplified visualization: multiple short processes were creating overhang → more efficient in one process.
  • #44 Removed the --no_refitting parameter in load_response. It was no longer needed because of the new, more nextflow-y preprocess workflow
  • #44 Removed redundant code in the visualization python script. Possible because of a new wrapper function in drevalpy 1.3.5.
  • #38 Removed PARAMS_CHECK process: now handled by the schema and the utils_nfcore_drugresponseeval_pipeline subworkflow.
  • #38 Removed the --curve_curator flag which was true by default. It is now the no_refitting flag which is false by default.

Fixed

  • #44 casting a path to a string in bin/consolidate_results.py for drevalpy 1.3.5 compatibility.
  • #43 casting drug to str in bin/collect_results.py because there were issues if all drugs were pubchem IDs and were treated as numeric values.
  • #43 forgot to add the dataset_name in bin/load_response.py, made the tissue identifier optional. This was causing problems for custom datasets.
  • #38 passing rand_modes in quotes to bin/consolidate_results.py because otherwise, if more than one mode was passed, it was not recognized as a list.
  • #30 Added the path to the data directory to COLLECT_RESULTS because from there, we get the drug and cell line names for visualization.
  • #30 Fixed handling of when ‘None’ was passed as randomization mode to CONSOLIDATE_RESULTS.

Dependencies

DependencyOld versionNew version
drevalpy1.1.31.3.5

Parameters

ParamsStatus
--no_hyperparameter_tuningNew
--final_model_on_full_dataNew
--no_refittingNew (replaces --curve_curator)
--curve_curatorRemoved

Full Changelog: https://github.com/nf-core/drugresponseeval/compare/1.0.0…1.1.0

What’s Changed

New Contributors

Full Changelog: https://github.com/nf-core/drugresponseeval/commits/1.0.0