annotate id_filter.xml @ 4:1183846e70a1 draft

Uploaded
author galaxyp
date Wed, 19 Jun 2013 13:15:44 -0400
parents cf0d72c7b482
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
1 <tool id="openms_id_filter" version="0.1.0" name="ID Filter">
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
2 <description>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
3 Filters protein identification engine results by different criteria.
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
4 </description>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
5 <macros>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
6 <import>macros.xml</import>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
7 </macros>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
8 <expand macro="stdio" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
9 <expand macro="requires" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
10 <command interpreter="python">
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
11 openms_wrapper.py --executable 'IDFilter' --config $config
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
12 </command>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
13 <configfiles>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
14 <configfile name="config">[simple_options]
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
15 in=$input1
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
16 out=$output
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
17 score!pep=$peptide_score
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
18 score!prot=$protein_score
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
19 thresh!pep=$peptide_threshold
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
20 thresh!prot=$protein_threshold
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
21 best!n_peptide_hits=$n_peptide_hits
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
22 best!n_protein_hits=$n_protein_hits
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
23 </configfile>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
24 </configfiles>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
25 <inputs>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
26 <param name="input1" label="Input" type="data" format="idxml" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
27 <param name="n_peptide_hits" label="Keep only the 'n' highest scoring peptide hits per spectrum (for n>0). " value="0" type="integer" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
28 <param name="n_protein_hits" label="Keep only the 'n' highest scoring protein hits per spectrum (for n>0). " value="0" type="integer" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
29 <param name="peptide_score" label="Peptide Score. " value="0" type="float" help="The score which should be reached by a peptide hit to be kept. The score is dependent on the most recent(!) preprocessing - it could be Mascot scores (if a MascotAdapter was applied before), or an FDR (if FalseDiscoveryRate was applied before), etc. (default: '0')" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
30 <param name="protein_score" label="Protein Score. " value="0" type="float" help="The score which should be reached by a peptide hit to be kept. The score is dependent on the most recent(!) preprocessing - it could be Mascot scores (if a MascotAdapter was applied before), or an FDR (if FalseDiscoveryRate was applied before), etc. (default: '0')" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
31 <param name="peptide_threshold" label="Peptide Threshold" help="Keep a peptide hit only if its score is above this fraction of the peptide significance threshold." value="0" type="float" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
32 <param name="protein_threshold" label="Protein Threshold" help="Keep a protein hit only if its score is above this fraction of the peptide significance threshold." value="0" type="float" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
33 </inputs>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
34 <outputs>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
35 <data format="idxml" name="output" />
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
36 </outputs>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
37 <help>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
38 **What it does**
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
39
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
40 This tool is used to filter the identifications found by a peptide/protein identification tool like Mascot. Different filters can be applied.
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
41
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
42 **Citation**
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
43
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
44 For the underlying tool, please cite ``Marc Sturm, Andreas Bertsch, Clemens Gröpl, Andreas Hildebrandt, Rene Hussong, Eva Lange, Nico Pfeifer, Ole Schulz-Trieglaff, Alexandra Zerck, Knut Reinert, and Oliver Kohlbacher, 2008. OpenMS – an Open-Source Software Framework for Mass Spectrometry. BMC Bioinformatics 9: 163. doi:10.1186/1471-2105-9-163.``
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
45
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
46 If you use this tool in Galaxy, please cite Chilton J, et al. https://bitbucket.org/galaxyp/galaxyp-toolshed-openms
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
47 </help>
cf0d72c7b482 Update.
galaxyp
parents:
diff changeset
48 </tool>