Repository 'limma_voom'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/limma_voom

Changeset 6:39fa12a6d885 (2018-05-08)
Previous changeset 5:d8a55b5f0de0 (2018-05-05) Next changeset 7:e6a4ff41af6b (2018-05-09)
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
modified:
limma_voom.R
limma_voom.xml
test-data/out_rscript.txt
b
diff -r d8a55b5f0de0 -r 39fa12a6d885 limma_voom.R
--- a/limma_voom.R Sat May 05 17:55:13 2018 -0400
+++ b/limma_voom.R Tue May 08 18:12:40 2018 -0400
[
b'@@ -22,6 +22,8 @@\n #       robOpt", "b", 0, "logical"          -String specifying if robust options should be used\n #       trend", "t", 1, "double"            -Float for prior.count if limma-trend is used instead of voom\n #       weightOpt", "w", 0, "logical"       -String specifying if voomWithQualityWeights should be used\n+#       volhiOpt", "v", 1, "integer"        -Integer specifying number of genes to highlight in volcano plot\n+#       treatOpt", "T", 0, "logical"        -String specifying if TREAT function shuld be used\n #\n # OUT:\n #       MDS Plot\n@@ -49,12 +51,8 @@\n library(scales, quietly=TRUE, warn.conflicts=FALSE)\n library(getopt, quietly=TRUE, warn.conflicts=FALSE)\n \n-if (packageVersion("limma") < "3.20.1") {\n-    stop("Please update \'limma\' to version >= 3.20.1 to run this tool")\n-}\n-\n ################################################################################\n-### Function Delcaration\n+### Function Declaration\n ################################################################################\n # Function to sanitise contrast equations so there are no whitespaces\n # surrounding the arithmetic operators, leading or trailing whitespace\n@@ -170,7 +168,9 @@\n     "normOpt", "n", 1, "character",\n     "robOpt", "b", 0, "logical",\n     "trend", "t", 1, "double",\n-    "weightOpt", "w", 0, "logical"),\n+    "weightOpt", "w", 0, "logical",\n+    "volhiOpt", "v", 1, "integer",\n+    "treatOpt", "T", 0, "logical"),\n     byrow=TRUE, ncol=4)\n opt <- getopt(spec)\n \n@@ -237,6 +237,12 @@\n     priorCount <- opt$trend\n }\n \n+if (is.null(opt$treatOpt)) {\n+    wantTreat <- FALSE\n+} else {\n+    wantTreat <- TRUE\n+}\n+\n \n if (!is.null(opt$filesPath)) {\n     # Process the separate count files (adapted from DESeq2 wrapper)\n@@ -311,19 +317,28 @@\n contrastData <- sanitiseEquation(contrastData)\n contrastData <- gsub(" ", ".", contrastData, fixed=TRUE)\n \n+denOutPng <- makeOut("densityplots.png")\n+denOutPdf <- makeOut("DensityPlots.pdf")\n+boxOutPng <- makeOut("boxplots.png")\n+boxOutPdf <- makeOut("BoxPlots.pdf")\n+mdsOutPdf <- character() # Initialise character vector\n+mdsOutPng <- character()\n+for (i in 1:ncol(factors)) {\n+    mdsOutPdf[i] <- makeOut(paste0("mdsplot_", names(factors)[i], ".pdf"))\n+    mdsOutPng[i] <- makeOut(paste0("mdsplot_", names(factors)[i], ".png"))\n+}\n \n-mdsOutPdf <- makeOut("mdsplot_nonorm.pdf")\n-mdsOutPng <- makeOut("mdsplot_nonorm.png")\n-nmdsOutPdf <- makeOut("mdsplot.pdf")\n-nmdsOutPng <- makeOut("mdsplot.png")\n-mdOutPdf <- character()   # Initialise character vector\n-mdOutPng <- character()\n+mdOutPdf <- character()\n+volOutPdf <- character()\n+mdvolOutPng <- character()\n topOut <- character()\n for (i in 1:length(contrastData)) {\n     mdOutPdf[i] <- makeOut(paste0("mdplot_", contrastData[i], ".pdf"))\n-    mdOutPng[i] <- makeOut(paste0("mdplot_", contrastData[i], ".png"))\n+    volOutPdf[i] <- makeOut(paste0("volplot_", contrastData[i], ".pdf"))\n+    mdvolOutPng[i] <- makeOut(paste0("mdvolplot_", contrastData[i], ".png"))\n     topOut[i] <- makeOut(paste0(deMethod, "_", contrastData[i], ".tsv"))\n }\n+\n normOut <- makeOut(paste0(deMethod, "_normcounts.tsv"))\n rdaOut <- makeOut(paste0(deMethod, "_analysis.RData"))\n sessionOut <- makeOut("session_info.txt")\n@@ -382,13 +397,13 @@\n sampleanno <- data.frame("sampleID"=samplenames, factors)\n \n \n-# Generating the DGEList object "data"\n+# Generating the DGEList object "y"\n print("Generating DGEList object")\n data$samples <- sampleanno\n data$samples$lib.size <- colSums(data$counts)\n data$samples$norm.factors <- 1\n row.names(data$samples) <- colnames(data$counts)\n-data <- new("DGEList", data)\n+y <- new("DGEList", data)\n \n print("Generating Design")\n # Name rows of factors according to their sample\n@@ -406,7 +421,7 @@\n \n # Calculating normalising factors\n print("Calculating Normalisation Factors")\n-data <- calcNormFactors(data, method=opt$normOpt)\n+y <- calcNormFactors(y, method=opt$normOpt)\n \n # Generate contrasts information\n print("Generating Contrasts")\n@@ -415,25 +430,120 @@\n #####'..b't, coef=i,\n+            main=paste("Volcano Plot:", unmake.names(contrastData[i])),\n+            highlight=opt$volhiOpt,\n+            names=fit$genes[, 2])\n+    } else {\n+        limma::volcanoplot(fit, coef=i,\n+            main=paste("Volcano Plot:", unmake.names(contrastData[i])),,\n+            highlight=opt$volhiOpt,\n+            names=fit$genes$GeneID)\n+    }\n+    linkName <- paste0("VolcanoPlot_", contrastData[i], ".pdf")\n+    linkAddr <- paste0("volplot_", contrastData[i], ".pdf")\n+    linkData <- rbind(linkData, c(linkName, linkAddr))\n+    invisible(dev.off())\n+\n+    # PNG of MD and Volcano\n+    png(mdvolOutPng[i], width=1200, height=600)\n+    par(mfrow=c(1, 2), mar=c(5,4,2,2)+0.1, oma=c(0,0,3,0))\n+    limma::plotMD(fit, status=status[, i], coef=i, main="MD Plot",\n+                   hl.col=alpha(c("firebrick", "blue"), 0.4), values=c(1, -1),\n+                   xlab="Average Expression", ylab="logFC")\n \n     abline(h=0, col="grey", lty=2)\n \n-    imgName <- paste0("MD Plot_", contrastData[i])\n-    imgAddr <- paste0("mdplot_", contrastData[i], ".png")\n+    # Volcano plots\n+    if (haveAnno) {\n+        # labels must be in second column currently\n+        limma::volcanoplot(fit, coef=i, main="Volcano Plot",\n+            highlight=opt$volhiOpt,\n+            names=fit$genes[, 2])\n+    } else {\n+        limma::volcanoplot(fit, coef=i, main="Volcano Plot",\n+            highlight=opt$volhiOpt,\n+            names=fit$genes$GeneID)\n+    }\n+\n+    imgName <- paste0("MDVolPlot_", contrastData[i])\n+    imgAddr <- paste0("mdvolplot_", contrastData[i], ".png")\n     imageData <- rbind(imageData, c(imgName, imgAddr))\n+    title(paste0("Contrast: ", unmake.names(contrastData[i])), outer=TRUE, cex.main=1.5)\n     invisible(dev.off())\n }\n sigDiff <- data.frame(Up=upCount, Flat=flatCount, Down=downCount)\n@@ -597,11 +738,10 @@\n if (wantRda) {\n     print("Saving RData")\n     if (wantWeight) {\n-      save(data, status, plotData, labels, factors, wts, fit, top, contrasts,\n-           design,\n+      save(counts, data, y, status, plotData, labels, factors, wts, fit, top, contrasts, design,\n            file=rdaOut, ascii=TRUE)\n     } else {\n-      save(data, status, plotData, labels, factors, fit, top, contrasts, design,\n+      save(counts, data, y, status, plotData, labels, factors, fit, top, contrasts, design,\n            file=rdaOut, ascii=TRUE)\n     }\n     linkData <- rbind(linkData, c((paste0(deMethod, "_analysis.RData")), (paste0(deMethod, "_analysis.RData"))))\n@@ -626,15 +766,16 @@\n \n cata("<body>\\n")\n cata("<h3>Limma Analysis Output:</h3>\\n")\n-cata("Links to PDF copies of plots are in \'Plots\' section below />\\n")\n-if (wantWeight) {\n-    HtmlImage(imageData$Link[1], imageData$Label[1], width=1000)\n-} else {\n-    HtmlImage(imageData$Link[1], imageData$Label[1])\n-}\n+cata("Links to PDF copies of plots are in \'Plots\' section below <br />\\n")\n \n-for (i in 2:nrow(imageData)) {\n-    HtmlImage(imageData$Link[i], imageData$Label[i])\n+for (i in 1:nrow(imageData)) {\n+    if (grepl("density|box|mdvol", imageData$Link[i])) {\n+        HtmlImage(imageData$Link[i], imageData$Label[i], width=1200)\n+    } else if (wantWeight) {\n+        HtmlImage(imageData$Link[i], imageData$Label[i], width=1000)\n+    } else {\n+        HtmlImage(imageData$Link[i], imageData$Label[i])\n+    }\n }\n \n cata("<h4>Differential Expression Counts:</h4>\\n")\n@@ -719,8 +860,15 @@\n } else {\n     ListItem("Weights were not applied to samples.")\n }\n+if (wantTreat) {\n+    ListItem(paste("Testing significance relative to a fold-change threshold (TREAT) was performed using a threshold of log2 =", opt$lfcReq, "at FDR of", opt$pValReq, "."))\n+}\n if (wantRobust) {\n-    ListItem("eBayes was used with robust settings (robust=TRUE).")\n+    if (wantTreat) {\n+        ListItem("TREAT was used with robust settings (robust=TRUE).")\n+    } else {\n+        ListItem("eBayes was used with robust settings (robust=TRUE).")\n+    }\n }\n if (opt$pAdjOpt!="none") {\n     if (opt$pAdjOpt=="BH" || opt$pAdjOpt=="BY") {\n'
b
diff -r d8a55b5f0de0 -r 39fa12a6d885 limma_voom.xml
--- a/limma_voom.xml Sat May 05 17:55:13 2018 -0400
+++ b/limma_voom.xml Tue May 08 18:12:40 2018 -0400
b
@@ -1,4 +1,4 @@
-<tool id="limma_voom" name="limma" version="3.34.9.1">
+<tool id="limma_voom" name="limma" version="3.34.9.2">
     <description>
         Perform differential expression with limma-voom or limma-trend
     </description>
@@ -82,6 +82,10 @@
 -l '$adv.lfc'
 -p '$adv.pVal'
 -d '$adv.pAdjust'
+-v '$adv.volgenes'
+#if $adv.treat:
+    -T
+#end if
 
 #if $deMethod.de_select == 'voom':
     #if $deMethod.weightOption:
@@ -185,7 +189,7 @@
         <!-- Gene Annotations -->
         <conditional name="anno">
             <param name="annoOpt" type="select" label="Use Gene Annotations?"
-                    help="If you provide an annotation file, annotations will be added to the table(s) of differential expression results to provide descriptions for each gene. See Help section below.">
+                    help="If you provide an annotation file, annotations will be added to the table(s) of differential expression results to provide descriptions for each gene, and used to label the top genes in the Volcano plot. See Help section below.">
                 <option value="no">No</option>
                 <option value="yes">Yes</option>
             </param>
@@ -270,6 +274,12 @@
                 <option value="holm">Holm (1979)</option>
                 <option value="none">None</option>
             </param>
+            <param name="treat" type="boolean" truevalue="1" falsevalue="0" checked="False"
+                label="Test significance relative to a fold-change threshold (TREAT)"
+                help="If you want to apply a cut-off on a fold change the TREAT function can be used, see Help section below. Default: No"/>
+            <param name="volgenes" type="integer" value="10" min="0"
+                label="Number of genes to highlight in Volcano plot"
+                help="The top DE genes will be highlighted in the Volcano plot for each contrast. Default: 10."/>
             <param name="normalisationOption" type="select" label="Normalisation Method" help="Default: TMM">
                 <option value="TMM" selected="true">TMM</option>
                 <option value="RLE">RLE</option>
@@ -614,7 +624,7 @@
 **Gene Annotations:**
 Optional input for gene annotations, this can contain more
 information about the genes than just an ID number. The annotations will
-be available in the differential expression results table and the optional normalised counts table. The file must contain a header row and have the gene IDs in the first column. The number of rows should match that of the counts files, add NA for any gene IDs with no annotation. The Galaxy tool **annotateMyIDs** can be used to obtain annotations for human, mouse, fly and zebrafish.
+be available in the differential expression results table and the optional normalised counts table. The file must contain a header row and have the gene IDs in the first column. The second column will be used to label the genes in the Volcano plot instead of the default Gene IDs. The number of rows should match that of the counts files, add NA for any gene IDs with no annotation. The Galaxy tool **annotateMyIDs** can be used to obtain annotations for human, mouse, fly and zebrafish.
 
 Example:
 
@@ -713,6 +723,9 @@
       BY(2001) which are both false discovery rate controls. There is also
       Holm(1979) which is a method for family-wise error rate control.
 
+**Testing relative to a threshold (TREAT):**
+If there are a lot of differentially expressed genes, a fold change threshold can be applied in addition to the P-value threshold to select genes that are more likely to be biologically significant. However, ranking by P-value and discarding genes with small logFCs can increase the false discovery rate. Using the limma TREAT function performs this analysis correctly (`McCarthy and Smyth, 2009`_).
+
 **Normalisation Method:**
 The most obvious technical factor that affects the read counts, other than gene expression
 levels, is the sequencing depth of each RNA sample. edgeR adjusts any differential expression
@@ -729,7 +742,7 @@
 appear to be down-regulated in that sample . The edgeR `calcNormFactors` function normalizes for RNA composition by finding a set of scaling factors for the library sizes that minimize the log-fold changes between the samples for most genes. The default method for computing these scale factors uses a trimmed mean of M values (TMM) between each pair of samples. We call the product of the original library size and the scaling factor the *effective library size*. The effective library size replaces the original library size in all downsteam analyses. TMM is the recommended method for most RNA-Seq data where the majority (more than half) of the genes are believed not differentially expressed between any pair of the samples. You can change the normalisation method under **Advanced Options** above. For more information, see the `calcNormFactors` section in the `edgeR User's Guide`_.
 
 **Robust Settings**
-Option to use robust settings with eBayes, used by both liamm-voom and limma-trend. Using robust settings is usually recommended to protect against outlier genes, for more information see the `limma User's Guide`_. This is turned on by default.
+Option to use robust settings with eBayes or TREAT, used by both limma-voom and limma-trend. Using robust settings is usually recommended to protect against outlier genes, for more information see the `limma User's Guide`_ and `Phipson et al. 2016`_. This is turned on by default.
 
 **Prior Count:**
 If the limma-trend method is used, a count (`prior.count`) is added to all counts to avoid taking a log of zero, and damp down the variances of logarithms of low counts. A default of 3 is used, as recommended in the `limma User's Guide`_.
@@ -812,6 +825,8 @@
 .. _limma User's Guide: http://bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf
 .. _edgeR: http://www.bioconductor.org/packages/release/bioc/html/edgeR.html
 .. _edgeR User's Guide: https://bioconductor.org/packages/release/bioc/vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf
+.. _McCarthy and Smyth, 2009: https://www.ncbi.nlm.nih.gov/pubmed/19176553
+.. _Phipson et al. 2016: https://www.ncbi.nlm.nih.gov/pubmed/28367255
     ]]></help>
     <citations>
         <citation type="doi">10.1186/gb-2014-15-2-r29</citation>
