Mercurial > repos > bgruening > text_processing
comparison cut.xml @ 22:3dc70b59608c draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 2dc2df988bd2dde9f8d7f629b594186dbd4fdc2b
author | bgruening |
---|---|
date | Fri, 07 Mar 2025 20:44:20 +0000 |
parents | 86755160afbf |
children |
comparison
equal
deleted
inserted
replaced
21:86755160afbf | 22:3dc70b59608c |
---|---|
1 <tool id="tp_cut_tool" name="Advanced Cut" version="@TOOL_VERSION@+galaxy2" profile="@PROFILE@"> | 1 <tool id="tp_cut_tool" name="Advanced Cut" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
2 <description>columns from a table (cut)</description> | 2 <description>columns from a table (cut)</description> |
3 <macros> | 3 <macros> |
4 <import>macros.xml</import> | 4 <import>macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements" /> | 6 <expand macro="requirements" /> |
189 </data> | 189 </data> |
190 </outputs> | 190 </outputs> |
191 <tests> | 191 <tests> |
192 <test expect_num_outputs="1"> | 192 <test expect_num_outputs="1"> |
193 <param name="input" value="cut1.txt"/> | 193 <param name="input" value="cut1.txt"/> |
194 <param name="list" value="1,3,4"/> | 194 <conditional name="cut_type_options"> |
195 <param name="delimiter" value=""/> | 195 <param name="cut_element" value="-f"/> |
196 <param name="delimiter" value="" /> | |
197 <conditional name="colnames_option"> | |
198 <param name="header" value="Y"/> | |
199 <param name="list" value="1,3,4"/> | |
200 </conditional> | |
201 </conditional> | |
196 <output name="output" file="cut_results1.txt"/> | 202 <output name="output" file="cut_results1.txt"/> |
197 <assert_command> | 203 <assert_command> |
198 <has_text text="-f '1,3,4'"/> | 204 <has_text text="-f '1,3,4'"/> |
199 </assert_command> | 205 </assert_command> |
200 </test> | 206 </test> |
201 | |
202 <test expect_num_outputs="1"> | 207 <test expect_num_outputs="1"> |
203 <param name="input" value="cut1.txt"/> | 208 <param name="input" value="cut1.txt"/> |
204 <conditional name="cut_type_options"> | 209 <conditional name="cut_type_options"> |
205 <param name="delimiter" value="" /> | 210 <param name="delimiter" value="" /> |
206 <conditional name="colnames_option"> | 211 <conditional name="colnames_option"> |
215 <has_text text="-f '2'"/> | 220 <has_text text="-f '2'"/> |
216 </assert_command> | 221 </assert_command> |
217 </test> | 222 </test> |
218 <test expect_num_outputs="1"> | 223 <test expect_num_outputs="1"> |
219 <param name="input" value="cut1.txt"/> | 224 <param name="input" value="cut1.txt"/> |
220 <param name="list" value="-3" /> | 225 <conditional name="cut_type_options"> |
221 <param name="delimiter" value="" /> | 226 <param name="cut_element" value="-c" /> |
222 <param name="cut_element" value="-c" /> | 227 <param name="list" value="-3" /> |
228 </conditional> | |
223 <output name="output" file="cut_results3.txt"/> | 229 <output name="output" file="cut_results3.txt"/> |
224 </test> | 230 </test> |
225 </tests> | 231 </tests> |
226 <help> | 232 <help> |
227 <![CDATA[ | 233 <![CDATA[ |