comparison obitab.xml @ 4:4cf47c504672 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit dabf62d438facc62f3e606ff4419092fdcdfaa44
author iuc
date Wed, 20 Mar 2024 13:17:50 +0000
parents 5f7003111e32
children
comparison
equal deleted inserted replaced
3:5f7003111e32 4:4cf47c504672
1 <tool id="obi_tab" name="obitab" version="@TOOL_VERSION@" profile="@PROFILE@"> 1 <tool id="obi_tab" name="obitab" version="@TOOL_VERSION@" profile="@PROFILE@">
2 <description>converts sequence file to a tabular file</description> 2 <description>converts sequence file to a tabular file</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="bio_tools"/>
6 <expand macro="requirements"/> 7 <expand macro="requirements"/>
7 <expand macro="stdio"/> 8 <expand macro="stdio"/>
8 <command><![CDATA[ 9 <command><![CDATA[
9 @GUNZIP_INPUT@ 10 @GUNZIP_INPUT@
10 11
17 ${no_definition_option} 18 ${no_definition_option}
18 @INPUT_FORMAT@ 19 @INPUT_FORMAT@
19 input > '$output' 20 input > '$output'
20 ]]></command> 21 ]]></command>
21 <inputs> 22 <inputs>
22 <param name="input" type="data" format="@INPUT_FORMATS@,txt,tabular" label="Input sequences file" /> 23 <param name="input" type="data" format="@INPUT_FORMATS@,txt,tabular" label="Input sequences file"/>
23 <param name="output_seq_option" type="boolean" checked="false" truevalue="-o" falsevalue="" label="Do you want to add an extra column?" help="Use this option if you want to add an extra column at the end of the table for the sequence itself"/> 24 <param name="output_seq_option" type="boolean" checked="false" truevalue="-o" falsevalue="" label="Do you want to add an extra column?" help="Use this option if you want to add an extra column at the end of the table for the sequence itself"/>
24 <param name="no_definition_option" type="boolean" checked="false" truevalue="-d" falsevalue="" label="Do you want to remove column containing the sequence definition?" help="Use this option if you want to remove column containing the sequence definition in the output tab file"/> 25 <param name="no_definition_option" type="boolean" checked="false" truevalue="-d" falsevalue="" label="Do you want to remove column containing the sequence definition?" help="Use this option if you want to remove column containing the sequence definition in the output tab file"/>
25 <param name="additional_file" type="data" optional="true" format="tabular" label="filter attributes from tabular file" /> 26 <param name="additional_file" type="data" optional="true" format="tabular" label="filter attributes from tabular file"/>
26 <expand macro="input_format_options_macro"/> 27 <expand macro="input_format_options_macro"/>
27 </inputs> 28 </inputs>
28 <outputs> 29 <outputs>
29 <data format="tabular" name="output"/> 30 <data format="tabular" name="output"/>
30 </outputs> 31 </outputs>
31 <tests> 32 <tests>
32 <test> 33 <test expect_num_outputs="1">
33 <param name="input" value="output_obisort.fastq" /> 34 <param name="input" value="output_obisort.fastq" />
34 <param name="output_seq_option" value="False"/> 35 <param name="output_seq_option" value="False"/>
35 <param name="no_definition_option" value="True"/> 36 <param name="no_definition_option" value="True"/>
36 <output name="output" file="output_obitab.txt" ftype="tabular"/> 37 <output name="output" file="output_obitab.txt" ftype="tabular"/>
37 </test> 38 </test>