From be47c266e4a7caba50d252cf7e22a6768c222fb3 Mon Sep 17 00:00:00 2001 From: Charles Plessy Date: Fri, 24 May 2024 14:13:15 +0900 Subject: [PATCH] Release version 2.11.3 --- DESCRIPTION | 4 ++-- NEWS.md | 33 ++++++++++++++++++++++----------- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2532aa4..f27979e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: CAGEr Title: Analysis of CAGE (Cap Analysis of Gene Expression) sequencing data for precise mapping of transcription start sites and promoterome mining -Version: 2.11.2 -Date: 2024-05-17 +Version: 2.11.3 +Date: 2024-05-24 Authors@R: c( person("Vanja", "Haberle", email = "vanja.haberle@gmail.com", role = "aut"), person("Charles", "Plessy", email = "charles.plessy@oist.jp", role = "cre"), diff --git a/NEWS.md b/NEWS.md index c827c5d..ea24ff7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,25 @@ -# Upcoming changes in version 2.11.2 +# Upcoming changes in version 2.11.3 + +BACKWARDS-INCOMPATIBLE CHANGES + +- The `removeSingletons` option of clustering methods is removed and the + default value of `keepSingletonsAbove` is set to `0`, which keeps the + standard behavior. +- In cluster objects, the dominant CTSS score is now stored in the + `dominantCTSS` object directly. +- The `clusterCTSS` function is replaced by the new `paraclu` and `distclu` + function. CTSS filtering is done beforehand with the new `filterLowExpCTSS` + function. + +BUG FIXES + +- CTSS filtering now works correctly with `threshold = 0, thresholdIsTpm = TRUE`. + +OTHER CHANGES + +- Accelerated the computation of cumulative sums ~10×. + +# Changes in version 2.11.2 BACKWARDS-INCOMPATIBLE CHANGES @@ -13,19 +34,10 @@ BACKWARDS-INCOMPATIBLE CHANGES the newer `CustomConsensusClusters` function. - The `exportToTrack` function now exports scores of _tag clusters_ and _consensus clusters_ instead of setting them to zero. -- The `removeSingletons` option of clustering methods is removed and the - default value of `keepSingletonsAbove` is set to `0`, which keeps the - standard behavior. -- In cluster objects, the dominant CTSS score is now stored in the - `dominantCTSS` object directly. -- The `clusterCTSS` function is replaced by the new `paraclu` and `distclu` - function. CTSS filtering is done beforehand with the new `filterLowExpCTSS` - function. BUG FIXES - The `importPublicData` function was repaired for FANTOM samples. -- CTSS filtering now works correctly with `threshold = 0, thresholdIsTpm = TRUE`. NEW FEATURES @@ -39,7 +51,6 @@ NEW FEATURES OTHER CHANGES -- Accelerated the computation of cumulative sums ~10×. - Singleton filtering is now done by the `paraclu` and `distclu` functions themeselves; `.ctss_summary_for_clusters` does not change the input clusters except for adding information.