comparison emboss_sigcleave.xml @ 10:d49956b87f7e draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
author iuc
date Wed, 08 Feb 2017 12:42:22 -0500
parents
children 8992d258e42f
comparison
equal deleted inserted replaced
9:511429456d3c 10:d49956b87f7e
1 <tool id="EMBOSS: sigcleave88" name="sigcleave" version="5.0.0.1">
2 <description>Reports protein signal cleavage sites</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <code file="emboss_format_corrector.py" />
8 <command>sigcleave -sequence '$input1' -outfile '$out_file1' -minweight $minweight -prokaryote $prokaryote -rformat2 $out_format1 -auto</command>
9 <inputs>
10 <param name="input1" type="data" format="data" label="Sequences" />
11 <param name="minweight" type="float" value="3.5" label="Minimum scoring weight value for the predicted cleavage site" />
12 <param name="prokaryote" type="select" label="Specifies the sequence is prokaryotic and changes the default scoring data file">
13 <option value="no">No</option>
14 <option value="yes">Yes</option>
15 </param>
16 <param name="out_format1" type="select" label="Output report file format">
17 <option value="motif">Motif</option>
18 <option value="embl">EMBL</option>
19 <option value="genbank">GENBANK</option>
20 <option value="gff">GFF</option>
21 <option value="pir">PIR</option>
22 <option value="swiss">SwissProt</option>
23 <option value="dbmotif">DbMotif</option>
24 <option value="diffseq">Diffseq</option>
25 <option value="excel">Excel (tab delimited)</option>
26 <option value="feattable">FeatTable</option>
27 <option value="regions">Regions</option>
28 <option value="seqtable">SeqTable</option>
29 <option value="simple">SRS Simple</option>
30 <option value="srs">SRS</option>
31 <option value="table">Table</option>
32 <option value="tagseq">TagSeq</option>
33 </param>
34 </inputs>
35 <outputs>
36 <data name="out_file1" format="motif" />
37 </outputs>
38 <tests>
39 <test>
40 <param name="input1" value="2.fasta"/>
41 <param name="minweight" value="3.5"/>
42 <param name="prokaryote" value="no"/>
43 <param name="out_format1" value="excel"/>
44 <output name="out_file1" file="emboss_sigcleave_out.tabular"/>
45 </test>
46 </tests>
47 <help>
48 You can view the original documentation here_.
49
50 .. _here: http://galaxy-iuc.github.io/emboss-5.0-docs/sigcleave.html
51 </help>
52 <expand macro="citations" />
53 </tool>