annotate idpassemble.xml @ 19:85d92e1cc018 draft default tip

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 3cc1eda0c28ff138ac19c103c9fbb2a4841beed9"
author galaxyp
date Wed, 26 May 2021 19:55:07 +0000
parents 0f02cec04a99
children
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"?>
19
85d92e1cc018 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 3cc1eda0c28ff138ac19c103c9fbb2a4841beed9"
galaxyp
parents: 16
diff changeset
2 <tool id="idpassemble" name="idpAssemble" version="@VERSION@.0" profile="19.01">
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
19
85d92e1cc018 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 3cc1eda0c28ff138ac19c103c9fbb2a4841beed9"
galaxyp
parents: 16
diff changeset
18 export TMPDIR=\$_GALAXY_JOB_TMP_DIR &&
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
19 idpAssemble
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
20 -MaxFDRScore $MaxFDRScore
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
21 -MinDistinctPeptides $filter_at_gene_level_condition.MinDistinctPeptides
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
22 -MinSpectra $filter_at_gene_level_condition.MinSpectra
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
23 -MinAdditionalPeptides $filter_at_gene_level_condition.MinAdditionalPeptides
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
24 -MinSpectraPerDistinctMatch $MinSpectraPerDistinctMatch
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
25 -MinSpectraPerDistinctPeptide $MinSpectraPerDistinctPeptide
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
26 -MaxProteinGroupsPerPeptide $MaxProteinGroupsPerPeptide
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
27 #if $filter_at_gene_level_condition.FilterAtGeneLevel
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
28 -FilterAtGeneLevel 1
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
29 #end if
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
30 -SummarizeSources 1
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
31
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
32 #if $AssignSourceHierarchyCondition.HasAssignSourceHierarchy
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
33 -AssignSourceHierarchy '$AssignSourceHierarchyCondition.AssignSourceHierarchy'
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
34 #end if
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
35
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
36 #if $IsobaricSampleMappingCondition.HasIsobaricSampleMapping
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
37 -IsobaricSampleMapping '$IsobaricSampleMappingCondition.IsobaricSampleMapping'
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
38 #end if
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
39
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
40 #if len($input) > 1
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
41 -MergedOutputFilepath output
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
42 #for $i in $input
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
43 '${i.file_name}'
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
44 #end for
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
45 #else
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
46 output
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
47 #end if
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
48 ]]>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
49 </command>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
50 <inputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
51 <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
52 <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
53 <conditional name="filter_at_gene_level_condition">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
54 <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
55 <when value="1">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
56 <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
57 <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
58 <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
59 </when>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
60 <when value="0">
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
61 <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
62 <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
63 <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
64 </when>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
65 </conditional>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
66 <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
67 <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
68 <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
69
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
70 <conditional name="AssignSourceHierarchyCondition">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
71 <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
72 <when value="1">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
73 <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
74 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
75 <when value="0">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
76 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
77 </conditional>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
78 <conditional name="IsobaricSampleMappingCondition">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
79 <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
80 <when value="1">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
81 <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
82 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
83 <when value="0">
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
84 </when>
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
85 </conditional>
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
86 </inputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
87 <outputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
88 <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
89 </outputs>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
90 <tests>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
91 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
92 <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
93 <param name="MaxFDRScore" value="0.05" />
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.MinDistinctPeptides" 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.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
96 <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
97 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
98 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
99 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
100 <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
101 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
102 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
103 <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
104 <param name="MaxFDRScore" value="0.05" />
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.MinDistinctPeptides" 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.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
107 <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
108 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
109 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
110 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
111 <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
112 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
113 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
114 <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
115 <param name="MaxFDRScore" value="0.05" />
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.MinDistinctPeptides" 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.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
118 <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
119 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
120 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
121 <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
122 <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
123 <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
124 <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
125 </test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
126 <test>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
127 <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
128 <param name="MaxFDRScore" value="0.05" />
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.MinDistinctPeptides" 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.MinSpectra" value="2" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
131 <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
132 <param name="MinSpectraPerDistinctMatch" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
133 <param name="MinSpectraPerDistinctPeptide" value="1" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
134 <param name="MaxProteinGroupsPerPeptide" value="10" />
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
135 <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
136 </test>
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
137 <test>
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
138 <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
139 <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
140 <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
141 <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
142 <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
143 <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
144 </test>
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
145 </tests>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
146 <help>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
147 <![CDATA[
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
148 **What it does**
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
149
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
150 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
151
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
152 ====
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
153
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
154 **AssignSourceHierarchy**
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
155
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
156 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
157 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
158 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
159
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
160 *A simple example:*
15
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
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
164 /repA repA1.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
165 /repA repA2.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
166 /repB repB1.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
167 /repB repB2.idpDB
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
168
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
169
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
170 *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
171
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
172 ::
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
173
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
174 /A/1 A1_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
175 /A/1 A1_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
176 /A/2 A2_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
177 /A/2 A2_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
178 /B/1 B1_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
179 /B/1 B1_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
180 /B/2 B2_f1
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
181 /B/2 B2_f2
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
182
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
183 ====
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
184
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
185 **IsobaricSampleMapping**
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
186
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
187 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
188 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
189 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
190 ignored.
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
191
15
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
192
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
193 *iTRAQ-4plex example:*
15
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
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
197 /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
198 /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
199 /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
200 /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
201
10
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
202
1196c09b6d4b planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 82368da0ad9f7dcce4ce99a15c749eed915606ee
galaxyp
parents: 8
diff changeset
203 *TMT-10plex example:*
15
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
4aa6a8331445 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot commit 2d404b98b40ff043be71bea81c114ea3433c0751
galaxyp
parents: 14
diff changeset
207 /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
208 /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
209
8
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
210 ]]>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
211 </help>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
212 <citations>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
213 <citation type="doi">10.1021/pr900360j</citation>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
214 <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
215 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
216 </citations>
e0ff9e45c273 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot
galaxyp
parents:
diff changeset
217 </tool>