changeset 3:8212e342e482 draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats commit ad490a2f231f5ee1b6db160c117181e693ea1079"
author galaxyp
date Thu, 28 Jan 2021 20:48:40 +0000
parents 52ac6fde9a5b
children 593839e1f2c3
files msstats.xml test-data/Comparison_plot_skyline.pdf test-data/Heatmap_openms.pdf test-data/MSstats ProfilePlot.pdf test-data/Profile_plot_skyline.pdf test-data/QC_plot.pdf test-data/Volcano_plot_skyline.pdf test-data/comparison_list_skyline.tabular test-data/comparison_matrix_skyline.tabular test-data/condition_plot.pdf test-data/condition_plot_openms.pdf test-data/openms_comparisonmatrix.tabular test-data/openms_input.tabular test-data/profile_wsum_plot.pdf test-data/qq_plot.pdf test-data/residual_plot.pdf test-data/residualplot.pdf test-data/skyline_annotations.csv test-data/skyline_input_first100.csv test-data/volcanoplot.pdf
diffstat 20 files changed, 775 insertions(+), 208 deletions(-) [+]
line wrap: on
line diff
--- a/msstats.xml	Fri Aug 14 12:19:14 2020 -0400
+++ b/msstats.xml	Thu Jan 28 20:48:40 2021 +0000
@@ -1,18 +1,18 @@
 <tool id="msstats" name="MSstats" version="@VERSION@.0">
     <description>statistical relative protein significance analysis in DDA, SRM and DIA Mass Spectrometry</description>
     <macros>
-        <token name="@VERSION@">3.20.1</token>
+        <token name="@VERSION@">3.22.0</token>
         <xml name="useUniquePeptide">
-            <param name="useUniquePeptide" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="remove peptides that are assigned for more than one proteins" help="We assume to use unique peptide for each protein"/>
+            <param name="useUniquePeptide" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Remove peptides that are assigned for more than one proteins"/>
         </xml>
         <xml name="summaryforMultipleRows">
-            <param name="summaryforMultipleRows" type="select" label="Summary for MultipleRows" help="summaryforMultipleRows - when there are multiple measurements for certain feature and certain run, use highest or sum of all">
+            <param name="summaryforMultipleRows" type="select" label="Summary for MultipleRows" help="When there are multiple measurements for certain feature and certain run, use highest or sum of all">
                 <option value="max" selected="true">max</option>
                 <option value="sum">sum</option>
             </param>
         </xml>
         <xml name="fewMeasurements">
-            <param name="fewMeasurements" type="select" label="Remove the features that have 1 or 2 measurements across runs" help="(fewMeasurements)">
+            <param name="fewMeasurements" type="select" label="Features with few measurements " help="Remove the features that have 1 or 2 measurements across runs or keep all features or keep all features (the latter could give an error in fitting the statistical model)">
                 <option value="remove" selected="true">remove</option>
                 <option value="keep">keep</option>
             </param>