b
diff -r d8a55b5f0de0 -r 39fa12a6d885 test-data/out_rscript.txt
--- a/test-data/out_rscript.txt Sat May 05 17:55:13 2018 -0400
+++ b/test-data/out_rscript.txt Tue May 08 18:12:40 2018 -0400
[
b'@@ -22,6 +22,8 @@\n #       robOpt", "b", 0, "logical"          -String specifying if robust options should be used\n #       trend", "t", 1, "double"            -Float for prior.count if limma-trend is used instead of voom\n #       weightOpt", "w", 0, "logical"       -String specifying if voomWithQualityWeights should be used\n+#       volhiOpt", "v", 1, "integer"        -Integer specifying number of genes to highlight in volcano plot\n+#       treatOpt", "T", 0, "logical"        -String specifying if TREAT function shuld be used\n #\n # OUT:\n #       MDS Plot\n@@ -49,12 +51,8 @@\n library(scales, quietly=TRUE, warn.conflicts=FALSE)\n library(getopt, quietly=TRUE, warn.conflicts=FALSE)\n \n-if (packageVersion("limma") < "3.20.1") {\n-    stop("Please update \'limma\' to version >= 3.20.1 to run this tool")\n-}\n-\n ################################################################################\n-### Function Delcaration\n+### Function Declaration\n ################################################################################\n # Function to sanitise contrast equations so there are no whitespaces\n # surrounding the arithmetic operators, leading or trailing whitespace\n@@ -170,7 +168,9 @@\n     "normOpt", "n", 1, "character",\n     "robOpt", "b", 0, "logical",\n     "trend", "t", 1, "double",\n-    "weightOpt", "w", 0, "logical"),\n+    "weightOpt", "w", 0, "logical",\n+    "volhiOpt", "v", 1, "integer",\n+    "treatOpt", "T", 0, "logical"),\n     byrow=TRUE, ncol=4)\n opt <- getopt(spec)\n \n@@ -237,6 +237,12 @@\n     priorCount <- opt$trend\n }\n \n+if (is.null(opt$treatOpt)) {\n+    wantTreat <- FALSE\n+} else {\n+    wantTreat <- TRUE\n+}\n+\n \n if (!is.null(opt$filesPath)) {\n     # Process the separate count files (adapted from DESeq2 wrapper)\n@@ -311,19 +317,28 @@\n contrastData <- sanitiseEquation(contrastData)\n contrastData <- gsub(" ", ".", contrastData, fixed=TRUE)\n \n+denOutPng <- makeOut("densityplots.png")\n+denOutPdf <- makeOut("DensityPlots.pdf")\n+boxOutPng <- makeOut("boxplots.png")\n+boxOutPdf <- makeOut("BoxPlots.pdf")\n+mdsOutPdf <- character() # Initialise character vector\n+mdsOutPng <- character()\n+for (i in 1:ncol(factors)) {\n+    mdsOutPdf[i] <- makeOut(paste0("mdsplot_", names(factors)[i], ".pdf"))\n+    mdsOutPng[i] <- makeOut(paste0("mdsplot_", names(factors)[i], ".png"))\n+}\n \n-mdsOutPdf <- makeOut("mdsplot_nonorm.pdf")\n-mdsOutPng <- makeOut("mdsplot_nonorm.png")\n-nmdsOutPdf <- makeOut("mdsplot.pdf")\n-nmdsOutPng <- makeOut("mdsplot.png")\n-mdOutPdf <- character()   # Initialise character vector\n-mdOutPng <- character()\n+mdOutPdf <- character()\n+volOutPdf <- character()\n+mdvolOutPng <- character()\n topOut <- character()\n for (i in 1:length(contrastData)) {\n     mdOutPdf[i] <- makeOut(paste0("mdplot_", contrastData[i], ".pdf"))\n-    mdOutPng[i] <- makeOut(paste0("mdplot_", contrastData[i], ".png"))\n+    volOutPdf[i] <- makeOut(paste0("volplot_", contrastData[i], ".pdf"))\n+    mdvolOutPng[i] <- makeOut(paste0("mdvolplot_", contrastData[i], ".png"))\n     topOut[i] <- makeOut(paste0(deMethod, "_", contrastData[i], ".tsv"))\n }\n+\n normOut <- makeOut(paste0(deMethod, "_normcounts.tsv"))\n rdaOut <- makeOut(paste0(deMethod, "_analysis.RData"))\n sessionOut <- makeOut("session_info.txt")\n@@ -382,13 +397,13 @@\n sampleanno <- data.frame("sampleID"=samplenames, factors)\n \n \n-# Generating the DGEList object "data"\n+# Generating the DGEList object "y"\n print("Generating DGEList object")\n data$samples <- sampleanno\n data$samples$lib.size <- colSums(data$counts)\n data$samples$norm.factors <- 1\n row.names(data$samples) <- colnames(data$counts)\n-data <- new("DGEList", data)\n+y <- new("DGEList", data)\n \n print("Generating Design")\n # Name rows of factors according to their sample\n@@ -406,7 +421,7 @@\n \n # Calculating normalising factors\n print("Calculating Normalisation Factors")\n-data <- calcNormFactors(data, method=opt$normOpt)\n+y <- calcNormFactors(y, method=opt$normOpt)\n \n # Generate contrasts information\n print("Generating Contrasts")\n@@ -415,25 +430,120 @@\n #####'..b't, coef=i,\n+            main=paste("Volcano Plot:", unmake.names(contrastData[i])),\n+            highlight=opt$volhiOpt,\n+            names=fit$genes[, 2])\n+    } else {\n+        limma::volcanoplot(fit, coef=i,\n+            main=paste("Volcano Plot:", unmake.names(contrastData[i])),,\n+            highlight=opt$volhiOpt,\n+            names=fit$genes$GeneID)\n+    }\n+    linkName <- paste0("VolcanoPlot_", contrastData[i], ".pdf")\n+    linkAddr <- paste0("volplot_", contrastData[i], ".pdf")\n+    linkData <- rbind(linkData, c(linkName, linkAddr))\n+    invisible(dev.off())\n+\n+    # PNG of MD and Volcano\n+    png(mdvolOutPng[i], width=1200, height=600)\n+    par(mfrow=c(1, 2), mar=c(5,4,2,2)+0.1, oma=c(0,0,3,0))\n+    limma::plotMD(fit, status=status[, i], coef=i, main="MD Plot",\n+                   hl.col=alpha(c("firebrick", "blue"), 0.4), values=c(1, -1),\n+                   xlab="Average Expression", ylab="logFC")\n \n     abline(h=0, col="grey", lty=2)\n \n-    imgName <- paste0("MD Plot_", contrastData[i])\n-    imgAddr <- paste0("mdplot_", contrastData[i], ".png")\n+    # Volcano plots\n+    if (haveAnno) {\n+        # labels must be in second column currently\n+        limma::volcanoplot(fit, coef=i, main="Volcano Plot",\n+            highlight=opt$volhiOpt,\n+            names=fit$genes[, 2])\n+    } else {\n+        limma::volcanoplot(fit, coef=i, main="Volcano Plot",\n+            highlight=opt$volhiOpt,\n+            names=fit$genes$GeneID)\n+    }\n+\n+    imgName <- paste0("MDVolPlot_", contrastData[i])\n+    imgAddr <- paste0("mdvolplot_", contrastData[i], ".png")\n     imageData <- rbind(imageData, c(imgName, imgAddr))\n+    title(paste0("Contrast: ", unmake.names(contrastData[i])), outer=TRUE, cex.main=1.5)\n     invisible(dev.off())\n }\n sigDiff <- data.frame(Up=upCount, Flat=flatCount, Down=downCount)\n@@ -597,11 +738,10 @@\n if (wantRda) {\n     print("Saving RData")\n     if (wantWeight) {\n-      save(data, status, plotData, labels, factors, wts, fit, top, contrasts,\n-           design,\n+      save(counts, data, y, status, plotData, labels, factors, wts, fit, top, contrasts, design,\n            file=rdaOut, ascii=TRUE)\n     } else {\n-      save(data, status, plotData, labels, factors, fit, top, contrasts, design,\n+      save(counts, data, y, status, plotData, labels, factors, fit, top, contrasts, design,\n            file=rdaOut, ascii=TRUE)\n     }\n     linkData <- rbind(linkData, c((paste0(deMethod, "_analysis.RData")), (paste0(deMethod, "_analysis.RData"))))\n@@ -626,15 +766,16 @@\n \n cata("<body>\\n")\n cata("<h3>Limma Analysis Output:</h3>\\n")\n-cata("Links to PDF copies of plots are in \'Plots\' section below />\\n")\n-if (wantWeight) {\n-    HtmlImage(imageData$Link[1], imageData$Label[1], width=1000)\n-} else {\n-    HtmlImage(imageData$Link[1], imageData$Label[1])\n-}\n+cata("Links to PDF copies of plots are in \'Plots\' section below <br />\\n")\n \n-for (i in 2:nrow(imageData)) {\n-    HtmlImage(imageData$Link[i], imageData$Label[i])\n+for (i in 1:nrow(imageData)) {\n+    if (grepl("density|box|mdvol", imageData$Link[i])) {\n+        HtmlImage(imageData$Link[i], imageData$Label[i], width=1200)\n+    } else if (wantWeight) {\n+        HtmlImage(imageData$Link[i], imageData$Label[i], width=1000)\n+    } else {\n+        HtmlImage(imageData$Link[i], imageData$Label[i])\n+    }\n }\n \n cata("<h4>Differential Expression Counts:</h4>\\n")\n@@ -719,8 +860,15 @@\n } else {\n     ListItem("Weights were not applied to samples.")\n }\n+if (wantTreat) {\n+    ListItem(paste("Testing significance relative to a fold-change threshold (TREAT) was performed using a threshold of log2 =", opt$lfcReq, "at FDR of", opt$pValReq, "."))\n+}\n if (wantRobust) {\n-    ListItem("eBayes was used with robust settings (robust=TRUE).")\n+    if (wantTreat) {\n+        ListItem("TREAT was used with robust settings (robust=TRUE).")\n+    } else {\n+        ListItem("eBayes was used with robust settings (robust=TRUE).")\n+    }\n }\n if (opt$pAdjOpt!="none") {\n     if (opt$pAdjOpt=="BH" || opt$pAdjOpt=="BY") {\n'