Mercurial > repos > galaxyp > openms_peptideindexer
comparison PeptideIndexer.xml @ 0:539a3a4dcc9e draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit fb85d488133bb2b5f483b52b2db0ac66038fafb8
author | galaxyp |
---|---|
date | Wed, 01 Mar 2017 12:48:36 -0500 |
parents | |
children | 6b0add7e424d |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:539a3a4dcc9e |
---|---|
1 <?xml version='1.0' encoding='UTF-8'?> | |
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.--> | |
3 <!--Proposed Tool Section: [ID Processing]--> | |
4 <tool id="PeptideIndexer" name="PeptideIndexer" version="2.1.0"> | |
5 <description>Refreshes the protein references for all peptide hits.</description> | |
6 <macros> | |
7 <token name="@EXECUTABLE@">PeptideIndexer</token> | |
8 <import>macros.xml</import> | |
9 </macros> | |
10 <expand macro="references"/> | |
11 <expand macro="stdio"/> | |
12 <expand macro="requirements"/> | |
13 <command>PeptideIndexer | |
14 | |
15 #if $param_in: | |
16 -in $param_in | |
17 #end if | |
18 #if $param_fasta: | |
19 -fasta $param_fasta | |
20 #end if | |
21 #if $param_out: | |
22 -out $param_out | |
23 #end if | |
24 #if $param_decoy_string: | |
25 -decoy_string "$param_decoy_string" | |
26 #end if | |
27 #if $param_decoy_string_position: | |
28 -decoy_string_position $param_decoy_string_position | |
29 #end if | |
30 #if $param_missing_decoy_action: | |
31 -missing_decoy_action $param_missing_decoy_action | |
32 #end if | |
33 #if $param_write_protein_sequence: | |
34 -write_protein_sequence | |
35 #end if | |
36 #if $param_write_protein_description: | |
37 -write_protein_description | |
38 #end if | |
39 #if $param_keep_unreferenced_proteins: | |
40 -keep_unreferenced_proteins | |
41 #end if | |
42 #if $param_allow_unmatched: | |
43 -allow_unmatched | |
44 #end if | |
45 #if $param_full_tolerant_search: | |
46 -full_tolerant_search | |
47 #end if | |
48 #if $param_aaa_max: | |
49 -aaa_max $param_aaa_max | |
50 #end if | |
51 #if $param_mismatches_max: | |
52 -mismatches_max $param_mismatches_max | |
53 #end if | |
54 #if $param_IL_equivalent: | |
55 -IL_equivalent | |
56 #end if | |
57 #if $param_filter_aaa_proteins: | |
58 -filter_aaa_proteins | |
59 #end if | |
60 #if $param_enzyme_name: | |
61 -enzyme:name $param_enzyme_name | |
62 #end if | |
63 #if $param_enzyme_specificity: | |
64 -enzyme:specificity $param_enzyme_specificity | |
65 #end if | |
66 #if $adv_opts.adv_opts_selector=='advanced': | |
67 #if $adv_opts.param_force: | |
68 -force | |
69 #end if | |
70 #end if | |
71 </command> | |
72 <inputs> | |
73 <param name="param_in" type="data" format="idxml" optional="False" label="Input idXML file containing the identifications" help="(-in) "/> | |
74 <param name="param_fasta" type="data" format="fasta" optional="False" label="Input sequence database in FASTA format" help="(-fasta) Non-existing relative filenames are looked up via 'OpenMS.ini:id_db_dir'"/> | |
75 <param name="param_decoy_string" type="text" size="30" value="DECOY_" label="String that was appended (or prefixed - see 'decoy_string_position' flag below) to the accessions in the protein database to indicate decoy proteins" help="(-decoy_string) "> | |
76 <sanitizer> | |
77 <valid initial="string.printable"> | |
78 <remove value="'"/> | |
79 <remove value="""/> | |
80 </valid> | |
81 </sanitizer> | |
82 </param> | |
83 <param name="param_decoy_string_position" display="radio" type="select" optional="False" value="prefix" label="Should the 'decoy_string' be prepended (prefix) or appended (suffix) to the protein accession?" help="(-decoy_string_position) "> | |
84 <option value="prefix" selected="true">prefix</option> | |
85 <option value="suffix">suffix</option> | |
86 </param> | |
87 <param name="param_missing_decoy_action" display="radio" type="select" optional="False" value="error" label="Action to take if NO peptide was assigned to a decoy protein (which indicates wrong database or decoy string): 'error' (exit with error, no output), 'warn' (exit with success, warning message)" help="(-missing_decoy_action) "> | |
88 <option value="error" selected="true">error</option> | |
89 <option value="warn">warn</option> | |
90 </param> | |
91 <param name="param_write_protein_sequence" display="radio" type="boolean" truevalue="-write_protein_sequence" falsevalue="" checked="false" optional="True" label="If set, the protein sequences are stored as well" help="(-write_protein_sequence) "/> | |
92 <param name="param_write_protein_description" display="radio" type="boolean" truevalue="-write_protein_description" falsevalue="" checked="false" optional="True" label="If set, the protein description is stored as well" help="(-write_protein_description) "/> | |
93 <param name="param_keep_unreferenced_proteins" display="radio" type="boolean" truevalue="-keep_unreferenced_proteins" falsevalue="" checked="false" optional="True" label="If set, protein hits which are not referenced by any peptide are kept" help="(-keep_unreferenced_proteins) "/> | |
94 <param name="param_allow_unmatched" display="radio" type="boolean" truevalue="-allow_unmatched" falsevalue="" checked="false" optional="True" label="If set, unmatched peptide sequences are allowed" help="(-allow_unmatched) By default (i.e. if this flag is not set) the program terminates with an error on unmatched peptides"/> | |
95 <param name="param_full_tolerant_search" display="radio" type="boolean" truevalue="-full_tolerant_search" falsevalue="" checked="false" optional="True" label="If set, all peptide sequences are matched using tolerant search" help="(-full_tolerant_search) Thus potentially more proteins (containing ambiguous amino acids) are associated. This is much slower!"/> | |
96 <param name="param_aaa_max" type="integer" min="0" optional="True" value="4" label="[tolerant search only] Maximal number of ambiguous amino acids (AAAs) allowed when matching to a protein database with AAAs" help="(-aaa_max) AAAs are 'B', 'Z' and 'X'"/> | |
97 <param name="param_mismatches_max" type="integer" min="0" optional="True" value="0" label="[tolerant search only] Maximal number of real mismatches (will be used after checking for ambiguous AA's (see 'aaa_max' option)" help="(-mismatches_max) In general this param should only be changed if you want to look for other potential origins of a peptide which might have unknown SNPs or the like"/> | |
98 <param name="param_IL_equivalent" display="radio" type="boolean" truevalue="-IL_equivalent" falsevalue="" checked="false" optional="True" label="Treat the isobaric amino acids isoleucine ('I') and leucine ('L') as equivalent (indistinguishable)" help="(-IL_equivalent) "/> | |
99 <param name="param_filter_aaa_proteins" display="radio" type="boolean" truevalue="-filter_aaa_proteins" falsevalue="" checked="false" optional="True" label="In the tolerant search for matches to proteins with ambiguous amino acids (AAAs), rebuild the search database to only consider proteins with AAAs" help="(-filter_aaa_proteins) This may save time if most proteins don't contain AAAs and if there is a significant number of peptides that enter the tolerant search"/> | |
100 <param name="param_enzyme_name" type="select" optional="False" value="Trypsin" label="Enzyme which determines valid cleavage sites -" help="(-name) e.g. trypsin cleaves after lysine (K) or arginine (R), but not before proline (P)"> | |
101 <option value="Lys-C/P">Lys-C/P</option> | |
102 <option value="unspecific cleavage">unspecific cleavage</option> | |
103 <option value="Lys-C">Lys-C</option> | |
104 <option value="Formic_acid">Formic_acid</option> | |
105 <option value="Trypsin" selected="true">Trypsin</option> | |
106 <option value="V8-DE">V8-DE</option> | |
107 <option value="2-iodobenzoate">2-iodobenzoate</option> | |
108 <option value="Asp-N_ambic">Asp-N_ambic</option> | |
109 <option value="no cleavage">no cleavage</option> | |
110 <option value="V8-E">V8-E</option> | |
111 <option value="leukocyte elastase">leukocyte elastase</option> | |
112 <option value="CNBr">CNBr</option> | |
113 <option value="glutamyl endopeptidase">glutamyl endopeptidase</option> | |
114 <option value="TrypChymo">TrypChymo</option> | |
115 <option value="PepsinA">PepsinA</option> | |
116 <option value="Asp-N">Asp-N</option> | |
117 <option value="Arg-C">Arg-C</option> | |
118 <option value="proline endopeptidase">proline endopeptidase</option> | |
119 <option value="Chymotrypsin">Chymotrypsin</option> | |
120 <option value="Trypsin/P">Trypsin/P</option> | |
121 </param> | |
122 <param name="param_enzyme_specificity" display="radio" type="select" optional="False" value="full" label="Specificity of the enzyme" help="(-specificity) <br> 'full': both internal cleavage sites must match. <br> 'semi': one of two internal cleavage sites must match. <br> 'none': allow all peptide hits no matter their context. Therefore, the enzyme chosen does not play a role here"> | |
123 <option value="full" selected="true">full</option> | |
124 <option value="semi">semi</option> | |
125 <option value="none">none</option> | |
126 </param> | |
127 <expand macro="advanced_options"> | |
128 <param name="param_force" display="radio" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/> | |
129 </expand> | |
130 </inputs> | |
131 <outputs> | |
132 <data name="param_out" format="idxml"/> | |
133 </outputs> | |
134 <help>Refreshes the protein references for all peptide hits. | |
135 | |
136 | |
137 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_PeptideIndexer.html</help> | |
138 </tool> |