From 616bc3382137a8dd0a2531ad74a06f7d40de5a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20R=C3=A9gnier?= Date: Mon, 2 Dec 2024 15:10:43 +0100 Subject: [PATCH] - Forgot to increment the Version field in the DESCRIPTION R file - Slightly edited the warning message if the PICAFlow version is not up-to-date --- DESCRIPTION | 2 +- R/0_Preprocessing.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index dcd18e9..ba698fb 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: PICAFlow Title: PICAFlow: a complete R workflow dedicated to flow/mass cytometry data, from data pre-processing to deep and comprehensive analysis -Version: 1.0.2 +Version: 1.0.4 Authors@R: person("Paul", "Régnier", , "paul.regnier@aphp.fr", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-9713-1132")) diff --git a/R/0_Preprocessing.R b/R/0_Preprocessing.R index 4666980..ec84d65 100644 --- a/R/0_Preprocessing.R +++ b/R/0_Preprocessing.R @@ -12,7 +12,7 @@ checkNewVersion = function(...) if(installedRelease != latestRelease) { - print(paste("[WARNING] The version of PICAFlow which is currently installed on this computer ('", installedRelease, "') does not match with the latest version available on GitHub ('", latestRelease, "'). We kindly invite you to update to the latest version to avoid any troubles related to bugs and/or missing features. You can launch the update with the following command: 'devtools::install_github('PaulRegnier/PICAFlow', force = TRUE)'. Thank you for your understanding.", sep = "")) + print(paste("[WARNING] The version of PICAFlow which is currently installed on this computer ('", installedRelease, "') does not match with the latest version available on GitHub ('", latestRelease, "'). We kindly invite you to update to the latest version to avoid any troubles related to bugs and/or missing features. You can launch the update with the following command: 'devtools::install_github('PaulRegnier/PICAFlow', force = TRUE)'. Please see the tutorial for more information. Thank you for your understanding.", sep = "")) } else { print(paste("[NOTE] The version of PICAFlow which is currently installed on this computer (", installedRelease, ") is up-to-date.", sep = ""))