annotate peptide_prophet.xml @ 3:255b5b6ec617 draft default tip

Better defaults for omssa
author Ira Cooke <iracooke@gmail.com>
date Mon, 23 Jul 2012 14:48:31 +1000
parents 418f42b34049
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
418f42b34049 Reuploading
iracooke
parents:
diff changeset
1 <tool id="proteomics_search_peptide_prophet_1" name="Peptide Prophet" version="1.0.0">
418f42b34049 Reuploading
iracooke
parents:
diff changeset
2 <requirements><requirement type="package">protk</requirement></requirements>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
3 <description>Calculate Peptide Prophet statistics on search results</description>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
4
418f42b34049 Reuploading
iracooke
parents:
diff changeset
5 <command interpreter="ruby">peptide_prophet_wrapper.rb ${output} ${input_file} -r $glyco $useicat $phospho $usepi $usert $accurate_mass $no_ntt $no_nmc $use_gamma $use_only_expect $force_fit $allow_alt_instruments $maldi
418f42b34049 Reuploading
iracooke
parents:
diff changeset
6 </command>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
7
418f42b34049 Reuploading
iracooke
parents:
diff changeset
8 <inputs>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
9
418f42b34049 Reuploading
iracooke
parents:
diff changeset
10 <param name="input_file" type="data" format="raw_pepxml" multiple="false" label="Raw Search Results" help="These files will typically be outputs from omssa or xtandem search tools"/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
11
418f42b34049 Reuploading
iracooke
parents:
diff changeset
12 <param name="glyco" type="boolean" label="Expect true positives to have a glycocapture motif" truevalue="--glyco" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
13 <param name="useicat" type="boolean" label="Use icat information" truevalue="--useicat" falsevalue="--no-useicat"/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
14 <param name="phospho" type="boolean" label="Use phospho information" truevalue="--phospho" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
15 <param name="usepi" type="boolean" label="Use pI information" truevalue="--usepi" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
16 <param name="usert" type="boolean" label="Use hydrophobicity / RT information" truevalue="--usert" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
17 <param name="accurate_mass" type="boolean" label="Use accurate mass binning" truevalue="--accurate-mass" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
18 <param name="no_ntt" type="boolean" label="Don't use NTT model" truevalue="--no-ntt" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
19 <param name="no_nmc" type="boolean" label="Don't use NMC model" truevalue="--no-nmc" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
20 <param name="use_gamma" type="boolean" label="Use Gamma distribution to model the negatives" help="Applies only to X!Tandem results" truevalue="--usegamma" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
21 <param name="use_only_expect" type="boolean" label="Only use Expect Score as the discriminant" help="Applies only to X!Tandem results.
418f42b34049 Reuploading
iracooke
parents:
diff changeset
22 Helpful for data with homologous top hits e.g. phospho or glyco" truevalue="--use-only-expect" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
23 <param name="force_fit" type="boolean" label="Force fitting" help="Bypasses automatic mixture model checks and forces fitting of a mixture model" truevalue="--force-fit" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
24 <param name="allow_alt_instruments" type="boolean" label="Allow multiple instrument types" help="Warning instead of exit with error if instrument types between runs is different" truevalue="--allow-alt-instruments" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
25 <param name="maldi" type="boolean" label="Maldi data" truevalue="-l" falsevalue=""/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
26
418f42b34049 Reuploading
iracooke
parents:
diff changeset
27
418f42b34049 Reuploading
iracooke
parents:
diff changeset
28 </inputs>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
29 <outputs>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
30 <data format="peptideprophet_pepxml" name="output" metadata_source="input_file" label="peptide_prophet.${input_file.display_name}.pep.xml" from_work_dir="peptide_prophet_output.pep.xml"/>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
31 </outputs>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
32
418f42b34049 Reuploading
iracooke
parents:
diff changeset
33 <help>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
34
418f42b34049 Reuploading
iracooke
parents:
diff changeset
35 **What it does**
418f42b34049 Reuploading
iracooke
parents:
diff changeset
36
418f42b34049 Reuploading
iracooke
parents:
diff changeset
37 Given raw search engine scores as inputs this tool estimates the accuracy of peptide assignments. From a practical perspective it estimates the probability that each peptide assignment is correct (providing probabilities as outputs), given raw scores (possibly on some arbitrary scale) as inputs.
418f42b34049 Reuploading
iracooke
parents:
diff changeset
38
418f42b34049 Reuploading
iracooke
parents:
diff changeset
39 ----
418f42b34049 Reuploading
iracooke
parents:
diff changeset
40
418f42b34049 Reuploading
iracooke
parents:
diff changeset
41 **Citation**
418f42b34049 Reuploading
iracooke
parents:
diff changeset
42
418f42b34049 Reuploading
iracooke
parents:
diff changeset
43 If you use this tool please read and cite the paper describing the statistical model implemented by Peptide Prophet
418f42b34049 Reuploading
iracooke
parents:
diff changeset
44
418f42b34049 Reuploading
iracooke
parents:
diff changeset
45 Keller A., et al. “Empirical Statistical Model to Estimate the Accuracy of Peptide Identifications Made by MS/MS and Database Search” *Anal. Chem.* 74, 5383-5392 (2002).
418f42b34049 Reuploading
iracooke
parents:
diff changeset
46
418f42b34049 Reuploading
iracooke
parents:
diff changeset
47
418f42b34049 Reuploading
iracooke
parents:
diff changeset
48 </help>
418f42b34049 Reuploading
iracooke
parents:
diff changeset
49
418f42b34049 Reuploading
iracooke
parents:
diff changeset
50
418f42b34049 Reuploading
iracooke
parents:
diff changeset
51 <!--PeptideProphet options [following the 'O']:
418f42b34049 Reuploading
iracooke
parents:
diff changeset
52 i [use icat information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
53 f [do not use icat information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
54 g [use N-glyc motif information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
55 H [use Phospho information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
56 m [maldi data]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
57 I [use pI information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
58 R [use Hydrophobicity / RT information in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
59 F [force the fitting of the mixture model, bypass automatic mixture model checks]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
60 A [use accurate mass binning in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
61 w [warning instead of exit with error if instrument types between runs is different]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
62 x [exclude all entries with asterisked score values in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
63 l [leave alone all entries with asterisked score values in PeptideProphet]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
64 n [use hardcoded default initialization parameters of the distributions]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
65 P [use Non-parametric model, can only be used with decoy option]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
66 N [do not use the NTT model]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
67 M [do not use the NMC model]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
68 G [use Gamma Distribution to model the Negatives (applies only to X!Tandem data)]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
69 E [only use Expect Score as the Discriminant(applies only to X!Tandem data,
418f42b34049 Reuploading
iracooke
parents:
diff changeset
70 helpful for data with homologous top hits e.g. phospho or glyco)]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
71 d [report decoy hits with a computed probability based on the model learned]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
72 p [run ProteinProphet afterwards]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
73 t [do not create png data plot]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
74 u [do not assemble protein groups in ProteinProphet analysis]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
75 s [do not use Occam's Razor in ProteinProphet analysis to
418f42b34049 Reuploading
iracooke
parents:
diff changeset
76 derive the simplest protein list to explain observed peptides]
418f42b34049 Reuploading
iracooke
parents:
diff changeset
77 -->
418f42b34049 Reuploading
iracooke
parents:
diff changeset
78
418f42b34049 Reuploading
iracooke
parents:
diff changeset
79 </tool>