comparison DecoyDatabase.xml @ 15:25529df60a81 draft default tip

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 3d1e5f37fd16524a415f707772eeb7ead848c5e3
author galaxyp
date Thu, 01 Dec 2022 19:06:38 +0000
parents 71a6c870aa48
children
comparison
equal deleted inserted replaced
14:370141bc0da3 15:25529df60a81
1 <?xml version='1.0' encoding='UTF-8'?> 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 CTDConverter.--> 2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTDConverter.-->
3 <!--Proposed Tool Section: [Utilities]--> 3 <!--Proposed Tool Section: [Utilities]-->
4 <tool id="DecoyDatabase" name="DecoyDatabase" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@" profile="20.05"> 4 <tool id="DecoyDatabase" name="DecoyDatabase" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
5 <description>Create decoy sequence database from forward sequence database.</description> 5 <description>Create decoy sequence database from forward sequence database.</description>
6 <macros> 6 <macros>
7 <token name="@EXECUTABLE@">DecoyDatabase</token> 7 <token name="@EXECUTABLE@">DecoyDatabase</token>
8 <import>macros.xml</import> 8 <import>macros.xml</import>
9 <import>macros_autotest.xml</import>
10 <import>macros_test.xml</import>
11 </macros> 9 </macros>
12 <expand macro="requirements"/> 10 <expand macro="requirements"/>
13 <expand macro="stdio"/> 11 <expand macro="stdio"/>
14 <command detect_errors="exit_code"><![CDATA[@QUOTE_FOO@ 12 <command detect_errors="exit_code"><![CDATA[@QUOTE_FOO@
15 @EXT_FOO@ 13 @EXT_FOO@
16 #import re 14 #import re
17 15
18 ## Preprocessing 16 ## Preprocessing
19 mkdir in && 17 mkdir in_cond.in &&
20 ${ ' '.join(["ln -s '%s' 'in/%s.%s' &&" % (_, re.sub('[^\w\-_]', '_', _.element_identifier), $gxy2omsext(_.ext)) for _ in $in if _]) } 18 #if $in_cond.in_select == "no"
19 mkdir ${' '.join(["'in_cond.in/%s'" % (i) for i, f in enumerate($in_cond.in) if f])} &&
20 ${' '.join(["ln -s '%s' 'in_cond.in/%s/%s.%s' && " % (f, i, re.sub('[^\w\-_]', '_', f.element_identifier), $gxy2omsext(f.ext)) for i, f in enumerate($in_cond.in) if f])}
21 #else
22 ln -s '$in_cond.in' 'in_cond.in/${re.sub("[^\w\-_]", "_", $in_cond.in.element_identifier)}.$gxy2omsext($in_cond.in.ext)' &&
23 #end if
21 mkdir out && 24 mkdir out &&
22 25
23 ## Main program call 26 ## Main program call
24 27
25 set -o pipefail && 28 set -o pipefail &&
26 @EXECUTABLE@ -write_ctd ./ && 29 @EXECUTABLE@ -write_ctd ./ &&
27 python3 '$__tool_directory__/fill_ctd.py' '@EXECUTABLE@.ctd' '$args_json' '$hardcoded_json' && 30 python3 '$__tool_directory__/fill_ctd.py' '@EXECUTABLE@.ctd' '$args_json' '$hardcoded_json' &&
28 @EXECUTABLE@ -ini @EXECUTABLE@.ctd 31 @EXECUTABLE@ -ini @EXECUTABLE@.ctd
29 -in 32 -in
30 ${' '.join(["'in/%s.%s'"%(re.sub('[^\w\-_]', '_', _.element_identifier), $gxy2omsext(_.ext)) for _ in $in if _])} 33 #if $in_cond.in_select == "no"
34 ${' '.join(["'in_cond.in/%s/%s.%s'"%(i, re.sub('[^\w\-_]', '_', f.element_identifier), $gxy2omsext(f.ext)) for i, f in enumerate($in_cond.in) if f])}
35 #else
36 'in_cond.in/${re.sub("[^\w\-_]", "_", $in_cond.in.element_identifier)}.$gxy2omsext($in_cond.in.ext)'
37 #end if
31 -out 38 -out
32 'out/output.${gxy2omsext("fasta")}' 39 'out/output.${gxy2omsext("fasta")}'
33 40
34 ## Postprocessing 41 ## Postprocessing
35 && mv 'out/output.${gxy2omsext("fasta")}' '$out' 42 && mv 'out/output.${gxy2omsext("fasta")}' '$out'
39 <configfiles> 46 <configfiles>
40 <inputs name="args_json" data_style="paths"/> 47 <inputs name="args_json" data_style="paths"/>
41 <configfile name="hardcoded_json"><![CDATA[{"log": "log.txt", "threads": "\${GALAXY_SLOTS:-1}", "no_progress": true}]]></configfile> 48 <configfile name="hardcoded_json"><![CDATA[{"log": "log.txt", "threads": "\${GALAXY_SLOTS:-1}", "no_progress": true}]]></configfile>
42 </configfiles> 49 </configfiles>
43 <inputs> 50 <inputs>
44 <param name="in" argument="-in" type="data" format="fasta" multiple="true" optional="false" label="Input FASTA file(s), each containing a database" help="It is recommended to include a contaminant database as well select fasta data sets(s)"/> 51 <conditional name="in_cond">
45 <param name="decoy_string" argument="-decoy_string" type="text" optional="true" value="DECOY_" label="String that is combined with the accession of the protein identifier to indicate a decoy protein" help=""> 52 <param name="in_select" type="select" label="Run tool in batch mode for -in">
46 <expand macro="list_string_san"/> 53 <option value="no">No: process all datasets jointly</option>
47 </param> 54 <option value="yes">Yes: process each dataset in an independent job</option>
48 <param name="decoy_string_position" argument="-decoy_string_position" display="radio" type="select" optional="false" label="Should the 'decoy_string' be prepended (prefix) or appended (suffix) to the protein accession?" help=""> 55 </param>
56 <when value="no">
57 <param argument="-in" type="data" format="fasta" multiple="true" optional="false" label="Input FASTA file(s), each containing a database" help="It is recommended to include a contaminant database as well select fasta data sets(s)"/>
58 </when>
59 <when value="yes">
60 <param argument="-in" type="data" format="fasta" multiple="false" optional="false" label="Input FASTA file(s), each containing a database" help="It is recommended to include a contaminant database as well select fasta data sets(s)"/>
61 </when>
62 </conditional>
63 <param argument="-decoy_string" type="text" optional="true" value="DECOY_" label="String that is combined with the accession of the protein identifier to indicate a decoy protein" help="">
64 <expand macro="list_string_san" name="decoy_string"/>
65 </param>
66 <param argument="-decoy_string_position" type="select" optional="true" label="Should the 'decoy_string' be prepended (prefix) or appended (suffix) to the protein accession?" help="">
49 <option value="prefix" selected="true">prefix</option> 67 <option value="prefix" selected="true">prefix</option>
50 <option value="suffix">suffix</option> 68 <option value="suffix">suffix</option>
51 <expand macro="list_string_san"/> 69 <expand macro="list_string_san" name="decoy_string_position"/>
52 </param> 70 </param>
53 <param name="only_decoy" argument="-only_decoy" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write only decoy proteins to the output database instead of a combined database" help=""/> 71 <param argument="-only_decoy" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write only decoy proteins to the output database instead of a combined database" help=""/>
54 <param name="type" argument="-type" display="radio" type="select" optional="false" label="Type of sequence" help="RNA sequences may contain modification codes, which will be handled correctly if this is set to 'RNA'"> 72 <param argument="-type" type="select" optional="true" label="Type of sequence" help="RNA sequences may contain modification codes, which will be handled correctly if this is set to 'RNA'">
55 <option value="protein" selected="true">protein</option> 73 <option value="protein" selected="true">protein</option>
56 <option value="RNA">RNA</option> 74 <option value="RNA">RNA</option>
57 <expand macro="list_string_san"/> 75 <expand macro="list_string_san" name="type"/>
58 </param> 76 </param>
59 <param name="method" argument="-method" display="radio" type="select" optional="false" label="Method by which decoy sequences are generated from target sequences" help="Note that all sequences are shuffled using the same random seed, ensuring that identical sequences produce the same shuffled decoy sequences. Shuffled sequences that produce highly similar output sequences are shuffled again (see shuffle_sequence_identity_threshold)"> 77 <param argument="-method" type="select" optional="true" label="Method by which decoy sequences are generated from target sequences" help="Note that all sequences are shuffled using the same random seed, ensuring that identical sequences produce the same shuffled decoy sequences. Shuffled sequences that produce highly similar output sequences are shuffled again (see shuffle_sequence_identity_threshold)">
60 <option value="reverse" selected="true">reverse</option> 78 <option value="reverse" selected="true">reverse</option>
61 <option value="shuffle">shuffle</option> 79 <option value="shuffle">shuffle</option>
62 <expand macro="list_string_san"/> 80 <expand macro="list_string_san" name="method"/>
63 </param> 81 </param>
64 <param name="enzyme" argument="-enzyme" type="select" optional="false" label="Enzyme used for the digestion of the sample" help="Only applicable if parameter 'type' is 'protein'"> 82 <param argument="-enzyme" type="select" optional="true" label="Enzyme used for the digestion of the sample" help="Only applicable if parameter 'type' is 'protein'">
65 <option value="unspecific cleavage">unspecific cleavage</option> 83 <option value="Asp-N/B">Asp-N/B</option>
66 <option value="glutamyl endopeptidase">glutamyl endopeptidase</option> 84 <option value="Asp-N_ambic">Asp-N_ambic</option>
67 <option value="Alpha-lytic protease">Alpha-lytic protease</option>
68 <option value="2-iodobenzoate">2-iodobenzoate</option>
69 <option value="iodosobenzoate">iodosobenzoate</option>
70 <option value="staphylococcal protease/D">staphylococcal protease/D</option>
71 <option value="Chymotrypsin">Chymotrypsin</option> 85 <option value="Chymotrypsin">Chymotrypsin</option>
72 <option value="Chymotrypsin/P">Chymotrypsin/P</option> 86 <option value="Chymotrypsin/P">Chymotrypsin/P</option>
73 <option value="CNBr">CNBr</option> 87 <option value="CNBr">CNBr</option>
88 <option value="2-iodobenzoate">2-iodobenzoate</option>
89 <option value="iodosobenzoate">iodosobenzoate</option>
90 <option value="Arg-C">Arg-C</option>
91 <option value="Arg-C/P">Arg-C/P</option>
92 <option value="Asp-N">Asp-N</option>
93 <option value="cyanogen-bromide">cyanogen-bromide</option>
94 <option value="Clostripain/P">Clostripain/P</option>
95 <option value="elastase-trypsin-chymotrypsin">elastase-trypsin-chymotrypsin</option>
96 <option value="no cleavage">no cleavage</option>
97 <option value="unspecific cleavage">unspecific cleavage</option>
74 <option value="Formic_acid">Formic_acid</option> 98 <option value="Formic_acid">Formic_acid</option>
75 <option value="Lys-C">Lys-C</option> 99 <option value="Lys-C">Lys-C</option>
76 <option value="Lys-N">Lys-N</option> 100 <option value="Lys-N">Lys-N</option>
77 <option value="Lys-C/P">Lys-C/P</option> 101 <option value="Lys-C/P">Lys-C/P</option>
78 <option value="PepsinA">PepsinA</option> 102 <option value="PepsinA">PepsinA</option>
79 <option value="TrypChymo">TrypChymo</option> 103 <option value="TrypChymo">TrypChymo</option>
80 <option value="Trypsin/P">Trypsin/P</option> 104 <option value="Trypsin/P">Trypsin/P</option>
81 <option value="Arg-C">Arg-C</option>
82 <option value="Arg-C/P">Arg-C/P</option>
83 <option value="Asp-N">Asp-N</option>
84 <option value="Asp-N/B">Asp-N/B</option>
85 <option value="Asp-N_ambic">Asp-N_ambic</option>
86 <option value="proline-endopeptidase/HKR">proline-endopeptidase/HKR</option>
87 <option value="Glu-C+P">Glu-C+P</option>
88 <option value="PepsinA + P">PepsinA + P</option>
89 <option value="cyanogen-bromide">cyanogen-bromide</option>
90 <option value="Clostripain/P">Clostripain/P</option>
91 <option value="elastase-trypsin-chymotrypsin">elastase-trypsin-chymotrypsin</option>
92 <option value="no cleavage">no cleavage</option>
93 <option value="V8-DE">V8-DE</option> 105 <option value="V8-DE">V8-DE</option>
94 <option value="V8-E">V8-E</option> 106 <option value="V8-E">V8-E</option>
95 <option value="leukocyte elastase">leukocyte elastase</option> 107 <option value="leukocyte elastase">leukocyte elastase</option>
96 <option value="proline endopeptidase">proline endopeptidase</option> 108 <option value="proline endopeptidase">proline endopeptidase</option>
109 <option value="glutamyl endopeptidase">glutamyl endopeptidase</option>
110 <option value="Alpha-lytic protease">Alpha-lytic protease</option>
111 <option value="staphylococcal protease/D">staphylococcal protease/D</option>
112 <option value="proline-endopeptidase/HKR">proline-endopeptidase/HKR</option>
113 <option value="Glu-C+P">Glu-C+P</option>
114 <option value="PepsinA + P">PepsinA + P</option>
97 <option value="Trypsin" selected="true">Trypsin</option> 115 <option value="Trypsin" selected="true">Trypsin</option>
98 <expand macro="list_string_san"/> 116 <expand macro="list_string_san" name="enzyme"/>
99 </param> 117 </param>
100 <section name="Decoy" title="Decoy parameters section" help="" expanded="false"> 118 <section name="Decoy" title="Decoy parameters section" help="" expanded="false">
101 <param name="non_shuffle_pattern" argument="-Decoy:non_shuffle_pattern" type="text" optional="true" value="" label="Residues to not shuffle (keep at a constant position when shuffling)" help="Separate by comma, e.g. use 'K,P,R' here"> 119 <param name="non_shuffle_pattern" argument="-Decoy:non_shuffle_pattern" type="text" optional="true" value="" label="Residues to not shuffle (keep at a constant position when shuffling)" help="Separate by comma, e.g. use 'K,P,R' here">
102 <expand macro="list_string_san"/> 120 <expand macro="list_string_san" name="non_shuffle_pattern"/>
103 </param> 121 </param>
104 <param name="keepPeptideNTerm" argument="-Decoy:keepPeptideNTerm" type="boolean" truevalue="true" falsevalue="false" checked="true" label="Whether to keep peptide N terminus constant when shuffling / reversing" help=""/> 122 <param name="keepPeptideNTerm" argument="-Decoy:keepPeptideNTerm" type="boolean" truevalue="true" falsevalue="false" checked="true" label="Whether to keep peptide N terminus constant when shuffling / reversing" help=""/>
105 <param name="keepPeptideCTerm" argument="-Decoy:keepPeptideCTerm" type="boolean" truevalue="true" falsevalue="false" checked="true" label="Whether to keep peptide C terminus constant when shuffling / reversing" help=""/> 123 <param name="keepPeptideCTerm" argument="-Decoy:keepPeptideCTerm" type="boolean" truevalue="true" falsevalue="false" checked="true" label="Whether to keep peptide C terminus constant when shuffling / reversing" help=""/>
106 </section> 124 </section>
107 <expand macro="adv_opts_macro"> 125 <expand macro="adv_opts_macro">
108 <param name="shuffle_max_attempts" argument="-shuffle_max_attempts" type="integer" optional="true" value="30" label="shuffle: maximum attempts to lower the amino acid sequence identity between target and decoy for the shuffle algorithm" help=""/> 126 <param argument="-shuffle_max_attempts" type="integer" optional="true" value="30" label="shuffle: maximum attempts to lower the amino acid sequence identity between target and decoy for the shuffle algorithm" help=""/>
109 <param name="shuffle_sequence_identity_threshold" argument="-shuffle_sequence_identity_threshold" type="float" optional="true" value="0.5" label="shuffle: target-decoy amino acid sequence identity threshold for the shuffle algorithm" help="If the sequence identity is above this threshold, shuffling is repeated. In case of repeated failure, individual amino acids are 'mutated' to produce a different amino acid sequence"/> 127 <param argument="-shuffle_sequence_identity_threshold" type="float" optional="true" value="0.5" label="shuffle: target-decoy amino acid sequence identity threshold for the shuffle algorithm" help="If the sequence identity is above this threshold, shuffling is repeated. In case of repeated failure, individual amino acids are 'mutated' to produce a different amino acid sequence"/>
110 <param name="seed" argument="-seed" type="text" optional="true" value="1" label="Random number seed (use 'time' for system time)" help=""> 128 <param argument="-seed" type="text" optional="true" value="1" label="Random number seed (use 'time' for system time)" help="">
111 <expand macro="list_string_san"/> 129 <expand macro="list_string_san" name="seed"/>
112 </param> 130 </param>
113 <param name="force" argument="-force" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Overrides tool-specific checks" help=""/> 131 <param argument="-force" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Overrides tool-specific checks" help=""/>
114 <param name="test" argument="-test" type="hidden" optional="true" value="False" label="Enables the test mode (needed for internal use only)" help=""> 132 <param argument="-test" type="hidden" optional="true" value="False" label="Enables the test mode (needed for internal use only)" help="">
115 <expand macro="list_string_san"/> 133 <expand macro="list_string_san" name="test"/>
116 </param> 134 </param>
117 </expand> 135 </expand>
118 <param name="OPTIONAL_OUTPUTS" type="select" optional="true" multiple="true" label="Optional outputs"> 136 <param name="OPTIONAL_OUTPUTS" type="select" optional="true" multiple="true" label="Optional outputs">
119 <option value="ctd_out_FLAG">Output used ctd (ini) configuration file</option> 137 <option value="ctd_out_FLAG">Output used ctd (ini) configuration file</option>
120 </param> 138 </param>
123 <data name="out" label="${tool.name} on ${on_string}: out" format="fasta"/> 141 <data name="out" label="${tool.name} on ${on_string}: out" format="fasta"/>
124 <data name="ctd_out" format="xml" label="${tool.name} on ${on_string}: ctd"> 142 <data name="ctd_out" format="xml" label="${tool.name} on ${on_string}: ctd">
125 <filter>OPTIONAL_OUTPUTS is not None and "ctd_out_FLAG" in OPTIONAL_OUTPUTS</filter> 143 <filter>OPTIONAL_OUTPUTS is not None and "ctd_out_FLAG" in OPTIONAL_OUTPUTS</filter>
126 </data> 144 </data>
127 </outputs> 145 </outputs>
128 <tests> 146 <tests><!-- UTILS_DecoyDatabase_1 -->
129 <expand macro="autotest_DecoyDatabase"/> 147 <test expect_num_outputs="2">
130 <expand macro="manutest_DecoyDatabase"/> 148 <section name="adv_opts">
149 <param name="shuffle_max_attempts" value="30"/>
150 <param name="shuffle_sequence_identity_threshold" value="0.5"/>
151 <param name="seed" value="1"/>
152 <param name="force" value="false"/>
153 <param name="test" value="true"/>
154 </section>
155 <conditional name="in_cond">
156 <param name="in" value="DecoyDatabase_1.fasta"/>
157 </conditional>
158 <output name="out" file="DecoyDatabase_1_out.fasta" compare="sim_size" delta_frac="0.7" ftype="fasta"/>
159 <param name="decoy_string" value="DECOY_"/>
160 <param name="decoy_string_position" value="prefix"/>
161 <param name="only_decoy" value="true"/>
162 <param name="type" value="protein"/>
163 <param name="method" value="reverse"/>
164 <param name="enzyme" value="Trypsin"/>
165 <section name="Decoy">
166 <param name="non_shuffle_pattern" value=""/>
167 <param name="keepPeptideNTerm" value="true"/>
168 <param name="keepPeptideCTerm" value="true"/>
169 </section>
170 <param name="OPTIONAL_OUTPUTS" value="ctd_out_FLAG"/>
171 <output name="ctd_out" ftype="xml">
172 <assert_contents>
173 <is_valid_xml/>
174 </assert_contents>
175 </output>
176 </test>
177 <!-- UTILS_DecoyDatabase_2 -->
178 <test expect_num_outputs="2">
179 <section name="adv_opts">
180 <param name="shuffle_max_attempts" value="30"/>
181 <param name="shuffle_sequence_identity_threshold" value="0.5"/>
182 <param name="seed" value="42"/>
183 <param name="force" value="false"/>
184 <param name="test" value="true"/>
185 </section>
186 <conditional name="in_cond">
187 <param name="in" value="DecoyDatabase_1.fasta"/>
188 </conditional>
189 <output name="out" file="DecoyDatabase_2_out.fasta" compare="sim_size" delta_frac="0.7" ftype="fasta"/>
190 <param name="decoy_string" value="blabla"/>
191 <param name="decoy_string_position" value="prefix"/>
192 <param name="only_decoy" value="false"/>
193 <param name="type" value="protein"/>
194 <param name="method" value="shuffle"/>
195 <param name="enzyme" value="Trypsin"/>
196 <section name="Decoy">
197 <param name="non_shuffle_pattern" value="KRP"/>
198 <param name="keepPeptideNTerm" value="true"/>
199 <param name="keepPeptideCTerm" value="true"/>
200 </section>
201 <param name="OPTIONAL_OUTPUTS" value="ctd_out_FLAG"/>
202 <output name="ctd_out" ftype="xml">
203 <assert_contents>
204 <is_valid_xml/>
205 </assert_contents>
206 </output>
207 </test>
208 <!-- UTILS_DecoyDatabase_3 -->
209 <test expect_num_outputs="2">
210 <section name="adv_opts">
211 <param name="shuffle_max_attempts" value="30"/>
212 <param name="shuffle_sequence_identity_threshold" value="0.5"/>
213 <param name="seed" value="42"/>
214 <param name="force" value="false"/>
215 <param name="test" value="true"/>
216 </section>
217 <conditional name="in_cond">
218 <param name="in" value="DecoyDatabase_1.fasta"/>
219 </conditional>
220 <output name="out" file="DecoyDatabase_3_out.fasta" compare="sim_size" delta_frac="0.7" ftype="fasta"/>
221 <param name="decoy_string" value="blabla"/>
222 <param name="decoy_string_position" value="prefix"/>
223 <param name="only_decoy" value="false"/>
224 <param name="type" value="protein"/>
225 <param name="method" value="shuffle"/>
226 <param name="enzyme" value="Chymotrypsin"/>
227 <section name="Decoy">
228 <param name="non_shuffle_pattern" value="KR"/>
229 <param name="keepPeptideNTerm" value="true"/>
230 <param name="keepPeptideCTerm" value="true"/>
231 </section>
232 <param name="OPTIONAL_OUTPUTS" value="ctd_out_FLAG"/>
233 <output name="ctd_out" ftype="xml">
234 <assert_contents>
235 <is_valid_xml/>
236 </assert_contents>
237 </output>
238 </test>
239 <!-- UTILS_DecoyDatabase_4 -->
240 <test expect_num_outputs="2">
241 <section name="adv_opts">
242 <param name="shuffle_max_attempts" value="30"/>
243 <param name="shuffle_sequence_identity_threshold" value="0.5"/>
244 <param name="seed" value="42"/>
245 <param name="force" value="false"/>
246 <param name="test" value="true"/>
247 </section>
248 <conditional name="in_cond">
249 <param name="in" value="DecoyDatabase_4.fasta"/>
250 </conditional>
251 <output name="out" file="DecoyDatabase_4_out.fasta" compare="sim_size" delta_frac="0.7" ftype="fasta"/>
252 <param name="decoy_string" value="blabla"/>
253 <param name="decoy_string_position" value="prefix"/>
254 <param name="only_decoy" value="false"/>
255 <param name="type" value="RNA"/>
256 <param name="method" value="reverse"/>
257 <param name="enzyme" value="Trypsin"/>
258 <section name="Decoy">
259 <param name="non_shuffle_pattern" value=""/>
260 <param name="keepPeptideNTerm" value="true"/>
261 <param name="keepPeptideCTerm" value="true"/>
262 </section>
263 <param name="OPTIONAL_OUTPUTS" value="ctd_out_FLAG"/>
264 <output name="ctd_out" ftype="xml">
265 <assert_contents>
266 <is_valid_xml/>
267 </assert_contents>
268 </output>
269 </test>
131 </tests> 270 </tests>
132 <help><![CDATA[Create decoy sequence database from forward sequence database. 271 <help><![CDATA[Create decoy sequence database from forward sequence database.
133 272
134 273
135 For more information, visit http://www.openms.de/doxygen/release/2.6.0/html/UTILS_DecoyDatabase.html]]></help> 274 For more information, visit http://www.openms.de/doxygen/release/2.8.0/html/UTILS_DecoyDatabase.html]]></help>
136 <expand macro="references"/> 275 <expand macro="references"/>
137 </tool> 276 </tool>