@@ -32,6 +32,7 @@
     ]]></command>
     <configfiles>
         <configfile name="msstats_script"><![CDATA[
+
 library('MSstats', warn.conflicts = F, quietly = T, verbose = F)
 
 #if $input.input_src == 'MSstats'
@@ -51,12 +52,12 @@
 \# Read in annotation including condition and biological replicates per run.
 \# Users should make this annotation file. It is not the output from MaxQuant.
   #if $input.annotation.is_of_type('csv')
-annot <- read.csv("$input.annotation", header=TRUE)
+	annot <- read.csv("$input.annotation", header=TRUE)
   #else
-annot <- read.table("$input.annotation", sep="\t", header=TRUE)
+	annot <- read.table("$input.annotation", sep="\t", header=TRUE)
   #end if
 
-raw <- MaxQtoMSstatsFormat(evidence=mq_evidence, 
+raw <- MaxQtoMSstatsFormat(evidence=mq_evidence,
                            proteinGroups=mq_proteinGroups,
                            annotation=annot, 
                            proteinID="$input.proteinID",
@@ -69,35 +70,41 @@
 
 #elif $input.input_src == 'OpenMS'
 
-  #if $input.evidence.is_of_type('csv')
-input <- read.csv("$input.evidence", header=TRUE)
+  #if $input.openms_input.is_of_type('csv')
+	input <- read.csv("$input.openms_input", header=TRUE)
   #else
-input <- read.table("$input.evidence", sep="\t", header=TRUE)
-  #end if
-  #if $input.annotation.is_of_type('csv')
-annot <- read.csv("$input.annotation", header=TRUE)
-  #else
-annot <- read.table("$input.annotation", sep="\t", header=TRUE)
+	input <- read.table("$input.openms_input", sep="\t", header=TRUE)
   #end if
 
-raw <- OpenMStoMSstatsFormat(input,
+   #if $input.annotation:
+       #if $input.annotation.is_of_type('csv')
+	    annot <- read.csv("$input.annotation", header=TRUE)
+       #else
+	    annot <- read.table("$input.annotation", sep="\t", header=TRUE)
+       #end if
+   #end if
+
+    raw <- OpenMStoMSstatsFormat(input,
+                             #if $input.annotation:
                              annotation=annot,
+                             #end if
                              useUniquePeptide=$input.input_options.useUniquePeptide, 
                              summaryforMultipleRows=$input.input_options.summaryforMultipleRows, 
                              fewMeasurements="$input.input_options.fewMeasurements", 
-                             removeProtein_with1Peptide=$input.input_options.removeProtein_with1Peptide)
+                             removeProtein_with1Feature=$input.input_options.removeProtein_with1Feature)
+
 
 #elif $input.input_src == 'OpenSWATH'
 
-  #if $input.evidence.is_of_type('csv')
-input <- read.csv("$input.evidence", header=TRUE)
+  #if $input.openswath_input.is_of_type('csv')
+	input <- read.csv("$input.openswath_input", header=TRUE)
   #else
-input <- read.table("$input.evidence", sep="\t", header=TRUE)
+	input <- read.table("$input.openswath_input", sep="\t", header=TRUE)
   #end if
   #if $input.annotation.is_of_type('csv')
-annot <- read.csv("$input.annotation", header=TRUE)
+	annot <- read.csv("$input.annotation", header=TRUE)
   #else
-annot <- read.table("$input.annotation", sep="\t", header=TRUE)
+	annot <- read.table("$input.annotation", sep="\t", header=TRUE)
   #end if
 
 raw <- OpenSWATHtoMSstatsFormat(input,
@@ -109,6 +116,34 @@
                                 removeProtein_with1Feature=$input.input_options.removeProtein_with1Feature,
                                 summaryforMultipleRows=$input.input_options.summaryforMultipleRows)
 
+#elif $input.input_src == 'Skyline'
+
+  #if $input.skyline_input.is_of_type('csv')
+	input <- read.csv("$input.skyline_input", header=TRUE)
+  #else
+	input <- read.table("$input.skyline_input", sep="\t", header=TRUE)
+  #end if
+
+  #if $input.annotation:
+      #if $input.annotation.is_of_type('csv')
+	    annot <- read.csv("$input.annotation", header=TRUE)
+      #else
+	    annot <- read.table("$input.annotation", sep="\t", header=TRUE)
+      #end if
+  #end if
+
+raw <- SkylinetoMSstatsFormat(input,
+                  	        #if $input.annotation:
+				annotation = annot,
+				#end if
+				removeiRT = $input.input_options.removeiRT,
+				filter_with_Qvalue = $input.input_options.filter_with_Qvalue,
+				qvalue_cutoff = $input.input_options.qvalue_cutoff,
+				useUniquePeptide = $input.input_options.useUniquePeptide,
+				fewMeasurements="$input.input_options.fewMeasurements",
+				removeOxidationMpeptides = $input.input_options.removeOxidationMpeptides,
+				removeProtein_with1Feature = $input.input_options.removeProtein_with1Feature)
+
 #end if
 
 processed_data <- dataProcess(raw,
@@ -117,7 +152,6 @@
                           #if $dp_options.norm.normalization == 'globalStandards'
                           nameStandards=c($dp_options.norm.nameStandards),
                           #end if
-                          ## address=$dp_options.address,
                           fillIncompleteRows=$dp_options.fillIncompleteRows,
                           featureSubset="$dp_options.features.featureSubset",
                           #if $dp_options.features.featureSubset == 'topN'
@@ -140,8 +174,7 @@
                           censoredInt="$dp_options.censoredInt",
                           #end if
                           cutoffCensored="$dp_options.cutoffCensored",
-                          maxQuantileforCensored=$dp_options.maxQuantileforCensored,
-                          clusters=NULL)
+                          maxQuantileforCensored = $dp_options.maxQuantileforCensored)
   
 #if 'processed_data' in $selected_outputs
 write.table(processed_data\$ProcessedData, "ProcessedData.tsv", sep = "\t", quote = F, row.names = F, dec = ".")
@@ -150,18 +183,39 @@
 write.table(processed_data\$RunlevelData, "RunlevelData.tsv", sep = "\t", quote = F, row.names = F, dec = ".")
 #end if
 
-#if 'qcplot' in $selected_outputs
-dataProcessPlots(data = processed_data, type="QCplot", ylimUp=35,
-                 width=5, height=5, address="MSStats_only_")
-#end if
+#for $plot_type in $selected_outputs
+    #if $plot_type[-4:] == "Plot"
 
-#if 'profile_plot' in $selected_outputs
-dataProcessPlots(data = processed_data, type="ProfilePlot",  ylimUp=35, featureName="NA", width=5, height=5, address="MSStats_only_")
-#end if
+	dataProcessPlots(data = processed_data,
+			     type = '$plot_type',
+			     featureName = "$out_plots_opt.featureName",
+			     #if $out_plots_opt.ylimUp:
+                            ylimUp = $out_plots_opt.ylimUp,
+                            #end if
+                            #if $out_plots_opt.ylimDown:
+                            ylimDown = $out_plots_opt.ylimDown,
+                            #end if
+                            scale = $out_plots_opt.scale,
+                            interval = "$out_plots_opt.interval",
+                            x.axis.size = $out_plots_opt.x_axis_size,
+                            y.axis.size = $out_plots_opt.y_axis_size,
+                            text.size = $out_plots_opt.text_size,
+                            text.angle = $out_plots_opt.text_angle,
+                            legend.size = $out_plots_opt.legend_size,
+                            dot.size.profile = $out_plots_opt.dot_size_profile,
+                            dot.size.condition = $out_plots_opt.dot_size_condition,
+                            width = $out_plots_opt.width,
+                            height = $out_plots_opt.height,
+                            #if $out_plots_opt.which_Protein.select != 'list'
+                            which.Protein = "$out_plots_opt.which_Protein.select",
+                            #else
+                            which.Protein = unlist(read.table("$out_plots_opt.which_Protein.protein_list", sep = "\n", header = FALSE), use.names = FALSE),
+                            #end if
+                            remove_uninformative_feature_outlier = $out_plots_opt.remove_uninformative_feature_outlier,
+                            address="MSStats_only_")
 
-#if 'condition_plot' in $selected_outputs
-dataProcessPlots(data = processed_data, type="ConditionPlot", width=5, height=5, address="MSStats_only_")
-#end if
+    #end if
+#end for
 
 ## Quantifiaction
 #if 'quant_sample_matrix' in $selected_outputs
@@ -218,37 +272,68 @@
 
 ## Visualizations:
 
-  #if 'qqplot' in $group.select_outputs
-\# normal quantile-quantile plots
-modelBasedQCPlots(data=comparisons, type="QQPlots",
-                  width=5, height=5, address="MSStats_group_")
-  #end if
+#for $plot_type in $group.select_outputs
+
+    #if $plot_type == "QQPlots" or $plot_type == "ResidualPlots"
 
-  #if 'residualplot' in $group.select_outputs
-\# residual plots
-modelBasedQCPlots(data=comparisons, type="ResidualPlots",
-                  width=5, height=5, address="MSStats_group_")
-  #end if
+	modelBasedQCPlots(data = comparisons,
+				type = "$plot_type",
+				axis.size = $comparison_plots_opt.axis_size,
+				dot.size = $comparison_plots_opt.dot_size,
+				text.size = $comparison_plots_opt.text_size,
+				legend.size = $comparison_plots_opt.legend_size,
+				width = $comparison_plots_opt.width,
+				height = $comparison_plots_opt.height,
+				#if $comparison_plots_opt.which_Protein.select != 'list'
+		                which.Protein = "$comparison_plots_opt.which_Protein.select",
+		                #else
+		                which.Protein = unlist(read.table("$comparison_plots_opt.which_Protein.protein_list", sep = "\n", header = FALSE), use.names = FALSE),
+		                #end if
+				address="MSStats_group_")
+
+
+    #elif $plot_type == "VolcanoPlot" or $plot_type == "Heatmap" or $plot_type == "ComparisonPlot"
 
-  #if 'volcanoplot' in $group.select_outputs
-\# volcano plot
-groupComparisonPlots(data = comparisons\$ComparisonResult, type = 'VolcanoPlot',ProteinName=FALSE,
-                     width=5, height=5, address="MSStats_group_")
-  #end if
+	groupComparisonPlots(data = comparisons\$ComparisonResult,
+				type = "$plot_type",
+				sig = $comparison_plots_opt.sig,
+				#if $comparison_plots_opt.FCcutoff:
+				FCcutoff = $comparison_plots_opt.FCcutoff,
+				#end if
+				logBase.pvalue = $comparison_plots_opt.logBase_pvalue,
+			        #if $comparison_plots_opt.ylimUp:
+				ylimUp = $comparison_plots_opt.ylimUp,
+				#end if
+				#if $comparison_plots_opt.ylimDown:
+				ylimDown = $comparison_plots_opt.ylimDown,
+				#end if
+				x.axis.size = $comparison_plots_opt.x_axis_size,
+				y.axis.size = $comparison_plots_opt.y_axis_size,
+				dot.size = $comparison_plots_opt.dot_size,
+				text.size = $comparison_plots_opt.text_size,
+				text.angle = $comparison_plots_opt.text_angle,
+				legend.size = $comparison_plots_opt.legend_size,
+				ProteinName = $comparison_plots_opt.ProteinName,
+				colorkey = $comparison_plots_opt.colorkey,
+				numProtein = $comparison_plots_opt.numProtein,
+				clustering = "$comparison_plots_opt.clustering",
+				width = $comparison_plots_opt.width,
+				height =  $comparison_plots_opt.height,
+				#if $comparison_plots_opt.which_Protein.select != 'list'
+		                which.Protein = "$comparison_plots_opt.which_Protein.select",
+		                #else
+		                which.Protein = unlist(read.table("$comparison_plots_opt.which_Protein.protein_list", sep = "\n", header = FALSE), use.names = FALSE),
+		                #end if
+		                #if $comparison_plots_opt.which_Comparison.select != 'list'
+		                which.Comparison = "$comparison_plots_opt.which_Comparison.select",
+		                #else
+		                which.Comparison = unlist(read.table("$comparison_plots_opt.which_Comparison.comparison_list", sep = "\n", header = FALSE), use.names = FALSE),
+		                #end if
+		                address="MSStats_group_")
 
-  #if 'heatmap' in $group.select_outputs
-\# heatmap - works only for more than 1 comparison
-if (nrow(comparison)>1)
-	{
-	groupComparisonPlots(data = comparisons\$ComparisonResult, type = 'Heatmap', address="MSStats_group_")
-	}
-  #end if
 
-  #if 'comparisonplot' in $group.select_outputs
-\#comparison
-groupComparisonPlots(data=comparisons\$ComparisonResult, type="ComparisonPlot",
-                     width=5, height=5, address="MSStats_group_")
-  #end if
+     #end if
+#end for
 
 #end if
         ]]></configfile>
@@ -258,18 +343,19 @@
             <param name="input_src" type="select" label="input source">
                 <option value="MSstats">MStats 10 column format</option>
                 <option value="MaxQuant">MaxQuant</option>
-                <!-- 
                 <option value="OpenMS">OpenMS</option>
-                -->
                 <option value="OpenSWATH">OpenSWATH</option>
+                <!--option value="DIAUmpire">DIA-Umpire</option-->
+                <option value="Skyline">Skyline</option>
             </param>
             <when value="MSstats">
                 <param name="msstats_input" type="data" format="tabular,csv" label="MSstats 10-column input"/>
             </when>
             <when value="MaxQuant">
                 <param name="evidence" type="data" format="tabular,csv" label="evidence.txt - feature-level data"/>
-                <param name="annotation" type="data" format="tabular,csv" label="annotation.txt data which includes Raw.file, Condition, BioReplicate, Run, IsotopeLabelType information"/>
-                <param name="proteinGroups" type="data" format="tabular,csv" label="proteinGroups.txt" help="It needs to matching protein group ID. If proteinGroups=NULL, use 'Proteins' column in 'evidence.txt'"/>
+                <param name="proteinGroups" type="data" format="tabular,csv" optional="True" label="proteinGroups.txt - protein-level data" help="It needs to match protein group ID. If not selected use Proteins in 'evidence.txt'"/>
+                <param name="annotation" type="data" format="tabular,csv" label="annotation file" help="Columns: Raw.file, Condition (the name of the condition is not allowed to start with a number or contain any special characters.), BioReplicate, Run, IsotopeLabelType information"/>
+
                 <param name="proteinID" type="select" label="Select Protein ID in evidence.txt">
                     <option value="Proteins">Protein column</option>
                     <option value="Leading.razor.protein">Leading razor protein column</option>
@@ -278,38 +364,51 @@
                     <expand macro="useUniquePeptide"/>
                     <expand macro="summaryforMultipleRows"/>
                     <expand macro="fewMeasurements"/>
-                    <param name="removeMpeptides" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Remove the peptides including 'M' sequence"/>
-                    <param name="removeOxidationMpeptides" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Remove the peptides including Oxidized 'M' sequence"/>
+                    <param name="removeMpeptides" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove the peptides including 'M' sequence"/>
+                    <param name="removeOxidationMpeptides" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove the peptides including Oxidized 'M' sequence"/>
                     <expand macro="removeProtein_with1Peptide"/>
                 </section>
             </when>
-            <!--
             <when value="OpenMS">
-                <param name="evidence" type="data" format="tabular,csv" label="OpenSWATH_input"/>
-                <param name="annotation" type="data" format="tabular,csv" label="OpenSWATH_annotation"/>
-                <section name="input_options" title="MaxQtoMSstatsFormat Options" expanded="false">
+                <param name="openms_input" type="data" format="tabular,csv" label="OpenMS input (e.g. output of MSstatsConverter)"/>
+                <param name="annotation" type="data" format="tabular,csv" optional="true" label="If annotation is not yet complete in OpenMS, use annotation with Raw.file, Condition (the name of the condition is not allowed to start with a number or contain any special characters), BioReplicate, and Runinformation"/>
+                <section name="input_options" title="OpenMStoMSstatsFormat Options" expanded="false">
                     <expand macro="useUniquePeptide"/>
                     <expand macro="summaryforMultipleRows"/>
                     <expand macro="fewMeasurements"/>
-                    <expand macro="removeProtein_with1Peptide"/>
+                    <param name="removeProtein_with1Feature" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove the proteins which have only 1 peptide and charge"/>
                 </section>
             </when>
-            -->
             <when value="OpenSWATH">
-                <param name="evidence" type="data" format="tabular,csv" label="OpenSWATH_input"/>
-                <param name="annotation" type="data" format="tabular,csv" label="OpenSWATH_annotation"/>
+                <param name="openswath_input" type="data" format="tabular,csv" label="OpenSWATH_input"/>
+                <param name="annotation" type="data" format="tabular,csv" label="annotation file"/>
                 <section name="input_options" title="OpenSWATHtoMSstatsFormat Options" expanded="false">
                     <param name="filter_with_mscore" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Remove the peptides including 'M' sequence"/>
-                    <param name="mscore_cutoff" type="float" value="0.01" min="0" max="1.0" label="mscore_cutoff"/>
+                    <param name="mscore_cutoff" type="float" value="0.01" min="0" max="1.0" label="m_score cutoff"/>
                     <expand macro="useUniquePeptide"/>
                     <expand macro="fewMeasurements"/>
                     <expand macro="summaryforMultipleRows"/>
                     <param name="removeProtein_with1Feature" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove the proteins which have only 1 peptide and charge"/>
                 </section>
             </when>
-        </conditional>
+	    <when value="Skyline">
+		<param name="skyline_input" type="data" format="tabular,csv" label="Skyline input"/>
+	        <param name="annotation" type="data" optional="true" format="tabular,csv" label="annotation file"/>
+	        <section name="input_options" title="SkylinetoMSstatsFormat Options" expanded="false">
+	            <param name="removeiRT" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Remove iRT" help="Yes (default) will remove the proteins or peptides which are labeld ’iRT’ in ’StandardType’ column. No will keep them."/>
+	            <param name="filter_with_Qvalue" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Filter with Qvalue" help="Yes (default) will filter out the intensities that have greater than qvalue_cutoff in Detection QValue column. Those intensities will be replaced with zero and will be considered as censored missing values for imputation purpose."/>
+	            <param name="qvalue_cutoff" type="float" value="0.01" min="0" max="1.0" label="Cutoff for Detection QValue."/>
+	            <expand macro="removeProtein_with1Peptide"/>
+	            <expand macro="useUniquePeptide"/>
+                    <expand macro="fewMeasurements"/>
+	            <param name="removeOxidationMpeptides" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove Oxidation M peptides" help="Yes will remove the peptides including ’oxidation (M)’ in modification."/>
+	            <param name="removeProtein_with1Feature" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove proteins with 1 feature" help="Yes will remove the proteins which have only 1 peptide and charge."/>
+	        </section>
+	    </when>
+            </conditional>
+
         <section name="dp_options" title="dataProcess Options" expanded="false">
-            <param name="logTrans" type="select" label="Log-transform Variable ABUNDANCE with base:" help="(logTrans)">
+            <param name="logTrans" type="select" label="logarithm transformation of intensities with base 2 or 10." help="Intensities for original intensity between 0 and 1 will be replaced with zero value after normalization.">
                 <option value="2" selected="true">2</option>
                 <option value="10">10</option>
             </param>
@@ -318,34 +417,33 @@
                     <option value="equalizeMedians" selected="true">equalizeMedians - represents constant normalization</option>
                     <option value="quantile">quantile - quantile normalization</option>
                     <option value="globalStandards">globalStandards - normalization with global standards proteins</option>
-                    <option value="FALSE">no normalization is performed</option>
+                    <option value="FALSE">false - no normalization is performed</option>
                 </param>
                 <when value="equalizeMedians"/> 
                 <when value="quantile"/> 
-                <when value="globalStandards"> 
-                    <param name="nameStandards" type="text" value="" label="global standard peptide names">
-                        <help>peptide names should be double-quoted and separated by commas</help>
+                <when value="globalStandards">
+                    <param name="nameStandards" type="text" value="" label="global standard peptide names" help="Peptide names should be double-quoted and separated by commas">
                         <validator type="empty_field" />
                         <validator type="regex" message="double-quoted names separated by commas"><![CDATA[^".+"(,".+")*$]]></validator>
                     </param>
                 </when>
-                <when value="FALSE"/> 
+                <when value="FALSE"/>
             </conditional>
-            <param name="fillIncompleteRows" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Fill Incomplete Rows" help=" If the input dataset has incomplete rows, TRUE (default) adds the rows with intensity value=NA for missing peaks. FALSE reports error message with list of features which have incomplete rows"/>
+            <param name="fillIncompleteRows" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Fill Incomplete Rows" help="If the input dataset has incomplete rows, 'Yes' (default) adds the rows with intensity value=NA for missing peaks. 'No' reports error message with list of features which have incomplete rows"/>
             <conditional name="features">
-                <param name="featureSubset" type="select" label="Features to use">
+                <param name="featureSubset" type="select" label="Feature Subset">
                     <option value="all" selected="true">Use all features that the data set has</option>
                     <option value="top3">Use the top 3 features which have highest average of log2(intensity) across runs</option>
                     <option value="topN">Use the top N features which have highest average of log2(intensity) across runs</option>
-                    <option value="highQuality">Flag uninformative feature and outliers</option>
+                    <option value="highQuality">High quality: Flag uninformative feature and outliers</option>
                 </param>
                 <when value="all"/>
                 <when value="top3"/>
                 <when value="topN">
-                    <param name="n_top_feature" type="integer" value="3" min="1" label="The number of top features for featureSubset"/>
+                    <param name="n_top_feature" type="integer" value="3" min="1" label="The number of top features for Feature Subset"/>
                 </when>
                 <when value="highQuality">
-                    <param name="remove_uninformative_feature_outlier" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove features flagged with Uninformative feature_quality"/>
+                    <param name="remove_uninformative_feature_outlier" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove features flagged with uninformative feature quality"/>
                 </when>
             </conditional>
             <conditional name="summarize">
@@ -354,41 +452,77 @@
                     <option value="linear" selected="true">linear - linear mixed model</option>
                 </param>
                 <when value="TMP">
-                    <param name="MBimpute" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Impute Missing Values 'NA' or '0' (depending on censoredInt option) by Accelated failure model" help="(MBimpute) TRUE - inserts 'NA' or '0' (depending on censoredInt option), . FALSE uses the values assigned by cutoffCensored"/>
+                    <param name="MBimpute" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Impute Missing Values" help="Yes: inserts 'NA' or '0' (depending on censored intensity), No: uses the values assigned by cutoff value for censoring"/>
                     <param name="remove50missing" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove runs which have more than 50% missing values"/>
                 </when>
                 <when value="linear">
-                    <param name="equalFeatureVar" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Account for heterogeneous variation among intensities from different features" help="(equalFeatureVar) TRUE assumes equal variance among intensities from features. FALSE means that we cannot assume equal variance among intensities from features, then we will account for heterogeneous variation from different features"/>
+                    <param name="equalFeatureVar" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Account for heterogeneous variation among intensities from different features" help="Yes: assumes equal variance among intensities from features. No: means that we cannot assume equal variance among intensities from features, then we will account for heterogeneous variation from different features"/>
                 </when>
             </conditional>
-            <param name="censoredInt" type="select" label="Missing values to censor">
-                <help>The output from Skyline and Progenesis should use '0'</help>
-                <option value="NA" selected="true">Assume that all 'NA's in 'Intensity' column are censored</option>
-                <option value="0">Use zero intensities '0' as censored intensity</option>
-                <option value="NULL">Assume all NA intensites are randomly missing</option>
+            <param name="censoredInt" type="select" label="Censored intensity">
+                <help>The processing tools report missing values differently. This option is for distinguishwhich value should be considered as missing, and further whether it is censored or at random. Skyline and OpenSWATH input should use '0'. MaxQuant input should use 'NA'</help>
+                <option value="NA" selected="true">NA - Assume that all 'NA's in 'Intensity' column are censored</option>
+                <option value="0">0 - Use zero intensities '0' as censored intensity</option>
+                <option value="NULL">NULL - Assume all NA intensites are randomly missing</option>
             </param>
             <param name="cutoffCensored" type="select" label="Cutoff value for censoring">
                 <option value="minFeature" selected="true">minimum value for each feature</option>
                 <option value="minRun">minimum value for each run</option>
                 <option value="minFeatureNRun">smallest between minimum value of corresponding feature and minimum value of corresponding run</option>
             </param>
-            <param name="maxQuantileforCensored" type="float" value="0.999" min="0.75" max="1.0" label="Maximum quantile for deciding censored missing values"/>
+            <param name="maxQuantileforCensored" type="float" value="0.999" min="0" max="1.0" label="Maximum quantile for deciding censored missing values."/>
         </section>
         <param name="selected_outputs" type="select" multiple="true" optional="false" label="Select outputs">
             <option value="log" selected="true">MSstats log</option>
             <option value="r_script" selected="false">MSstats Rscript</option>
             <option value="processed_data" selected="true">MSstats ProcessedData</option>
             <option value="runlevel_data" selected="false">MSstats RunlevelData</option>
-            <option value="qcplot" selected="true">MSstats QCPlot.pdf</option>
-            <option value="profile_plot" selected="false">MSstats ProfilePlot.pdf</option>
-            <option value="profile_wsum_plot" selected="false">MSstats ProfilePlot_wSummarization.pdf</option>
-            <option value="condition_plot" selected="false">MSstats ConditionPlot.pdf</option>
+            <option value="QCPlot" selected="true">MSstats QCPlot</option>
+            <option value="ProfilePlot" selected="false">MSstats ProfilePlot</option>
+            <option value="profile_wsum_plot" selected="false">MSstats ProfilePlot_wSummarization</option>
+            <option value="ConditionPlot" selected="false">MSstats ConditionPlot</option>
             <option value="quant_sample_matrix" selected="false">Sample Quantification Matrix Table</option>
             <option value="quant_sample_long" selected="false">Sample Quantification Long Table</option>
             <option value="quant_group_matrix" selected="true">Group Quantification Matrix Table</option>
             <option value="quant_group_long" selected="false">Group Quantification Long Table</option>
         </param>
+        <section name="out_plots_opt" title="DataProcess Plot Options" expanded="false">
+            <param name="featureName" type="select" display="radio" label="Feature name for Profile Plot" help="Transition means printing feature legend intransition-level; Peptide means printing feature legend in peptide-level; NA means no feature legend printing.">
+                <option value="Transition" selected="true">Transition</option>
+                <option value="Peptide">Peptide</option>
+                <option value="NA">NA</option>
+            </param>
+             <param name="ylimUp" type="float" optional="true" label="For all three plots, upper limit for y-axis." help="Empty (default) for Profile Plot and QC Plot uses the upper limit as rounded off maximum of log2(intensities) after normalization + 3; for Condition Plot maximum of log ratio + SD or CI. Alternatively, insert specific value of y-axis limit."/>
+            <param name="ylimDown" type="float" optional="true" label="For all tree plots, lower limit for y-axis in the log scale" help="Empty (default) for Profile Plot and QCPlot uses 0; for Condition Plot is minimum of log ratio - SD or CI. Alternatively, insert specific value of lower y-axis limit.  "/>
 
+            <param name="scale" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Scale for Condition Plot" help=" No (Default) means each conditional level is not scaled  at  x-axis according to its actual value (equal space at x-axis). Yes means each conditional level is scaled at x-axis according to its actual value (unequal space at x-axis)."/>
+            <param name="interval" type="select" display="radio" label="Interval for Condition Plot" help="CI (default) uses confidence interval with 0.95 significant level for the width of error bar. SD uses standard deviation for the width of error bar.">
+                <option value="CI" selected="true">CI - confidence interval</option>
+                <option value="SD">SD - standard deviation</option>
+            </param>
+            <param name="x_axis_size" type="integer" min="1" value="10" label="Size of x-axis labeling for 'Run' in Profile Plot and QC Plot, and 'Condition' in Condition Plot"/>
+            <param name="y_axis_size" type="integer" min="1" value="10" label="Size of y-axis labeling"/>
+            <param name="text_size" type="integer" min="1" value="4" label="Size of labeling for feature names in normal QQPlots separately for each feature and size of labels represented each condition at the top of graph in Profile Plot and QC plot."/>
+            <param name="text_angle" type="integer" min="0" max="360" value="90" label="Angle of labels represented each condition at the top of graph in Profile Plot and QC plot or x-axis labeling in Condition plot."/>
+            <param name="legend_size" type="integer" min="1" value="7" label="Size of  feature names in residual plots and feature legend (transition-level or peptide-level) above graph in Profile Plot. "/>
+            <param name="dot_size_profile" type="integer" min="1" value="2" label="Size of dots in Profile plot"/>
+            <param name="dot_size_condition" type="integer" min="1" value="3" label="Size of dots in Condition plot"/>
+            <param name="width" type="integer" min="1" value="8" label="Width of the saved pdf file"/>
+            <param name="height" type="integer" min="1" value="5" label="Height of the saved pdf file"/>
+            <conditional name="which_Protein">
+                <param name="select" type="select" label="Select protein IDs to draw plots">
+                    <option value="all" selected="true">generate all plots for each protein</option>
+                    <option value="allonly">Option for QC plot: "allonly" will generate one QC plot with all proteins</option>
+                    <option value="list">Protein IDs as tabular input</option>
+                </param>
+                <when value="all"/>
+                <when value="allonly"/>
+                <when value="list">
+                    <param name="protein_list" type="data" format="tabular" label="List of proteins"/>
+                </when>
+            </conditional>
+            <param name="remove_uninformative_feature_outlier" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Remove uninformative feature outlier in profile plots" help="It only works after  when feature subset high Quality was used in dataProcess options. Yes allows to remove 1) the features are flagged in the column, feature_quality=Uninformative which are features with bad quality, 2) outliers that are flagged in the column, is_outlier=TRUE in profile plots. No (default) shows all features and intensities in profile plots."/>
+        </section>
         <conditional name="group">
             <param name="group_comparison" type="select" label="Compare Groups">
                 <option value="no">No</option>
