diff --git a/DESCRIPTION b/DESCRIPTION index c5954f1..0a693e7 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: MetaboCoreUtils Title: Core Utils for Metabolomics Data -Version: 1.11.1 +Version: 1.11.2 Description: MetaboCoreUtils defines metabolomics-related core functionality provided as low-level functions to allow a data structure-independent usage across various R packages. This includes functions to calculate between ion diff --git a/NEWS.md b/NEWS.md index 4d82b19..5767197 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,10 @@ # MetaboCoreUtils 1.11 +## MetaboCoreUtils 1.11.2 + +- Add function to compute quality check of the data (issue + [#77]((https://github.com/rformassspectrometry/MetaboCoreUtils/issues/77)) + ## MetaboCoreUtils 1.11.1 - Add functions to enable linear model-based adjustment of (LC-MS derived) diff --git a/R/function-filtering.R b/R/function-filtering.R index 0a466fe..d67a15d 100644 --- a/R/function-filtering.R +++ b/R/function-filtering.R @@ -124,7 +124,6 @@ rowDratio <- function(x, y, na.rm = TRUE, mad = FALSE){ #' @export #' @rdname filteringFunctions - percentMissing <- function(x){ ((sum(is.na(x))) / length(x))*100 }