comparison emboss_sixpack.xml @ 13:8992d258e42f draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 commit 9844cae766e7471d9fa6b2e8356e5194e77f6753
author iuc
date Fri, 22 Jun 2018 03:24:47 -0400
parents d49956b87f7e
children
comparison
equal deleted inserted replaced
12:832c20329690 13:8992d258e42f
1 <tool id="EMBOSS: sixpack90" name="sixpack" version="5.0.0.1"> 1 <tool id="EMBOSS: sixpack90" name="sixpack" version="@VERSION@+galaxy2">
2 <!-- tool adds file description and timestamp to output data --> 2 <!-- tool adds file description and timestamp to output data -->
3 <description>Display a DNA sequence with 6-frame translation and ORFs</description> 3 <description>Display a DNA sequence with 6-frame translation and ORFs</description>
4 <macros> 4 <macros>
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements" /> 7 <expand macro="requirements" />
8 <code file="emboss_format_corrector.py" /> 8 <code file="emboss_format_corrector.py" />
9 <command>sixpack -sequence '$input1' -outfile '$ofile1' -outseq '$ofile2' -table $table -firstorf $firstorf -lastorf $lastorf -mstart $mstart -reverse $reverse -orfminsize $orfminsize -uppercase 9 <command><![CDATA[
10 '$uppercase' -number $number -width $width -length $length -margin $margin -name $disp_name -description $description -offset $offset -html $html_out1 -osformat $out_format2 -auto</command> 10 sixpack -sequence '$input1' -outfile '$ofile1' -outseq '$ofile2' -table $table -firstorf $firstorf -lastorf $lastorf -mstart $mstart -reverse $reverse -orfminsize $orfminsize
11 #if str($uppercase):
12 -uppercase '$uppercase'
13 #end if
14 -number $number -width $width -length $length -margin $margin -name $disp_name -description $description -offset $offset -html $html_out1 -osformat $out_format2 -auto]]></command>
11 <inputs> 15 <inputs>
12 <param name="input1" type="data" format="fasta" label="Sequences" /> 16 <param name="input1" type="data" format="fasta" label="Sequences" />
13 <param name="table" type="select" label="Code to use"> 17 <param name="table" type="select" label="Code to use">
14 <option value="0">Standard</option> 18 <option value="0">Standard</option>
15 <option value="1">Standard (with alternative initiation codons)</option> 19 <option value="1">Standard (with alternative initiation codons)</option>
45 <param name="reverse" type="select" label="Display the translation of the DNA sequence in the 3 reverse frames"> 49 <param name="reverse" type="select" label="Display the translation of the DNA sequence in the 3 reverse frames">
46 <option value="yes">Yes</option> 50 <option value="yes">Yes</option>
47 <option value="no">No</option> 51 <option value="no">No</option>
48 </param> 52 </param>
49 <param name="orfminsize" type="integer" value="1" label="Minimum size of Open Reading Frames (ORFs) to display in the translations" /> 53 <param name="orfminsize" type="integer" value="1" label="Minimum size of Open Reading Frames (ORFs) to display in the translations" />
50 <param name="uppercase" type="text" value="" label="Regions to put in uppercase" /> 54 <param name="uppercase" type="text" value="" label="Regions to put in uppercase" help="If this is left blank, then the sequence case is left alone. A set of regions is specified by a set of pairs of positions. The positions are integers. They are separated by any non-alpha-numeric character. Three examples of region specifications are: 1) 24-45, 56-78 2) 1:45, 67=99;765..888 3) 1,5,8,10,23,45,57,99"/>
51 <param name="number" type="select" label="Number the sequence at the beginning and the end of each line"> 55 <param name="number" type="select" label="Number the sequence at the beginning and the end of each line">
52 <option value="yes">Yes</option> 56 <option value="yes">Yes</option>
53 <option value="no">No</option> 57 <option value="no">No</option>
54 </param> 58 </param>
55 <param name="width" type="integer" value="60" label="Number of nucleotides displayed on each line" /> 59 <param name="width" type="integer" value="60" label="Number of nucleotides displayed on each line" />
102 </inputs> 106 </inputs>
103 <outputs> 107 <outputs>
104 <data name="ofile1" format="sixpack" /> 108 <data name="ofile1" format="sixpack" />
105 <data name="ofile2" format="fasta" /> 109 <data name="ofile2" format="fasta" />
106 </outputs> 110 </outputs>
107 <!-- <tests> 111 <tests>
108 <test> 112 <test>
109 <param name="input1" value="2.fasta"/> 113 <param name="input1" value="2.fasta"/>
110 <param name="table" value="0"/> 114 <param name="table" value="0"/>
111 <param name="firstorf" value="no"/> 115 <param name="firstorf" value="no"/>
112 <param name="lastorf" value="no"/> 116 <param name="lastorf" value="no"/>
121 <param name="disp_name" value="no"/> 125 <param name="disp_name" value="no"/>
122 <param name="description" value="no"/> 126 <param name="description" value="no"/>
123 <param name="offset" value="1"/> 127 <param name="offset" value="1"/>
124 <param name="html_out1" value="no"/> 128 <param name="html_out1" value="no"/>
125 <param name="out_format2" value="fasta"/> 129 <param name="out_format2" value="fasta"/>
130 <output name="ofile1" file="emboss_sixpack_out2.sixpack" />
126 <output name="ofile2" file="emboss_sixpack_out.fasta"/> 131 <output name="ofile2" file="emboss_sixpack_out.fasta"/>
127 </test> 132 </test>
128 </tests> --> 133 </tests>
129 <help> 134 <help>
130 .. class:: warningmark 135 .. class:: warningmark
131 136
132 The input dataset needs to be sequences. 137 The input dataset needs to be sequences.
133 138