@@ -399,107 +533,154 @@
                 <param name="comparison_matrix" type="data" format="tabular,csv" label="Comparison Matrix"/>
                 <param name="select_outputs" type="select" multiple="true" label="Select outputs">
                     <help>Heatmap requires more than one comparison</help>
-                    <option value="fittedmodel" selected="true">MSstats ComparisonFittedModel.txt</option>
+                    <option value="fittedmodel" selected="false">MSstats ComparisonFittedModel.txt</option>
                     <option value="comparison_result" selected="true">MSstats ComparisonResult.tsv</option>
                     <option value="model_qc" selected="false">MSstats ModelQC.tsv</option>
-                    <option value="qqplot" selected="false">MSstats QQPlot.pdf</option>
-                    <option value="residualplot" selected="false">MSstats ResidualPlot.pdf</option>
-                    <option value="volcanoplot" selected="true">MSstats VolcanoPlot.pdf</option>
-                    <option value="heatmap" selected="false">MSstats Heatmap.pdf</option>
-                    <option value="comparisonplot" selected="true">MSstats ComparisonPlot.pdf</option>
+                    <option value="QQPlots" selected="false">MSstats QQPlot</option>
+                    <option value="ResidualPlots" selected="false">MSstats ResidualPlot</option>
+                    <option value="VolcanoPlot" selected="true">MSstats VolcanoPlot</option>
+                    <option value="Heatmap" selected="false">MSstats Heatmap</option>
+                    <option value="ComparisonPlot" selected="true">MSstats ComparisonPlot</option>
                 </param>
             </when>
         </conditional>
