# HG changeset patch # User workflow4metabolomics # Date 1584527762 14400 # Node ID b979ba5888f7ec76876345ee9c351d55cd1824b7 # Parent 01459b73daf99d11e9141481f8361595ea262e2e "planemo upload commit 0b77855ab98a4940d58727271c28990969367f4d" diff -r 01459b73daf9 -r b979ba5888f7 README.rst --- a/README.rst Thu Feb 13 17:23:07 2020 -0500 +++ b/README.rst Wed Mar 18 06:36:02 2020 -0400 @@ -2,6 +2,10 @@ Changelog/News -------------- +**Version 2.2.5+camera1.42.0+galaxy1 - 09/03/2020** + +- BUGFIX: Fix the zip export of the pictures (eic and boxplot) + **Version 2.2.5+camera1.42.0 - 13/02/2020** - UPGRADE: upgrade the xcms version from 3.0.0 to 1.42.0 (see CAMERA News_) diff -r 01459b73daf9 -r b979ba5888f7 abims_CAMERA_annotateDiffreport.xml --- a/abims_CAMERA_annotateDiffreport.xml Thu Feb 13 17:23:07 2020 -0500 +++ b/abims_CAMERA_annotateDiffreport.xml Wed Mar 18 06:36:02 2020 -0400 @@ -1,4 +1,4 @@ - + CAMERA annotate function. Returns annotation results (isotope peaks, adducts and fragments) and a diffreport if more than one condition. @@ -185,13 +185,13 @@ - diffreport['options']['option'] == 'show' and diffreport['options']['png2'] == 'zip' + diffreport['options']['option'] == 'show' and diffreport['options']['eicmax'] > 0 and diffreport['options']['png2'] == 'zip' - diffreport['options']['option'] == 'show' and diffreport['options']['png2'] == 'zip' + diffreport['options']['option'] == 'show' and diffreport['options']['eicmax'] > 0 and diffreport['options']['png2'] == 'zip' - diffreport['options']['option'] == 'show' and diffreport['options']['png2'] == 'pdf' + diffreport['options']['option'] == 'show' and diffreport['options']['eicmax'] > 0 and diffreport['options']['png2'] == 'pdf' @@ -436,6 +436,10 @@ .. _News: https://bioconductor.org/packages/release/bioc/news/CAMERA/NEWS +**Version 2.2.5+camera1.42.0+galaxy1 - 09/03/2020** + +- BUGFIX: Fix the zip export of the pictures (eic and boxplot) + @HELP_CAMERA_NEWVERSION_1420@ **Version 2.2.5 - 09/04/2019** diff -r 01459b73daf9 -r b979ba5888f7 lib.r --- a/lib.r Thu Feb 13 17:23:07 2020 -0500 +++ b/lib.r Wed Mar 18 06:36:02 2020 -0400 @@ -187,12 +187,12 @@ if (args$eicmax != 0) { if (args$png2 == "pdf") diffreport_png2pdf(filebase) + if (args$png2 == "zip") + diffreport_png2zip() } } } } - if (args$png2 == "zip") - diffreport_png2zip() if (args$tabular2 == "zip") diffreport_tabular2zip() }