comparison obitab.xml @ 3:5f7003111e32 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit 5d3c7a7b3f7d687bb03ef7993ddf1a6507d655bd"
author iuc
date Mon, 10 May 2021 19:35:19 +0000
parents c92e057db87a
children 4cf47c504672
comparison
equal deleted inserted replaced
2:3299c7d5268f 3:5f7003111e32
1 <tool id="obi_tab" name="obitab" version="@TOOL_VERSION@"> 1 <tool id="obi_tab" name="obitab" version="@TOOL_VERSION@" profile="@PROFILE@">
2 <description>converts sequence file to a tabular file that can be open by a spreadsheet program or R</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="requirements"/> 6 <expand macro="requirements"/>
7 <expand macro="stdio"/> 7 <expand macro="stdio"/>
8 8 <command><![CDATA[
9 <command> 9 @GUNZIP_INPUT@
10 10
11 <![CDATA[
12 obitab 11 obitab
12 --without-progress-bar
13 #if $additional_file 13 #if $additional_file
14 --omit-attribute='$additional_file' 14 --omit-attribute='$additional_file'
15 #end if 15 #end if
16 ${output_seq_option} 16 ${output_seq_option}
17 ${no_definition_option} 17 ${no_definition_option}
18 ${options_inputtype} 18 @INPUT_FORMAT@
19 ${options_seqtype} 19 input > '$output'
20 20 ]]></command>
21 '$input' > '$output'
22 ]]>
23
24 </command>
25
26 <inputs> 21 <inputs>
27 <param name="input" type="data" format="fastq,fasta,txt,tabular" label="Input sequences file" /> 22 <param name="input" type="data" format="@INPUT_FORMATS@,txt,tabular" label="Input sequences file" />
28 <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"/> 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"/>
29 <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"/> 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"/>
30 <param name="additional_file" type="data" optional="true" format="tabular" label="filter attributes from tabular file" /> 25 <param name="additional_file" type="data" optional="true" format="tabular" label="filter attributes from tabular file" />
31 <param name="options_inputtype" type="select" label="Specify the input datatype"> 26 <expand macro="input_format_options_macro"/>
32 <expand macro="inputtype"/>
33 </param>
34 <param name="options_seqtype" type="select" label="Specify the sequence datatype" >
35 <option value="--nuc" selected="true">nucleic</option>
36 <option value="--prot">protein</option>
37 </param>
38 </inputs> 27 </inputs>
39 <outputs> 28 <outputs>
40 <data format="tabular" name="output" label="output.tabular with ${tool.name} on ${on_string}" /> 29 <data format="tabular" name="output"/>
41 </outputs> 30 </outputs>
42 <tests> 31 <tests>
43 <test> 32 <test>
44 <param name="input" value="output_obisort.fastq" /> 33 <param name="input" value="output_obisort.fastq" />
45 <param name="output_seq_option" value="False"/> 34 <param name="output_seq_option" value="False"/>
46 <param name="no_definition_option" value="True"/> 35 <param name="no_definition_option" value="True"/>
47 <param name="options_inputtype" value="fasta"/>
48 <param name="options_seqtype" value="--prot"/>
49 <output name="output" file="output_obitab.txt" ftype="tabular"/> 36 <output name="output" file="output_obitab.txt" ftype="tabular"/>
50 </test> 37 </test>
51 </tests> 38 </tests>
52 <help><![CDATA[ 39 <help><![CDATA[
53 40
61 @OBITOOLS_LINK@ 48 @OBITOOLS_LINK@
62 49
63 ]]> 50 ]]>
64 </help> 51 </help>
65 <expand macro="citation" /> 52 <expand macro="citation" />
66 </tool> 53 </tool>