+            <section name="comparison_plots_opt" title="Comparison Plot Options" expanded="false">
+            <param name="sig" type="float" min="0" max="1" value="0.05" label="FDR cutoff for the adjusted p-values in heatmap and volcano plot" help="Level of significance for comparison plot. 100(1-sig)% confidence interval will be drawn."/>
+            <param name="FCcutoff" type="float" optional="true" label="Involve fold change cutoff or not for volcano plot or heatmap." help="Empty (default) means no fold change cutoff is applied for significance analysis. Specific value means specific fold change cutoff is applied"/>
+            <param name="logBase_pvalue" type="select" label="For volcano plot or heatmap, logarithm transformation of adjusted p-valuewith base 2 or 10">
+                <option value="2">2</option>
+                <option value="10" selected="true">10</option>
+            </param>
+            <param name="ylimUp" type="float" optional="true" label="For all three plots, upper limit for y-axis." help="Empty (default) for volcano plot/heatmap use maximum of -log2 (adjusted p-value) or -log10 (adjusted p-value), for comparison plot uses maximum of log-fold change + CI. Alternatively, insert specific value of y-axis limit. "/>
+            <param name="ylimDown" type="float" optional="true" label="For all tree plots, lower limit for y-axis in the log scale" help="Empty (default) for volcano plot/heatmap use minimum of -log2 (adjusted p-value) or -log10 (adjusted p-value), for comparison plot uses minimum of log-fold change - CI. Alternatively, insert specific value of y-axis limit.  "/>
+            <param name="xlimUp" type="float" optional="true" label="For Volcano plot, the limit for x-axis" help="Empty (default) for use maximum for absolute value of log-fold change or 3 as default if maximum for absolute value of log-fold change is less than 3. Alternatively, insert specific value of y-axis limit."/>
+            <param name="axis_size" type="integer" min="1" value="10" label="Size of axes labels for Residual and QQ Plots"/>
+            <param name="x_axis_size" type="integer" min="1" value="10" label="Size of x-axis labeling"/>
+            <param name="y_axis_size" type="integer" min="1" value="10" label="Size of y-axis labeling"/>
+            <param name="dot_size" type="integer" min="1" value="3" label="Size of dots in residual plots, QQPlots, volcano plot and comparison plot."/>
+            <param name="text_size" type="integer" min="1" value="4" label="Size  of Protein Name label in the graph for Volcano Plot."/>
+            <param name="text_angle" type="integer" min="0" max="360" value="90" label="Angle of x-axis labels represented each comparison at the bottom of graph incomparison plot."/>
+            <param name="legend_size" type="integer" min="1" value="7" label="Size of legend for color at the bottom of volcano plot. "/>
+            <param name="ProteinName" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Display protein names in Volcano Plot." help="Yes (default) means protein names, which are significant, are displayed next to the points. No means no protein names are displayed."/>
+            <param name="colorkey" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Show colour key"/>
+            <param name="numProtein" type="integer" min="1" value="100" max="180" label="Number of proteins which will be presented in each heatmap."/>
+            <param name="clustering" type="select" label="Determines how to order proteins and comparisons. Hierarchical cluster analysis with Ward method(minimum variance) is performed.">
+            	<help>’protein’ means that protein dendrogram is computed and reordered based on protein means (the order of row is changed). ’comparison’ means comparison dendrogram is computed and reordered based on comparison means (the order of comparison is changed). ’both’ means to reorder both protein and comparison.</help>
+                <option value="protein" selected="true">protein</option>
+                <option value="comparison">comparison</option>
+                <option value="both">both</option>
+            </param>
+            <param name="width" type="integer" min="1" value="8" label="Width of the saved pdf file"/>
+            <param name="height" type="integer" min="1" value="5" label="Height of the saved pdf file"/>
+            <conditional name="which_Protein">
+                <param name="select" type="select" label="Select protein IDs to draw plots">
+                    <option value="all" selected="true">generate all plots for each protein</option>
+                    <option value="list">Protein IDs as tabular input</option>
+                </param>
+                <when value="all"/>
+                <when value="list">
+                    <param name="protein_list" type="data" format="tabular" label="List of proteins"/>
+                </when>
+            </conditional>
+            <conditional name="which_Comparison">
+                <param name="select" type="select" label="Select comparisons to draw plots">
+                    <option value="all" selected="true">Generate all plots for each comparison</option>
+                    <option value="list">Comparison names as tabular input</option>
+                </param>
+                <when value="all"/>
+                <when value="list">
+                    <param name="comparison_list" type="data" format="tabular" label="List of comparisons"/>
+                </when>
+            </conditional>
+        </section>
     </inputs>
-
     <outputs>
-        <data name="log" format="txt" label="MSstats log">
+        <data name="log" format="txt" label="${tool.name} on ${on_string}: MSstats log">
             <filter>'log' in selected_outputs</filter>
         </data>
-        <data name="r_script" format="txt" label="MSstats Rscript">
+        <data name="r_script" format="txt" label="${tool.name} on ${on_string}: Rscript">
             <filter>'r_script' in selected_outputs</filter>
         </data>
-        <data name="processed_data" format="tabular" label="MSstats ProcessedData" from_work_dir="ProcessedData.tsv">
+        <data name="processed_data" format="tabular" label="${tool.name} on ${on_string}: ProcessedData" from_work_dir="ProcessedData.tsv">
             <filter>'processed_data' in selected_outputs</filter>
             <actions>
                 <action name="column_names" type="metadata" default="PROTEIN,PEPTIDE,TRANSITION,FEATURE,LABEL,GROUP_ORIGINAL,SUBJECT_ORIGINAL,RUN,GROUP,SUBJECT,INTENSITY,SUBJECT_NESTED,ABUNDANCE,FRACTION,originalRUN,censored" />
             </actions>
         </data>
-        <data name="runlevel_data" format="tabular" label="MSstats RunlevelData" from_work_dir="RunlevelData.tsv">
+        <data name="runlevel_data" format="tabular" label="${tool.name} on ${on_string}: RunlevelData" from_work_dir="RunlevelData.tsv">
             <filter>'runlevel_data' in selected_outputs</filter>
             <actions>
                <action name="column_names" type="metadata" default="RUN,Protein,LogIntensities,NumMeasuredFeature,MissingPercentage,more50missing,NumImputedFeature,originalRUN,GROUP,GROUP_ORIGINAL,SUBJECT_ORIGINAL,SUBJECT_NESTED,SUBJECT" />
             </actions>
         </data>
-        <data name="qcplot" format="pdf" label="MSstats QCPlot.pdf" from_work_dir="MSStats_only_QCPlot.pdf">
-            <filter>'qcplot' in selected_outputs</filter>
+        <data name="QCPlot" format="pdf" label="${tool.name} on ${on_string}: QCPlot" from_work_dir="MSStats_only_QCPlot.pdf">
+            <filter>'QCPlot' in selected_outputs</filter>
         </data>
-        <data name="profile_plot" format="pdf" label="MSstats ProfilePlot.pdf" from_work_dir="MSStats_only_ProfilePlot.pdf">
-            <filter>'profile_plot' in selected_outputs</filter>
+        <data name="ProfilePlot" format="pdf" label="${tool.name} on ${on_string}: Profile Plot" from_work_dir="MSStats_only_ProfilePlot.pdf">
+            <filter>'ProfilePlot' in selected_outputs</filter>
         </data>
-        <data name="profile_wsum_plot" format="pdf" label="MSstats ProfilePlot_wSummarization.pdf" from_work_dir="MSStats_only_ProfilePlot_wSummarization.pdf">
+        <data name="profile_wsum_plot" format="pdf" label="${tool.name} on ${on_string}: Profile Plot with Summarization" from_work_dir="MSStats_only_ProfilePlot_wSummarization.pdf">
             <filter>'profile_wsum_plot' in selected_outputs</filter>
         </data>
-        <data name="condition_plot" format="pdf" label="MSstats ConditionPlot.pdf" from_work_dir="MSStats_only_ConditionPlot.pdf">
-            <filter>'condition_plot' in selected_outputs</filter>
+        <data name="ConditionPlot" format="pdf" label="${tool.name} on ${on_string}: Condition Plot" from_work_dir="MSStats_only_ConditionPlot.pdf">
+            <filter>'ConditionPlot' in selected_outputs</filter>
         </data>
-        <data name="quant_sample_matrix" format="tabular" label="MSstats SampleQuantificationMatrix.tsv" from_work_dir="SampleQuantificationMatrix.tsv">
+        <data name="quant_sample_matrix" format="tabular" label="${tool.name} on ${on_string}: Sample Quantification Matrix" from_work_dir="SampleQuantificationMatrix.tsv">
             <filter>'quant_sample_matrix' in selected_outputs</filter>
         </data>
-        <data name="quant_sample_long" format="tabular" label="MSstats SampleQuantificationLong.tsv" from_work_dir="SampleQuantificationLong.tsv">
+        <data name="quant_sample_long" format="tabular" label=" ${tool.name} on ${on_string}:Sample Quantification Long" from_work_dir="SampleQuantificationLong.tsv">
             <filter>'quant_sample_long' in selected_outputs</filter>
             <actions>
                 <action name="column_names" type="metadata" default="Protein,Group_Subject,LogIntensity" />
             </actions>
         </data>
-        <data name="quant_group_matrix" format="tabular" label="MSstats GroupQuantificationMatrix.tsv" from_work_dir="GroupQuantificationMatrix.tsv">
+        <data name="quant_group_matrix" format="tabular" label="${tool.name} on ${on_string}: Group Quantification Matrix" from_work_dir="GroupQuantificationMatrix.tsv">
             <filter>'quant_group_matrix' in selected_outputs</filter>
         </data>
-        <data name="quant_group_long" format="tabular" label="MSstats GroupQuantificationLong.tsv" from_work_dir="GroupQuantificationLong.tsv">
+        <data name="quant_group_long" format="tabular" label="${tool.name} on ${on_string}: Group Quantification Long" from_work_dir="GroupQuantificationLong.tsv">
             <filter>'quant_group_long' in selected_outputs</filter>
             <actions>
                 <action name="column_names" type="metadata" default="Protein,Group,LogIntensity" />
             </actions>
         </data>
-        <data name="comparison_result" format="tabular" label="MSstats ComparisonResult.tsv" from_work_dir="ComparisonResult.tsv">
+        <data name="comparison_result" format="tabular" label="${tool.name} on ${on_string}: Comparison Result" from_work_dir="ComparisonResult.tsv">
             <filter> group['group_comparison'] == 'yes' and 'comparison_result' in group['select_outputs']</filter>
             <actions>
                 <action name="column_names" type="metadata" default="Protein,Label,log2FC,SE,Tvalue,DF,pvalue,adj.pvalue,issue,MissingPercentage,ImputationPercentage" />
             </actions>
         </data>
