comparison protein_prophet.xml @ 12:4c66453a168e draft

Uploaded
author iracooke
date Mon, 16 Jun 2014 07:17:09 -0400
parents
children d90c8bc10a9c
comparison
equal deleted inserted replaced
11:8512f117b10b 12:4c66453a168e
1 <tool id="proteomics_search_protein_prophet_1" name="Protein Prophet" version="1.0.1">
2 <requirements>
3 <requirement type="package" version="1.3">protk</requirement>
4 <requirement type="package" version="4.6.3">trans_proteomic_pipeline</requirement>
5 </requirements>
6
7 <description>Calculate Protein Prophet statistics on search results</description>
8
9
10 <!-- Note .. the input file is assumed to be the first argument -->
11 <command>
12 protein_prophet.rb
13
14 --galaxy $input_file
15
16 -o protein_prophet_results.prot.xml
17
18 -r
19
20 $iproph
21 $nooccam
22 $groupwts
23 $normprotlen
24 $logprobs
25 $confem
26 $allpeps
27 $unmapped
28 $instances
29 $delude
30
31 --minprob=$minprob
32 --minindep=$minindep
33 </command>
34 <inputs>
35
36 <param name="input_file" type="data" format="peptideprophet_pepxml,interprophet_pepxml" multiple="false" label="Peptide Prophet Results" help="These files will typically be outputs from peptide prophet or interprophet"/>
37
38
39 <param name="iproph" selected="true" type="boolean" label="Inputs are from iProphet" truevalue="--iprophet-input" falsevalue=""/>
40 <param name="nooccam" type="boolean" label="Don't apply Occam's razor" help="When selected no attempt will be made to derive the simplest protein list explaining observed peptides" truevalue="--no-occam" falsevalue=""/>
41 <param name="groupwts" type="boolean" label="Use group weights" help="Check peptide's total weight (rather than actual weight) in the Protein Group against the threshold" truevalue="--group-wts" falsevalue=""/>
42 <param name="normprotlen" type="boolean" label="Normalize NSP using Protein Length" truevalue="--norm-protlen" falsevalue=""/>
43 <param name="logprobs" type="boolean" label="Use the log of probability in the confidence calculations" truevalue="--log-prob" falsevalue=""/>
44 <param name="confem" type="boolean" label="Use the EM to compute probability given the confidenct" truevalue="--confem" falsevalue=""/>
45 <param name="allpeps" type="boolean" label="Consider all possible peptides in the database in the confidence model" truevalue="--allpeps" falsevalue=""/>
46 <param name="unmapped" type="boolean" label="Report results for unmapped proteins" truevalue="--unmapped" falsevalue=""/>
47 <param name="instances" type="boolean" label="Use Expected Number of Ion Instances to adjust the peptide probabilities prior to NSP adjustment" truevalue="--instances" falsevalue=""/>
48 <param name="delude" type="boolean" label="Do NOT use peptide degeneracy information when assessing proteins" truevalue="--delude" falsevalue=""/>
49
50 <param name="minprob" type="text" label="Minimum peptide prophet probability for peptides to be considered" value="0.05"/>
51 <param name="minindep" type="text" label="Minimum percentage of independent peptides required for a protein" value="0"/>
52
53 </inputs>
54 <outputs>
55 <data format="protxml" name="output" metadata_source="input_file" label="protein_prophet.${input_file.display_name}.protXML" from_work_dir="protein_prophet_results.prot.xml"/>
56 </outputs>
57
58
59 <!--NOPLOT: do not generate plot png file
60 NOOCCAM: non-conservative maximum protein list
61 GROUPWTS: check peptide's total weight in the Protein Group against the threshold (default: check peptide's actual weight against threshold)
62 NORMPROTLEN: Normalize NSP using Protein Length
63 LOGPROBS: Use the log of the probabilities in the Confidence calculations
64 CONFEM: Use the EM to compute probability given the confidence
65 ALLPEPS: Consider all possible peptides in the database in the confidence model
66 UNMAPPED: Report results for UNMAPPED proteins
67 INSTANCES: Use Expected Number of Ion Instances to adjust the peptide probabilities prior to NSP adjustment
68 DELUDE: do NOT use peptide degeneracy information when assessing proteins
69
70 MINPROB: peptideProphet probabilty threshold (default=0.05)
71 MININDEP: minimum percentage of independent peptides required for a protein (default=0)
72
73
74 -->
75
76 <help>
77
78 **What it does**
79
80 Given a set of peptide assignments from MS/MS spectra in the form of a pepXML file, this tool estimates probabilities at the protein level. As output, the tool produces a protXML file, which contains proteins along with the estimated probabilities that those proteins were present. Probabilities are estimated using a statistical model based on the number of peptides corresponding to that protein and the confidence that each of those peptides were assigned correctly. It takes account of the fact that peptides may correspond to more than one protein.
81
82 ----
83
84 **Citation**
85
86 If you use this tool please read and cite the paper describing the statistical model implemented by Protein Prophet
87
88 Nesvizhskii A., et al. “A Statistical Model for Identifying Proteins by Tandem Mass Spectrometry” *Anal. Chem.* 75, 4646-4658 (2003).
89
90
91 </help>
92
93 </tool>