annotate idpassemble.xml @ 15:4aa6a8331445 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
author galaxyp
date Tue, 07 Nov 2017 17:10:07 -0500
parents 87f2a3c9425b
children 0f02cec04a99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
1 <?xml version="1.0"?>
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
2 <tool id="idpassemble" name="idpAssemble" version="@VERSION@.2">
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
3 <description>Merge IDPicker databases from single files into a merged database, and filters the result at PSM/spectrum/peptide/protein/gene levels.</description>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
4 <macros>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
5 <import>macros.xml</import>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
6 </macros>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
7 <expand macro="requirements" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
8 <stdio>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
9 <exit_code range="1:" level="fatal" description="Job Failed" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
10 <regex match="^Error:.*$" source="both" level="fatal" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
11 </stdio>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
12 <command>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
13 <![CDATA[
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
14 #if len($input) < 2
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
15 cp '${input}' output &&
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
16 #end if
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
17
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
18 idpAssemble
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
19 -MaxFDRScore $MaxFDRScore
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
20 -MinDistinctPeptides $filter_at_gene_level_condition.MinDistinctPeptides
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
21 -MinSpectra $filter_at_gene_level_condition.MinSpectra
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
22 -MinAdditionalPeptides $filter_at_gene_level_condition.MinAdditionalPeptides
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
23 -MinSpectraPerDistinctMatch $MinSpectraPerDistinctMatch
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
24 -MinSpectraPerDistinctPeptide $MinSpectraPerDistinctPeptide
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
25 -MaxProteinGroupsPerPeptide $MaxProteinGroupsPerPeptide
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
26 #if $filter_at_gene_level_condition.FilterAtGeneLevel
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
27 -FilterAtGeneLevel 1
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
28 #end if
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
29 -SummarizeSources 1
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
30
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
31 #if $AssignSourceHierarchyCondition.HasAssignSourceHierarchy
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
32 -AssignSourceHierarchy '$AssignSourceHierarchyCondition.AssignSourceHierarchy'
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
33 #end if
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
34
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
35 #if $IsobaricSampleMappingCondition.HasIsobaricSampleMapping
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
36 -IsobaricSampleMapping '$IsobaricSampleMappingCondition.IsobaricSampleMapping'
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
37 #end if
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
38
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
39 #if len($input) > 1
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
40 -MergedOutputFilepath output
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
41 #for $i in $input
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
42 '${i.file_name}'
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
43 #end for
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
44 #else
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
45 output
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
46 #end if
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
47 ]]>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
48 </command>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
49 <inputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
50 <param name="input" type="data" format="idpdb" label="Input idpDB(s)" multiple="true"/>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
51 <param argument="-MaxFDRScore" type="float" label="Max FDR Score" min="0.00000001" value="0.05" help="Peptide-spectrum-matches (PSMs) with an FDR score (interpolated Q-value) higher than this will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
52 <conditional name="filter_at_gene_level_condition">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
53 <param argument="-FilterAtGeneLevel" type="boolean" truevalue="1" falsevalue="0" label="Filter at Gene Level" help="Apply filters at the gene level (i.e. 'min distinct peptides per gene group' instead of 'min distinct peptides per protein group')"/>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
54 <when value="1">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
55 <param argument="-MinDistinctPeptides" type="integer" label="Min Distinct Peptides per Gene Group" min="1" value="2" help="Gene groups with fewer than this number of peptides will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
56 <param argument="-MinSpectra" type="integer" label="Min Filtered Spectra per Gene Group" min="1" value="2" help="Gene groups with fewer than this number of spectra will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
57 <param argument="-MinAdditionalPeptides" type="integer" label="Min Additional Peptides per Gene Group" min="0" value="1" help="Gene groups that are not necessary to explain the presence of at least this many extra peptides will be from the filtered data set. A value of 1 means that each gene group must explain at least 1 peptide that other gene groups do not explain." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
58 </when>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
59 <when value="0">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
60 <param argument="-MinDistinctPeptides" type="integer" label="Min Distinct Peptides per Protein Group" min="1" value="2" help="Protein groups with fewer than this number of peptides will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
61 <param argument="-MinSpectra" type="integer" label="Min Filtered Spectra per Protein Group" min="1" value="2" help="Protein groups with fewer than this number of spectra will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
62 <param argument="-MinAdditionalPeptides" type="integer" label="Min Additional Peptides per Protein Group" min="0" value="1" help="Protein groups that are not necessary to explain the presence of at least this many extra peptides will be from the filtered data set. A value of 1 means that each protein group must explain at least 1 peptide that other protein groups do not explain." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
63 </when>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
64 </conditional>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
65 <param argument="-MinSpectraPerDistinctMatch" type="integer" label="Min Filtered Spectra per Distinct Match" min="1" value="1" help="Distinct matches with fewer than this number of spectra will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
66 <param argument="-MinSpectraPerDistinctPeptide" type="integer" label="Min Filtered Spectra per Distinct Peptide" min="1" value="1" help="Distinct peptides with fewer than this number of spectra will be excluded from the filtered data set." />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
67 <param argument="-MaxProteinGroupsPerPeptide" type="integer" label="Max Protein Groups per Distinct Peptide" min="0" value="10" help="Peptides that map to more than this number of protein groups will be excluded from the filtered data set. Highly ambiguous peptides are not very useful for quantitation." />
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
68
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
69 <conditional name="AssignSourceHierarchyCondition">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
70 <param name="HasAssignSourceHierarchy" type="boolean" truevalue="1" falsevalue="0" label="Assign sources to a hierarchy?"/>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
71 <when value="1">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
72 <param argument="-AssignSourceHierarchy" type="data" format="tabular" optional="true" label="Assign source files to groups" help="A tab-delimited file that organizes source files (e.g. individual runs in a fractionated experiment) into groups. See below for more details." />
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
73 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
74 <when value="0">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
75 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
76 </conditional>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
77 <conditional name="IsobaricSampleMappingCondition">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
78 <param name="HasIsobaricSampleMapping" type="boolean" truevalue="1" falsevalue="0" label="Assign sample names to reporter ions?"/>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
79 <when value="1">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
80 <param argument="-IsobaricSampleMapping" type="data" format="tabular" optional="true" label="Assign sample names to reporter ions" help="A tab-delimited file that gives sample names to isobaric reporter ion channels (i.e. iTRAQ, TMT) across a given source group. See below for more details." />
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
81 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
82 <when value="0">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
83 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
84 </conditional>
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
85 </inputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
86 <outputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
87 <data format="idpdb" name="output" from_work_dir="output" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
88 </outputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
89 <tests>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
90 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
91 <param name="input" value="201208-378803-mm.idpDB" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
92 <param name="MaxFDRScore" value="0.05" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
93 <param name="filter_at_gene_level_condition.MinDistinctPeptides" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
94 <param name="filter_at_gene_level_condition.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
95 <param name="filter_at_gene_level_condition.MinAdditionalPeptides" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
96 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
97 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
98 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
99 <output name="output" file="201208-378803-mm-filtered.idpDB" compare="sim_size" delta="500000" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
100 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
101 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
102 <param name="input" value="201208-378803-msgf.idpDB" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
103 <param name="MaxFDRScore" value="0.05" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
104 <param name="filter_at_gene_level_condition.MinDistinctPeptides" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
105 <param name="filter_at_gene_level_condition.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
106 <param name="filter_at_gene_level_condition.MinAdditionalPeptides" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
107 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
108 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
109 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
110 <output name="output" file="201208-378803-msgf-filtered.idpDB" compare="sim_size" delta="500000" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
111 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
112 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
113 <param name="input" value="201208-378803-cm.idpDB" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
114 <param name="MaxFDRScore" value="0.05" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
115 <param name="filter_at_gene_level_condition.MinDistinctPeptides" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
116 <param name="filter_at_gene_level_condition.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
117 <param name="filter_at_gene_level_condition.MinAdditionalPeptides" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
118 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
119 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
120 <param name="MaxProteinGroupsPerPeptide" value="10" />
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
121 <param name="HasAssignSourceHierarchy" value="1" />
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
122 <param name="AssignSourceHierarchy" value="assembly.tsv" ftype="tabular" />
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
123 <output name="output" file="201208-378803-cm-filtered.idpDB" compare="sim_size" delta="500000" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
124 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
125 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
126 <param name="input" value="201208-378803-mm.idpDB,201208-378803-msgf.idpDB,201208-378803-cm.idpDB" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
127 <param name="MaxFDRScore" value="0.05" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
128 <param name="filter_at_gene_level_condition.MinDistinctPeptides" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
129 <param name="filter_at_gene_level_condition.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
130 <param name="filter_at_gene_level_condition.MinAdditionalPeptides" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
131 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
132 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
133 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
134 <output name="output" file="201208-378803.idpDB" compare="sim_size" delta="500000" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
135 </test>
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
136 <test>
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
137 <param name="input" value="201208-378803-embeddedGenesAndQuantitation.idpDB" />
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
138 <param name="HasAssignSourceHierarchy" value="1" />
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
139 <param name="HasIsobaricSampleMapping" value="1" />
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
140 <param name="IsobaricSampleMapping" value="mapping.tsv" ftype="tabular" />
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
141 <param name="AssignSourceHierarchy" value="assembly.tsv" ftype="tabular" />
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
142 <output name="output" file="201208-378803-embeddedGenesAndQuantitationWithMapping.idpDB" compare="sim_size" delta="500000" />
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
143 </test>
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
144 </tests>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
145 <help>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
146 <![CDATA[
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
147 **What it does**
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
148
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
149 Merges and filters one or more IDPicker 3 idpDB files into a combined idpDB file. Protein assembly (e.g. parsimony) is conducted on the combined set of proteins.
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
150
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
151 ====
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
152
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
153 **AssignSourceHierarchy**
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
154
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
155 The assembly file is a tab-delimited file with two columns that organizes the sources (individual runs) into a hierarchy.
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
156 The first column is the name of a source group, the second column is the source path or name to assign to that group.
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
157 A forward slash in the group name adds another level to the hierarchy (just like a directory path).
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
158
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
159 *A simple example:*
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
160
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
161 ::
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
162
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
163 /repA repA1.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
164 /repA repA2.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
165 /repB repB1.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
166 /repB repB2.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
167
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
168
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
169 *A multi-level example:*
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
170
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
171 ::
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
172
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
173 /A/1 A1_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
174 /A/1 A1_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
175 /A/2 A2_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
176 /A/2 A2_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
177 /B/1 B1_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
178 /B/1 B1_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
179 /B/2 B2_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
180 /B/2 B2_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
181
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
182 ====
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
183
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
184 **IsobaricSampleMapping**
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
185
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
186 The mapping file is a tab-delimited file with two columns. The first column is the full path to a source group,
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
187 the second column is a comma-delimited list of sample names, in ascending order of reporter ion mass. The special
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
188 sample name *Reference*, if present, will be used to normalize the other channels. Samples named *Empty* will be
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
189 ignored.
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
190
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
191
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
192 *iTRAQ-4plex example:*
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
193
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
194 ::
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
195
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
196 /Case/Group1_A123_B456_C789 A123,B456,C789,Reference
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
197 /Case/Group2_D123_E456_F789 D123,E456,F789,Reference
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
198 /Ctrl/Group3_X123_Y456_Z789 Reference,X123,Y456,Z789
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
199 /Ctrl/Group4_U123_V456_None U123,Reference,V456,Empty
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
200
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
201
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
202 *TMT-10plex example:*
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
203
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
204 ::
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
205
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
206 /Group1_Cases1-4_Controls1-4 Case1,Case2,Case3,Case4,Reference,Control1,Control2,Control3,Control4,Reference
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
207 /Group2_Cases5-8_Controls5-8 Case5,Case6,Case7,Case8,Reference,Control5,Control6,Control7,Control8,Reference
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
208
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
209 ]]>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
210 </help>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
211 <citations>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
212 <citation type="doi">10.1021/pr900360j</citation>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
213 <citation type="bibtex">@misc{toolsGalaxyP, author = {Chilton, J, Chambers MC, et al.}, title = {Galaxy Proteomics Tools}, publisher = {GitHub}, journal = {GitHub repository},
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
214 year = {2015}, url = {https://github.com/galaxyproteomics/tools-galaxyp}}</citation> <!-- TODO: fix substitution of commit ", commit = {$sha1$}" -->
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
215 </citations>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
216 </tool>