-        <data name="fittedmodel" format="txt" label="MSstats ComparisonFittedModel.txt" from_work_dir="ComparisonFittedModel.txt">
+        <data name="fittedmodel" format="txt" label="${tool.name} on ${on_string}: Comparison Fitted Model" from_work_dir="ComparisonFittedModel.txt">
             <filter> group['group_comparison'] == 'yes' and 'fittedmodel' in group['select_outputs']</filter>
         </data>
-        <data name="model_qc" format="tabular" label="MSstats ModelQC.tsv" from_work_dir="ModelQC.tsv">
+        <data name="model_qc" format="tabular" label="${tool.name} on ${on_string}: Model QC" from_work_dir="ModelQC.tsv">
             <filter> group['group_comparison'] == 'yes' and 'model_qc' in group['select_outputs']</filter>
             <actions>
                 <action name="column_names" type="metadata" default="RUN,PROTEIN,ABUNDANCE,NumMeasuredFeature,MissingPercentage,more50missing,NumImputedFeature,originalRUN,GROUP,GROUP_ORIGINAL,SUBJECT_ORIGINAL,SUBJECT_NESTED,SUBJECT,residuals,fitted" />
             </actions>
         </data>
-        <data name="qqplot" format="pdf" label="MSstats ModelQQ.pdf" from_work_dir="MSStats_group_QQPlot.pdf">
-            <filter> group['group_comparison'] == 'yes' and 'qqplot' in group['select_outputs']</filter>
+        <data name="QQPlots" format="pdf" label="${tool.name} on ${on_string}: Model QQ" from_work_dir="MSStats_group_QQPlot.pdf">
+            <filter> group['group_comparison'] == 'yes' and 'QQPlots' in group['select_outputs']</filter>
         </data>
-        <data name="residualplot" format="pdf" label="MSstats ResidualPlot.pdf" from_work_dir="MSStats_group_ResidualPlot.pdf">
-            <filter> group['group_comparison'] == 'yes' and 'residualplot' in group['select_outputs']</filter>
+        <data name="ResidualPlots" format="pdf" label="${tool.name} on ${on_string}: Residual Plot" from_work_dir="MSStats_group_ResidualPlot.pdf">
+            <filter> group['group_comparison'] == 'yes' and 'ResidualPlots' in group['select_outputs']</filter>
         </data>
-        <data name="volcanoplot" format="pdf" label="MSstats VolcanoPlot.pdf" from_work_dir="MSStats_group_VolcanoPlot.pdf">
-            <filter> group['group_comparison'] == 'yes' and 'volcanoplot' in group['select_outputs']</filter>
+        <data name="VolcanoPlot" format="pdf" label="${tool.name} on ${on_string}:Volcano Plot" from_work_dir="MSStats_group_VolcanoPlot.pdf">
+            <filter> group['group_comparison'] == 'yes' and 'VolcanoPlot' in group['select_outputs']</filter>
         </data>
-        <data name="heatmap" format="pdf" label="MSstats Heatmap.pdf" from_work_dir="MSStats_group_Heatmap.pdf">
-            <filter> group['group_comparison'] == 'yes' and 'heatmap' in group['select_outputs']</filter>
+        <data name="Heatmap" format="pdf" label="${tool.name} on ${on_string}: Heatmap" from_work_dir="MSStats_group_Heatmap.pdf">
+            <filter> group['group_comparison'] == 'yes' and 'Heatmap' in group['select_outputs']</filter>
         </data>
-        <data name="comparisonplot" format="pdf" label="MSstats ComparisonPlot.pdf" from_work_dir="MSStats_group_ComparisonPlot.pdf">
-            <filter> group['group_comparison'] == 'yes' and 'comparisonplot' in group['select_outputs']</filter>
+        <data name="ComparisonPlot" format="pdf" label="${tool.name} on ${on_string}: Comparison Plot" from_work_dir="MSStats_group_ComparisonPlot.pdf">
+            <filter> group['group_comparison'] == 'yes' and 'ComparisonPlot' in group['select_outputs']</filter>
         </data>
     </outputs>
     <tests>
-
         <test>
             <conditional name="input">
                 <param name="input_src" value="MSstats"/>
                 <param name="msstats_input" ftype="csv" value="msstats_testfile.txt"/>
             </conditional>
-            <param name="selected_outputs" value="processed_data,profile_plot,profile_wsum_plot,quant_sample_matrix,quant_group_long"/>
+            <param name="selected_outputs" value="processed_data,ProfilePlot,profile_wsum_plot,quant_sample_matrix,quant_group_long"/>
             <output name="processed_data">
                 <assert_contents>
                     <has_text text="D.GPLTGTYR" />
@@ -521,7 +702,7 @@
                     <has_n_lines n="37" />
                 </assert_contents>
             </output>
-            <output name="profile_plot" file="MSstats ProfilePlot.pdf" compare="sim_size"/>
+            <output name="ProfilePlot" file="MSstats ProfilePlot.pdf" compare="sim_size"/>
             <output name="profile_wsum_plot" file="profile_wsum_plot.pdf" compare="sim_size"/>                     
         </test>
 
@@ -534,7 +715,7 @@
             <param name="group_comparison" value="yes"/>
             <param name="comparison_matrix" ftype="csv" value="comparison_matrix.csv"/>
             </conditional>
-            <param name="select_outputs" value="residualplot,model_qc"/>
+            <param name="select_outputs" value="ResidualPlots,model_qc"/>
             <output name="processed_data">
                 <assert_contents>
                     <has_text text="D.GPLTGTYR" />
@@ -549,7 +730,7 @@
                     <has_n_lines n="108" />
                 </assert_contents>
             </output>
-            <output name="residualplot" file="residual_plot.pdf" compare="sim_size"/>                     
+            <output name="ResidualPlots" file="residual_plot.pdf" compare="sim_size"/>           
         </test>
 
         <test>
@@ -559,17 +740,17 @@
                 <param name="annotation" ftype="tabular" value="test_MQ_annotation.txt"/>
                 <param name="proteinGroups" ftype="tabular" value="test_MQ_proteingroups.tabular"/>
             </conditional>
-            <param name="selected_outputs" value="condition_plot,processed_data,runlevel_data"/>
+            <param name="selected_outputs" value="ConditionPlot,processed_data,runlevel_data"/>
             <conditional name="group">
                 <param name="group_comparison" value="yes"/>
                 <param name="comparison_matrix" ftype="csv" value="test_MQ_group12_comparison_matrix.csv"/>
             </conditional>
-            <param name="select_outputs" value="qqplot,comparison_result"/>
+            <param name="select_outputs" value="QQPlots,comparison_result"/>
             <output name="processed_data">
                 <assert_contents>
                     <has_text text="SPILVATAVAAR" />
                     <has_n_columns n="16" />
-                    <has_n_lines n="57" />
+                    <has_n_lines n="61" />
                 </assert_contents>
             </output>
             <output name="runlevel_data">
@@ -586,29 +767,103 @@
                     <has_n_lines n="4" />
                 </assert_contents>
             </output>
-            <output name="condition_plot" file="condition_plot.pdf" compare="sim_size"/>                     
-            <output name="qqplot" file="qq_plot.pdf" compare="sim_size"/>                     
+            <output name="ConditionPlot" file="condition_plot.pdf" compare="sim_size"/>
+            <output name="QQPlots" file="qq_plot.pdf" compare="sim_size"/>
         </test>
         
-        <!--
         <test>
             <conditional name="input">
                 <param name="input_src" value="OpenMS"/>
-                <param name="evidence" ftype="tabular" value=""/>
-                <param name="annotation" ftype="tabular" value=""/>
+                <param name="openms_input" ftype="tabular" value="openms_input.tabular"/>
+            </conditional>
+            <param name="selected_outputs" value="ConditionPlot,processed_data,runlevel_data"/>
+            <conditional name="group">
+                <param name="group_comparison" value="yes"/>
+                <param name="comparison_matrix" ftype="tabular" value="openms_comparisonmatrix.tabular"/>
+            	<param name="select_outputs" value="Heatmap"/>
             </conditional>
             <output name="processed_data">
                 <assert_contents>
-                    <has_text text="D.GPLTGTYR" />
+                    <has_text text="AAAPGIQLVAGEGFQSPLEDR_2_NA_0" />
+                    <has_text text="sp|P09938|RIR2_YEAST" />
+                    <has_n_columns n="16" />
+                    <has_n_lines n="121" />
+                </assert_contents>
+            </output>
+            <output name="runlevel_data">
+                <assert_contents>
+                    <has_text text="sp|P09457|ATPO_YEAST" />
+                    <has_n_columns n="13" />
+                    <has_n_lines n="76" />
                 </assert_contents>
             </output>
+            <output name="ConditionPlot" file="condition_plot_openms.pdf" compare="sim_size"/>
+            <output name="Heatmap" file="Heatmap_openms.pdf" compare="sim_size"/>
         </test>
-        -->
+        <test>
+            <conditional name="input">
+                <param name="input_src" value="Skyline"/>
+                <param name="skyline_input" ftype="csv" value="skyline_input_first100.csv"/>
+                <param name="annotation" ftype="csv" value="skyline_annotations.csv"/>
+                <param name="removeProtein_with1Peptide" value="TRUE"/>
+            </conditional>
+            <conditional name="summarize">
+                 <param name="MBimpute" value="FALSE"/>
+                 <param name="censoredInt" value="NULL"/>
+            </conditional>
+            <param name="selected_outputs" value="log,ProfilePlot,processed_data,quant_sample_long"/>
+            <param name="featureName" value="Peptide"/>
+            <param name="width" value="10"/>
+            <param name="height" value="7"/>
+            <conditional name="group">
+                <param name="group_comparison" value="yes"/>
+                <param name="comparison_matrix" ftype="tabular" value="comparison_matrix_skyline.tabular"/>
+                <param name="select_outputs" value="VolcanoPlot,ComparisonPlot,comparison_result"/>
+            </conditional>
+            <param name="FCcutoff" value="2" />
+	    <conditional name="which_Comparison">
+                <param name="select" value="list"/>
+                <param name="comparison_list" ftype="tabular" value="comparison_list_skyline.tabular"/>
+            </conditional>
+            <output name="quant_sample_long">
+                <assert_contents>
+                    <has_text text="P32125" />
+                    <has_text text="Condition5_5" />
+                    <has_n_columns n="3" />
+                    <has_n_lines n="6" />
+                </assert_contents>
+            </output>
+            <output name="log">
+                <assert_contents>
+                    <has_text text="ADVGFLC" />
+                    <has_text text="1 level of Isotope type labeling in this experiment" />
+                    <has_text text="The required input : provided - okay" />
+                </assert_contents>
+            </output>
+             <output name="processed_data">
+                <assert_contents>
+                    <has_text text="ADVGFLC[+57]NMLER_2_sum_NA" />
+                    <has_text text="319070944" />
+                    <has_n_columns n="15" />
+                    <has_n_lines n="46" />
+                </assert_contents>
+            </output>
+            <output name="comparison_result">
+                <assert_contents>
+                    <has_text text="c1-c4" />
+                    <has_text text="log2FC" />
+                    <has_n_lines n="4" />
+                </assert_contents>
+            </output>
+            <output name="ProfilePlot" file="Profile_plot_skyline.pdf" compare="sim_size"/>
+            <output name="VolcanoPlot" file="Volcano_plot_skyline.pdf" compare="sim_size"/>
+            <output name="ComparisonPlot" file="Comparison_plot_skyline.pdf" compare="sim_size"/>
+        </test>
 
         <test>
             <conditional name="input">
                 <param name="input_src" value="OpenSWATH"/>
