# HG changeset patch
# User ethevenot
# Date 1477119767 14400
# Node ID e91de3b043207e5e6642c28902ce1f6ffd3f7b4a
# Parent fa173e12e185a174fadf7c40b4bfa1ad5b59138c
planemo upload for repository https://github.com/workflow4metabolomics/multivariate.git commit bb92582ec396fd845b49454c4cadd86fbfc73fab
diff -r fa173e12e185 -r e91de3b04320 README.md
--- a/README.md Sat Aug 06 12:07:13 2016 -0400
+++ b/README.md Sat Oct 22 03:02:47 2016 -0400
@@ -7,12 +7,12 @@
### Description
-**Version:** 2.3.6
-**Date:** 2016-08-05
+**Version:** 2.3.8
+**Date:** 2016-10-21
**Author:** Etienne A. Thevenot (CEA, LIST, MetaboHUB, W4M Core Development Team)
**Email:** [etienne.thevenot(at)cea.fr](mailto:etienne.thevenot@cea.fr)
**Citation:** Thevenot E.A., Roux A., Xu Y., Ezan E. and Junot C. (2015). Analysis of the human adult urinary metabolome variations with age, body mass index and gender by implementing a comprehensive workflow for univariate and OPLS statistical analyses. *Journal of Proteome Research*, **14**:3322-3335. [doi:10.1021/acs.jproteome.5b00354](http://dx.doi.org/10.1021/acs.jproteome.5b00354)
-**Licence:** CeCILL
+**Licence:** CeCILL
**Reference history:** [W4M00001a_sacurine-subset-statistics](http://galaxy.workflow4metabolomics.org/history/list_published), [W4M00001b_sacurine_complete](http://galaxy.workflow4metabolomics.org/history/list_published)
**Funding:** Agence Nationale de la Recherche ([MetaboHUB](http://www.metabohub.fr/index.php?lang=en&Itemid=473) national infrastructure for metabolomics and fluxomics, ANR-11-INBS-0010 grant)
@@ -52,6 +52,12 @@
### News
+###### CHANGES IN VERSION 2.3.8
+
+MINOR MODIFICATION
+
+ * (O)PLS(-DA) coefficients display in case of multiple quantitative (or multiclass) response: now the column names of the coefficients for each response are correctly labelled in the variableMetadata file
+
###### CHANGES IN VERSION 2.3.6
INTERNAL MODIFICATION
diff -r fa173e12e185 -r e91de3b04320 build.xml
--- a/build.xml Sat Aug 06 12:07:13 2016 -0400
+++ b/build.xml Sat Oct 22 03:02:47 2016 -0400
@@ -36,7 +36,7 @@
-
+
diff -r fa173e12e185 -r e91de3b04320 multivariate_config.xml
--- a/multivariate_config.xml Sat Aug 06 12:07:13 2016 -0400
+++ b/multivariate_config.xml Sat Oct 22 03:02:47 2016 -0400
@@ -1,10 +1,10 @@
-
+
PCA, PLS and OPLS
- R
+ R
r-batch
- bioconductor-ropls
+ bioconductor-ropls
@@ -458,6 +458,13 @@
NEWS
----
+CHANGES IN VERSION 2.3.8
+========================
+
+MINOR CORRECTION
+
+(O)PLS(-DA) coefficients display in case of multiple quantitative (or multiclass) response: now the column names of the coefficients for each response are correctly labelled in the variableMetadata file
+
CHANGES IN VERSION 2.3.6
========================
diff -r fa173e12e185 -r e91de3b04320 multivariate_wrapper.R
--- a/multivariate_wrapper.R Sat Aug 06 12:07:13 2016 -0400
+++ b/multivariate_wrapper.R Sat Oct 22 03:02:47 2016 -0400
@@ -398,7 +398,10 @@
}
if(!is.null(coeMN)) {
pCompMN <- cbind(pCompMN, coeMN)
- colnames(pCompMN)[ncol(pCompMN)] <- paste0(rspModC, "_COEFF")
+ if(ncol(coeMN) == 1)
+ colnames(pCompMN)[ncol(pCompMN)] <- paste0(rspModC, "_COEFF")
+ else
+ colnames(pCompMN)[(ncol(pCompMN) - ncol(coeMN) + 1):ncol(pCompMN)] <- paste0(rspModC, "_", colnames(coeMN), "-COEFF")
}
pCompDF <- as.data.frame(pCompMN)[rownames(varDF), , drop = FALSE]
varDF <- cbind.data.frame(varDF, pCompDF)