-                <param name="evidence" ftype="tabular" value="test_swath_input_data.tabular"/>
+                <param name="openswath_input" ftype="tabular" value="test_swath_input_data.tabular"/>
                 <param name="annotation" ftype="tabular" value="test_swath_annotations.tabular"/>
             </conditional>
             <output name="processed_data">
@@ -618,13 +873,13 @@
                     <has_n_lines n="253" />
                 </assert_contents>
             </output>
-            <output name="qcplot" file="QC_plot.pdf" compare="sim_size"/>
+            <output name="QCPlot" file="QC_plot.pdf" compare="sim_size"/>
         </test>
 
         <test>
             <conditional name="input">
                 <param name="input_src" value="OpenSWATH"/>
-                <param name="evidence" ftype="tabular" value="test_swath_input_data.tabular"/>
+                <param name="openswath_input" ftype="tabular" value="test_swath_input_data.tabular"/>
                 <param name="annotation" ftype="tabular" value="test_swath_annotations.tabular"/>
             </conditional>
             <param name="selected_outputs" value="r_script,processed_data,quant_sample_long"/>
@@ -632,7 +887,7 @@
                 <param name="group_comparison" value="yes"/>
                 <param name="comparison_matrix" ftype="csv" value="test_swath_group12_comparison_matrix.csv"/>
             </conditional>
-            <param name="select_outputs" value="comparison_result,volcanoplot,residualplot"/>
+            <param name="select_outputs" value="comparison_result,VolcanoPlot,ResidualPlots"/>
             <output name="processed_data">
                 <assert_contents>
                     <has_text text="GETLGLIGFGR" />
@@ -654,8 +909,8 @@
                     <has_n_lines n="6" />
                 </assert_contents>
             </output>
-            <output name="volcanoplot" file="volcanoplot.pdf" compare="sim_size"/>
-            <output name="residualplot" file="residualplot.pdf" compare="sim_size"/>
+            <output name="VolcanoPlot" file="volcanoplot.pdf" compare="sim_size"/>
+            <output name="ResidualPlots" file="residualplot.pdf" compare="sim_size"/>
         </test>
 
     </tests>
@@ -668,19 +923,17 @@
 
 **Input data**
 
-- Data in tabular or csv format, generated by spectral processing tools such as `MaxQuant <http://coxdocs.org/doku.php?id=maxquant:start/>`_, `OpenSWATH <http://openswath.org/en/latest/>`_ will be automatically converted to 10-column MSstats format
+- Data in tabular or csv format, either in the 10-column MSstats format or the outputs of spectral processing tools such as `MaxQuant <http://coxdocs.org/doku.php?id=maxquant:start/>`_, `OpenSWATH <http://openswath.org/en/latest/>`_
 
-    - MaxQuant format: evidence.txt, proteinGroups.txt
-    - OpenSWATH format: pyprophet export file
-    - MSstats format: tabular file with 10 column either manually curated or other sources such as swath2stats tool which is implemented in Pyprophet export in Galaxy. For manual curation: Names of headers are fixed but not case sensitive: 
+    - MSstats format: tabular file with 10 column either manually curated or other sources such as Swath2stats tool which is implemented in Pyprophet export in Galaxy. For manual curation: Names of headers are fixed but not case sensitive: 
     
         - ProteinName: protein ID or peptide ID for peptide-level modeling and analysis; statistical analysis will be done separately for each unique label in this column
-        - PeptideSequence: Amino acid sequence for each peptides. If the peptide sequences should be distinguished based on post-translational modifications, this column can be renamed to PeptideModifiedSequence.
+        - PeptideSequence: Amino acid sequence for each peptide. If the peptide sequences should be distinguished based on post-translational modifications, this column can be renamed to PeptideModifiedSequence.
         - PrecursorCharge: charge state of precursor. 
         - FragmentIon: e.g. b4, y3, if unknown use a single value for all entries. 
         - ProductCharge: charge state of product. If unknown use 0 for all entries.
         - IsotopeLabelType: This column indicates whether this measurement is based on the endogenous peptides (use “L”) or labeled reference peptides (use “H”).
-        - Condition: For group comparison experiments, this column indicates groups of interest (such as “Disease” or “Control”). For time-course experiments, this column indicates time points (such as “T1”, “T2”, etc). If the experimental design contains both distinct groups of subjects and multiple time points per subject, this column should indicate a combination of these values (such as “Disease_T1”, “Disease_T2”, “Control_T1”, “Control_T2”, etc.).
+        - Condition: For group comparison experiments, this column indicates groups of interest (such as “Disease” or “Control”). The name of the condition is not allowed to start with a number or contain any special characters. For time-course experiments, this column indicates time points (such as “T1”, “T2”, etc). If the experimental design contains both distinct groups of subjects and multiple time points per subject, this column should indicate a combination of these values (such as “Disease_T1”, “Disease_T2”, “Control_T1”, “Control_T2”, etc.).
         - BioReplicate:  This column should contain a unique identifier for each biological replicate in the experiment. For example, in a clinical proteomic investigation this should be a unique patient id. Patients from distinct groups should have distinct ids. MSstats does not require the presence of technical replicates in the experiment. If the technical replicates are present, all samples or runs from a same biological replicate should have a same id. MSstats automatically detects the presence of technical replicates and accounts for them in the model-based analysis.
         - Run: This column contains the identifier of a mass spectrometry run. Each mass spectrometry run should have a unique identifier, regardless of the origin of the biological sample. In SRM experiments, if all the transitions of a biological or a technical replicate are split into multiple “methods” due to the technical limitations, each method should have a separate identifier. When processed by Skyline, distinct values of runs correspond to distinct input file names. It is possible to use the actual input file names as values in the column Run.
         - Intensity: This column should contain the quantified signal of a feature in a run without any transformation (in particular, no logarithm transform). The signals can be quantified as the peak height or the peak of area under curve. Any other quantitative representation of abundance can also be used.
@@ -695,26 +948,32 @@
               ...              ...              ...              ...           ...     
 
                  isotopelabeltype    condition     bioreplicate    run    intensity
-                       L                 1             ReplA        1      4298.12
-                       H                 1             ReplA        1      1974.59
-                       L                 1             ReplA        1      7183.22
-                       H                 1             ReplA        1      8467.58
+                       L              disease          ReplA        1      4298.12
+                       H              disease          ReplA        1      1974.59
+                       L              disease          ReplA        1      7183.22
+                       H              disease          ReplA        1      8467.58
                       ...               ...             ...        ...      ...
 
+    - MaxQuant format: evidence.txt, proteinGroups.txt; plus externally generated annotation file
+    - OpenSWATH format: pyprophet export file;  plus externally generated annotation file
 
 - Annotations as tabular file are needed for all input options except MSstats format
 
     - 4 columns with exactly these headers: Raw.file, Condition, BioReplicate, Run; additional 5th column only for MaxQuant: IsotopeLabelType
     
-        - Raw.file: File name that has to match exactly as it appears in the other input files (e.g. S1207.raw.thermo; in/AA12_mzML.mzML)
-        - all other columns: see description above for MSstats format columns
+        - Raw.file:
+
+            - OpenSWATH: File name needs to fit exactly how it is written in OpenSwatch output (e.g. "in/AA12_mzML.mzML")
+            - MaxQuant: File name needs to fit to how it is written in MaxQuant output, but the ".raw" has to be removed (e.g. "file1.raw.thermo.raw" --> "file1.raw.thermo")
+        - Condition: The name of the condition is not allowed to start with a number or contain any special characters
+        - All other columns: see description above for MSstats format columns
 
 - Comparison matrix as tabular file
 
     - 1st column: name of comparison
-    - additionally one column for each condition that is present in the tabular file. Use 1 and -1 to indicate the conditions to compare and 0 for conditions that are not compared. Multiple groups can be combined by using 0.5. 
-    - first row contains the names of the groups, they must exactly match the condition name used in the annotation file
-    - each additional row represents one comparison
+    - Additionally one column for each condition that is present in the tabular file. Use 1 and -1 to indicate the conditions to compare and 0 for conditions that are not compared. Multiple groups can be combined by using 0.5.
+    - First row contains the names of the groups, they must exactly match the condition name used in the annotation file
+    - Each additional row represents one comparison
     - Example for a two group comparison
     
        ::
@@ -735,53 +994,137 @@
 
 **Options**
 
-- data conversion from MaxQuant and OpenSWATH to MSstats format: 
+- Data conversion from MaxQuant and OpenSWATH to MSstats format:
+
+    - MaxQuant input: Contaminants and reverse and only identified by site from MaxQuant tool are automatically removed during conversion
+
+- Data processing options:
+
+    - Log transformation: log2 or log10 transformation of intensities
+    - Normalization of MS runs: If there are multiple fractionations or injections for one sample, normalization is performed by each fractionation or different m/z range from multiple injections.
 
-    - MaxQuant input: + Contaminant, + Reverse, + Only.identified.by.site, proteins are automatically removed during conversion
-    
-- data processing options: 
+        - equalizeMedians: The default option for normalization is equalizeMedians, where all intensities in a run are shifted by a constant, to equalize the median of intensities across runs for label-free experiment. This normalization method is appropriate when we can assume that the majority of proteins do not change across runs. Be cautious when using the equalizeMedians option for a label-free DDA dataset with only a small number of proteins. For label based experiment, equalizeMedians equalizes the median of reference intensities across runs and is generally proper even for a dataset with a small number of proteins. 
+        - globalStandards:  If you have a spiked in standard, you may set this option to define the standard with name Standardsoption.
+        - quantile: The distribution of all the intensities in each run will become the same across runs for label-free experiment. For label-based experiment, the distribution of all the reference intensities will become the same across runs and all the endogenous intensities are shifted by a constant corresponding to reference intensities.
+        - FALSE: No normalization is performed. If you had your own normalization before MSstats use this option.
+
+    - Feature selection
 
-    - MaxQuant input: Contaminants and reverse and only ID by site) from MaxQuant tool are automatically removed; 
-    - log transformation
-    - normalization of MS runs
-    - Feature selection
+        - all: Use all features in the dataset.
+        - top3: Use top 3 features which have highest average of log(intensity) across runs.
+        - topN: Use top N (specify number) features which have highest average of log(intensity) across runs.
+        - highQuality: Detect and flag uninformative features (as Uninformative in  the feature_quality column) and outliers (as TRUE in the is_outliercolumn). These uninformative content may be excluded  from run-level summarization by setting the remove features flagged with uninformative feature quality option to TRUE.
+
+    - Summarizing intensities per MS run
+
+        - TMP: Tukey’s median polish.  Robust parameter estimation method with median across rows and columns. Prerequisite for missing value imputation.
+        - linear: Linear model (lmfunction). Average-based summarization.        
+        
     - Missing value imputation: 
     
-        - MaxQuant input: All missing values are NA, usecensoredInt must be 'NA'
-        - OpenSWATH input: secensoredInt must be '0'
-        - Summary method: TMP + censoredInt = NULL: It assumes that all intensities are missing at random, therefore no action with MBimpute = FALSE or error with MBimpute = TRUE
-        - censoredInt='NA'or'0'& MBimpute=TRUE: AFT model-based imputation usingcutoffCensoredvalue in the AFT model
-        - censoredInt='NA'or'0'&MBimpute=FALSE: censored intensities (hereNA’s) will be replaced withthe value specified incutoffCensored.
-    - Summarizing intensities per MS run
-- group comparison: automatic detection of differentially abundant proteins between two conditions, conditions have to be specified with the 'comparison matrix'
-- quantification per sample or group
+        - Impute Missing Values: Only possible for Summarization Method TMP. Censored missing values will be determined (by censored intensity; cutoff value for censoring and Maximum quantile for deciding censored missing values") and imputed by Accelerated Failure Time model.
+
+        - Remove runs which have more than 50% missing values: Yes or no.
+        - Account for heterogeneous variation among intensities from different features: Yes: assumes equal variance among intensities from features. No: means that we cannot assume equal variance among intensities from features, then we will account for heterogeneous variation from different features
+        - Censored Intensity: The processing tools report missing values differently. This option is for distinguishwhich value should be considered as missing, and further whether it is censored or at random
+
+            - NA - It assumes that all NAs in Intensity column are censored.
+            - 0 - It assumes that all values between 0 and 1 in Intensity column are censored. If there areNAs inIntensitywith this option, NAs will be considered as random missing.
+            - NULL - It assumes that all missing values are randomly missing.
+            - Skyline and OpenSWATH input should use '0'. MaxQuant input should use 'NA'
+        - Cutoff value for censoring: cutoff for AFT model; only with censored intensity 'NA' or '0'; if NULL it assumes that there is no censored missing and any imputation will not be performed. In case that there are completely missing measurements in a run for a protein, any imputation will not be performed. In addition, the condition, which has no measurement at all in a protein, will be not impute.
 
-    - sample: relative protein abundance in each biological replicate. If there are technical replicates for biological replicates,sample quantification will be the median among technical replicates. If there is no technical replicate for biological replicate (sample), sample quantification will be the same as run-level summarization.
-    - group: relative protein abundance in each condition, summarized over the biological replicates (median among sample quantification). In presence of completely missing values in a condition, the estimates will be zero
+            - minimum value for each feature: cutoff for AFT model will be the minimum value for each feature across runs. With this option, those runs with substantial missing measurements will be biased by the cutoff value. In such case, you may remove the runs that have more than 50% missing values from the analysis.
+            - minimum value for each run: cutoff for AFT model will be the minimum value for each run across features
+            - smallest between minimum value of corresponding feature and minimum value of corresponding run: cutoff for AFT model will be the smallest value between minimum valueof corresponding feature and minimum value of corresponding run
+        - Maximum quantile for deciding censored missing values: If you don’t want to apply the threshold of noise intensity in your data, you can use maxQuantileforCensored=NULL.
+    - Missing value imputation combination with summarization method TMP:
+
+        - Summarization method: TMP + censored intensity: 'NULL': It assumes that all intensities are missing at random, therefore no action with missing value imputation: No; or error with missing value imputation: Yes.
+        - Missing value imputation: Yes + censored intensity:'NA' or '0': AFT model-based imputation using cutoff value for censoring in the AFT model
+        - Missing value imputation: No + censored intensity:'NA' or '0': censored intensities will be replaced with the value specified  in cutoff value for censoring
+
+- Group comparison: automatic detection of differentially abundant proteins between two conditions, conditions have to be specified with the 'comparison matrix'
+- Quantification per sample or group: choose the corresponding output option
+
+    - Sample: relative protein abundance in each biological replicate. If there are technical replicates for biological replicates,sample quantification will be the median among technical replicates. If there is no technical replicate for biological replicate (sample), sample quantification will be the same as run-level summarization.
+    - Group: relative protein abundance in each condition, summarized over the biological replicates (median among sample quantification). In presence of completely missing values in a condition, the estimates will be zero
+
 
 **Output options**
 
 - Different outputs available. Especially for studies with many proteins, it is suggested to select only the necessary pdf outputs as many of them generate one plot per protein.
 
     - MSstats log - check log file for warnings and information on the analysis steps (txt)
-    - r-script - can be used to re-run analysis outside Galaxy (txt)
-    - processed_data - transformed, normalized, imputed intensities (tabular)
-    - runlevel_data - summarized intensities per run (tabular)
-    - qcplot - log2 intensity boxplot for all proteins and run on first page, followed by one boxplot per protein (pdf)
-    - profile_plot - log2 intensity profiles one plot per protein and run (pdf)
-    - profile_wsum_plot - log2 intensity profiles one plot per protein and run with run summarization (pdf)
-    - condition_plot - log2 intensity range for each protein and condition (pdf)
-    - quant_sample_matrix - relative protein abundance in each biological replicate (tabular)
-    - quant_sample_long - relative protein abundance in each biological replicate, long format (tabular)
-    - quant_group_matrix - relative protein abundance in each condition (tabular)
-    - quant_group_long - relative protein abundance in each condition, long format (tabular)
-    - comparison_result - summary of statistical results per protein and comparison (tabular)
-    - model_qc - summary statistics per run (tabular)
-    - qqplot - one QQplot per protein (pdf)
-    - residualplot - one residual plot per protein (pdf)
-    - volcanoplot - one volcano plot per comparison (pdf)
-    - heatmap - needs at least 2 comparisons, one heatmap for all proteins and comparisons (pdf)
-    - comparisonplot - log2 intensity range for each protein and comparison (pdf)    
+    - MSstats Rscript - can be used to re-run analysis outside Galaxy or to inspect the executed code (txt)
+    - MSstats ProcessedData - transformed, normalized, imputed intensities (tabular)
+
+        - Intensity column:  includes original intensities values
+        - Abundance column:  contains the log2 transformed and normalized intensities and it will used for run-level summarization
+        - Censored column:  has the decision about censored missing or not, based on censored Intensity and maximum quantile for deciding censored missing values options. Abundances with TRUE value in censored column will be considered as censored missing and imputed when Missing value imputation: Yes.
+
+    - MSstats RunlevelData - run and protein level summarized data (tabular)
+
+        - LogIntensities: log intensity summarized per run and protein, they will be used for the group comparison and summarized profile plot
+        - NumMeasuredFeature: shows how many features were used for summarization of the corresponding run and protein
+        - MissingPercentage: percentage of random and censoredmissing in the corresponding run and protein out of the total number of feature in the corresponding protein.
+        - more50missing: whether MissingPercentage is greater than 50% or not
+        - NumImputedFeatures: how many features were imputed in the corresponding run and protein
+
+    - MSstats QCPlot - log2 intensity boxplot for all proteins and run on first page, followed by one boxplot per protein (pdf)
+    - MSstats ProfilePlot - log2 intensity profiles one plot per protein and run (pdf)
+
+        -  Profile plot helps identify potential sources of variation (both variation of interest and nuisance variation) for each protein: show individual measurements for each peptide (peptide for DDA, transition for SRM orDIA) across runs, grouped per condition. Each peptide has a different color/type layout. Disconnected linesshow that there are missing value (NA).
+
+    - MSstats ProfilePlot_wSummarization  - log2 intensity profiles one plot per protein and run with run summarization (pdf)
+
+        - Run-level summarized data per protein. The same peptides (or transition) in the first plot are presented in grey, with the summarized values overlaid in red.
+
+    - MSstats ConditionPlot - log2 intensity range for each protein and condition (pdf)
+
+        - Visualizes potential systematic differences in protein intensities between conditions. Dots indicate the mean of log2 intensities for each condition, error bars indicate the confidence interval with 0.95 significant level for each condition. The intervals are for descriptive purposes only.
+
+    - Sample Quantification Matrix/Long Table  - relative protein abundance in each biological replicate in matrix (rows are proteins, and columns are combinations of biological replicate and group, filled with LogIntensities) or long format (row corresponding to relative protein abundances, and columns are Protein, Group, BioReplicate, LogIntensities) (tabular)
+
+        - If there are technical replicates for biological replicates, sample quantification will be the median among technical replicates. If there is no technical replicate for biological replicate (sample), sample quantification will be the same as run-level summarization. In presence of completely missing values in a biological replicate, the estimates will be zero.
+
+    - Group Quantification Matrix/Long Tableuant_group_matrix - relative protein abundance in each condition in matrix (rows are proteins, and columns are groups) or long format (row corresponding to relative protein abundances, and columns are Protein,  Group and LogIntensities) (tabular)
+
+        - Outputs the estimates of relative protein abundance in each condition, summarized over the biological replicates (median among sample quantification). In presence of completely missing values in a condition, the estimates will be zero.
+
+    - MSstats ComparisonFittedModel (txt)
+    - MSstats ComparisonResult - summary of statistical results per protein and comparison (tabular)
+
+        - Label: name of the comparison (e.g. condition1 - condition2)
+        - log2FC: log2 fold change for the given comparison name, e.g. condition1-condition2: positive values mean more abundant in condition1, negative values mean more abundant in condition2
+        - SE: standard error of the log2 fold change
+        - Tvalue: test statistic of the Student test
+        - DF: degree of freedom of the Student test
+        - pvalue: raw p-values
+        - adj. pvalue: adjusted p-values among all the proteins in the specific comparison
+        - issue: shows if there is any issue for inference in corresponding protein and comparison,for example,OneConditionMissing or CompleteMissing. If one of condition for compariosn is completely missing, it would flag with OneConditionMissing with adj.pvalue=0 and log2FC=Inf or -Inf even though pvalue=NA. For example, if you want to compare ‘condition1-condition2’, but condition2 has complete missing, log2FC=Inf and adj.pvalue=0. SE,Tvalue, and pvalue will be NA. If you want to compare ‘conditions - condition2’, but condition1 has complete missing, then log2FC=-Inf and adj.pvalue=0. But, please be careful for using this log2FC and adj.pvalue.
+
+    - MSstats ModelQC - summary statistics per run and protein (tabular)
+
+    - MSstats QQPlot - one QQplot per protein (pdf)
+
+        - Normal quantile-quantile plots for each protein, taking as input the results of model fitting and testing in groupComparison. Only large deviations of transition intensities from the straight line are problematic and indicate that the assumption of the normal distribution of the measurement errors may not hold.
+
+    - MSstats ResiudalPlot - one residual plot per protein (pdf)
+
+        - Residual plot shows variance of the residuals that is associated with the mean feature intensity. Any specific pattern, such as increasing or decreasing by predicted abundance, is problematic and indicates that the assumption of constant variance of the measurement error may not hold.
+
+    - MSstats VolcanoPlot - one volcano plot per comparison (pdf)
+
+        -  Visualizes the outcome of one comparison between conditions for all the proteins, and combine the information on statistical and practical significance. The y-axis displays the FDR-adjusted p-values on the negative log10 scale, representing statistical significance. The horizontal dashed line shows the FDR cutoff. The points above the FDR cutoff line are statistically significant proteins that are differentially abundant across conditions. These points are colored in red and blue for upregulated and downregulated proteins, respectively. The x-axis is the model-based estimate of fold change on log scale and represents practical significance. It is possible to specify a practical significance cutoff based on the estimate of fold change in addition to the statistical significance cutoff. If the fold change cutoff is specified, the points above the horizontal cutoff line but within the vertical cutoff line will be considered as not differentially abundant (and will be colored in black).
+
+    - MSstats Heatmap - needs at least 2 comparisons, one heatmap for all proteins and comparisons (pdf)
+
+        - Illustrates the patterns of up- and down-regulation of proteins in several comparisons. Columns in the heatmaps are comparison of conditions assigned in contrast matrix, and rows are proteins. The heatmaps display signed FDR-adjusted p-values of the tests, colored in red/blue for significantly up-/down-regulated proteins, while taking into account the specified FDR cutoff and the additional optional fold change cutoff. Brighter colors indicate stronger evidence in favor of differential abundance. Black color represents proteins that are not significantly differentially abundant.
+
+    - MSstats ComparisonPlot - log2 intensity range for each protein and comparison (pdf)
+
+        - Illustrates model-based estimates of log-fold changes, and the associated uncertainty, in several comparisons of conditions for one protein. X-axis is the comparison of interest. Y-axis is the log fold change. The dots are the model-based estimates of log-fold change, and the error bars are the model-based 95% confidence intervals. For simplicity, the confidence intervals are adjusted for multiple comparisons within protein only, using the Bonferroni approach. For proteins with N comparisons, the individual confidence intervals are at the level of 1-sig/N.
 
 For additional help please visit the `MSstats documentation <http://msstats.org/msstats-2/>`_
 
Binary file test-data/Comparison_plot_skyline.pdf has changed
Binary file test-data/Heatmap_openms.pdf has changed
Binary file test-data/MSstats ProfilePlot.pdf has changed
Binary file test-data/Profile_plot_skyline.pdf has changed
Binary file test-data/QC_plot.pdf has changed
Binary file test-data/Volcano_plot_skyline.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/comparison_list_skyline.tabular	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,1 @@
+c1-c2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/comparison_matrix_skyline.tabular	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,4 @@
+name	Condition1	Condition2	Condition3	Condition4	Condition5
+c1-c2	1	-1	0	0	0
+c1-c4	1	0	0	-1	0
+c5-c3	0	0	-1	0	1
Binary file test-data/condition_plot.pdf has changed
Binary file test-data/condition_plot_openms.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/openms_comparisonmatrix.tabular	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,3 @@
+name	c1	c2	c3	c4
+c1-c2	1	-2	0	0
+c3-c4	0	0	1	-1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/openms_input.tabular	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,100 @@
+ProteinName	PeptideSequence	PrecursorCharge	FragmentIon	ProductCharge	IsotopeLabelType	Condition	BioReplicate	Run	Intensity
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c1	1	1	391797000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c4	4	10	103656000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c4	4	11	361107000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c1	1	2	456756000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c1	1	3	389268000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c2	2	4	433488000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c2	2	5	371698000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c2	2	6	403492000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c3	3	7	366753000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c3	3	8	509756000
+sp|P09938|RIR2_YEAST	AAADALSDLEIK	2	NA	0	L	c3	3	9	74323100
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	2	NA	0	L	c1	1	1	19165300
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	2	NA	0	L	c4	4	10	20805400
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c4	4	12	44146400
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c1	1	2	67209100
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c1	1	3	53246300
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	2	NA	0	L	c2	2	4	25024400
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c2	2	5	66294800
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c2	2	6	54911100
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	2	NA	0	L	c3	3	7	22981500
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c3	3	8	78869100
+sp|P09938|RIR2_YEAST	AAADALSDLEIKDSK	3	NA	0	L	c3	3	9	43745000
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c1	1	1	58438900
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c4	4	10	49099300
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c4	4	11	73350000
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c4	4	12	52364300
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c1	1	2	82639800
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c1	1	3	95647200
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c2	2	4	25141100
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c2	2	5	59801200
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c2	2	6	59312000
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c3	3	7	50242100
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c3	3	8	53652600
+sp|P53075|SHE10_YEAST	AAAEEFQR	2	NA	0	L	c3	3	9	100298000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c1	1	1	155247000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c4	4	10	172277000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c4	4	11	174546000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c4	4	12	147823000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c1	1	2	202730000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c1	1	3	133993000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c2	2	4	140896000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c2	2	5	187559000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	2	NA	0	L	c2	2	6	14695600
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c2	2	6	151945000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c3	3	7	124059000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c3	3	8	186091000
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	2	NA	0	L	c3	3	9	14626600
+sp|P15180|SYKC_YEAST	AAAEGVANLHLDEATGEMVSK	3	NA	0	L	c3	3	9	165157000
+sp|Q99186|AP2M_YEAST	AAAGSVLLEDCK	2	NA	0	L	c2	2	6	9275840
+sp|Q99186|AP2M_YEAST	AAAGSVLLEDCK	2	NA	0	L	c3	3	9	8861320
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c1	1	1	563809000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c4	4	10	438937000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c4	4	11	659057000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c4	4	12	1139830000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c1	1	2	630880000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c1	1	3	1316880000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c2	2	4	541485000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c2	2	5	1100480000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c2	2	6	778427000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c3	3	7	651901000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c3	3	8	485655000
+sp|P05030|PMA1_YEAST	AAALVNK	2	NA	0	L	c3	3	9	1333400000
+sp|P18759|SEC18_YEAST	AAANHTPPDMTNMDTR	3	NA	0	L	c2	2	5	21203800
+sp|P18759|SEC18_YEAST	AAANHTPPDMTNMDTR	3	NA	0	L	c2	2	6	18526700
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c1	1	1	38302100
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c4	4	10	68752200
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c4	4	11	66311100
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c4	4	12	81202000
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c1	1	2	35729900
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c1	1	3	72558100
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c2	2	4	73702900
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c2	2	5	43056300
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c2	2	6	83497000
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c3	3	7	64895300
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c3	3	8	68602200
+sp|Q06505|IWS1_YEAST	AAAPAQTTTDYK	2	NA	0	L	c3	3	9	84040800
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c1	1	1	26375400
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c4	4	10	22316600
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c4	4	10	19949800
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c4	4	11	24275300
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c4	4	11	12153800
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c4	4	12	20450400
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c4	4	12	46088700
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c1	1	2	28279700
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c1	1	3	22167900
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c1	1	3	51390900
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c2	2	4	22536100
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c2	2	4	9078210
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c2	2	5	31947800
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c2	2	5	27529200
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c2	2	6	23376500
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c2	2	6	21282400
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c3	3	7	25548800
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c3	3	8	34622600
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	2	NA	0	L	c3	3	9	34296700
+sp|Q04697|GSF2_YEAST	AAAPGIQLVAGEGFQSPLEDR	3	NA	0	L	c3	3	9	66102400
+sp|P09457|ATPO_YEAST	AAAPPPVR	2	NA	0	L	c1	1	1	102933000
+sp|P09457|ATPO_YEAST	AAAPPPVR	2	NA	0	L	c4	4	10	59641400
+sp|P09457|ATPO_YEAST	AAAPPPVR	2	NA	0	L	c4	4	11	90159100
Binary file test-data/profile_wsum_plot.pdf has changed
Binary file test-data/qq_plot.pdf has changed
Binary file test-data/residual_plot.pdf has changed
Binary file test-data/residualplot.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/skyline_annotations.csv	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,16 @@
+Run,Condition,BioReplicate
+121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw,Condition1,1
+121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw,Condition1,1
+121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw,Condition1,1
+121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw,Condition2,2
+121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw,Condition2,2
+121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw,Condition2,2
+121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw,Condition3,3
+121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw,Condition3,3
+121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw,Condition3,3
+121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw,Condition4,4
+121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw,Condition4,4
+121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw,Condition4,4
+121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw,Condition5,5
+121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw,Condition5,5
+121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw,Condition5,5
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/skyline_input_first100.csv	Thu Jan 28 20:48:40 2021 +0000
@@ -0,0 +1,100 @@
+"Protein.Name","Peptide.Modified.Sequence","Precursor.Charge","Fragment.Ion","Product.Charge","Isotope.Label.Type","Condition","BioReplicate","File.Name","Area","Standard.Type","Truncated"
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","57702228",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","50146928",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","59282748",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","34586212",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","32641336",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","34703692",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","52011908",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","54330676",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","48446400",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","50924448",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","42963468",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","42393876",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","58562412",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","41016736",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","57790032",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","49801940",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","34649640",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","16148210",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","29145818",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","16059584",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","61953088",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","39688704",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","38133208",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","40416076",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","32964860",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","38210340",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","37501292",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+1]",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","31894682",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","17482538",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","10082984",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","6461920",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","6237339",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","48373384",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","33221656",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","11383855",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","10995118",NA,FALSE
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","#N/A",NA,NA
+"P32125","AGAAQTIVASQQR",2,"precursor [M+2]",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","19056040",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","60639436",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","364248224",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","396274944",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","373835328",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","388360800",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","412523168",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","386580320",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","392170528",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","311549216",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","423368640",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","411724288",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","310010912",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","374544800",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","28997302",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","321278016",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","296997216",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","333628256",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","364663264",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","291796128",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","336234368",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","279108064",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","339989376",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","256757888",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+1]",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","307291040",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","25312330",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","178654464",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","173188352",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","180525408",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","173980992",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","170795984",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","153135088",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","180872688",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","145207312",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix4",10,"121219_S_CCES_01_10_LysC_Try_1to10_Mixt_4_1.raw","180129616",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix4",11,"121219_S_CCES_01_11_LysC_Try_1to10_Mixt_4_2.raw","188455200",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix4",12,"121219_S_CCES_01_12_LysC_Try_1to10_Mixt_4_3.raw","142247280",NA,FALSE
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix5",13,"121219_S_CCES_01_13_LysC_Try_1to10_Mixt_5_1.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix5",14,"121219_S_CCES_01_14_LysC_Try_1to10_Mixt_5_2.raw","#N/A",NA,NA
+"P32125","AFAEAMANNSFNADEK",2,"precursor [M+2]",2,"light","Mix5",15,"121219_S_CCES_01_15_LysC_Try_1to10_Mixt_5_3.raw","154561872",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix1",1,"121219_S_CCES_01_01_LysC_Try_1to10_Mixt_1_1.raw","319070944",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix1",2,"121219_S_CCES_01_02_LysC_Try_1to10_Mixt_1_2.raw","301443168",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix1",3,"121219_S_CCES_01_03_LysC_Try_1to10_Mixt_1_3.raw","275819008",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix2",4,"121219_S_CCES_01_04_LysC_Try_1to10_Mixt_2_1.raw","282914080",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix2",5,"121219_S_CCES_01_05_LysC_Try_1to10_Mixt_2_2.raw","306392288",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix2",6,"121219_S_CCES_01_06_LysC_Try_1to10_Mixt_2_3.raw","311995872",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix3",7,"121219_S_CCES_01_07_LysC_Try_1to10_Mixt_3_1.raw","317509760",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix3",8,"121219_S_CCES_01_08_LysC_Try_1to10_Mixt_3_2.raw","253089648",NA,FALSE
+"P32125","ADVGFLC[+57]NMLER",2,"precursor",2,"light","Mix3",9,"121219_S_CCES_01_09_LysC_Try_1to10_Mixt_3_3.raw","330089504",NA,FALSE
Binary file test-data/volcanoplot.pdf has changed