Mercurial > repos > devteam > emboss_5
comparison emboss_supermatcher.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: supermatcher95" name="supermatcher" version="5.0.0.1"> | |
2 <!-- puts file information in output report --> | |
3 <description>Match large sequences against one or more other sequences</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements" /> | |
8 <code file="emboss_format_corrector.py" /> | |
9 <command>supermatcher -asequence '$input1' -bsequence '$input2' -gapopen $gapopen -gapextend $gapextend -width $width -wordlen $wordlen -outfile '$ofile1' -errorfile '$ofile2' -aformat3 | |
10 $out_format1 -auto</command> | |
11 <inputs> | |
12 <param name="input1" type="data" format="fasta" label="Large sequences" /> | |
13 <param name="input2" type="data" format="data" label="Sequences to match" /> | |
14 <param name="gapopen" type="float" value="10.0" label="Gap opening penalty" /> | |
15 <param name="gapextend" type="float" value="0.5" label="Gap extension penalty" /> | |
16 <param name="width" type="integer" value="16" label="Alignment width" /> | |
17 <param name="wordlen" type="integer" value="6" label="Word length for initial matching" /> | |
18 <param name="out_format1" type="select" label="Output alignment file format"> | |
19 <option value="simple">Simple (m)</option> | |
20 <option value="fasta">FASTA (m)</option> | |
21 <option value="msf">MSF (m)</option> | |
22 <option value="srs">SRS (m)</option> | |
23 <option value="pair">Pair (p)</option> | |
24 <option value="markx0">Markx0 (p)</option> | |
25 <option value="markx1">Markx1 (p)</option> | |
26 <option value="markx2">Markx2 (p)</option> | |
27 <option value="markx3">Markx3 (p)</option> | |
28 <option value="markx10">Markx10 (p)</option> | |
29 <option value="srspair">SRS pair (p)</option> | |
30 <option value="score">Score (p)</option> | |
31 </param> | |
32 </inputs> | |
33 <outputs> | |
34 <data name="ofile1" format="simple" /> | |
35 <data name="ofile2" format="supermatcher" /> | |
36 </outputs> | |
37 <!-- <tests> | |
38 <test> | |
39 <param name="input1" value="2.fasta"/> | |
40 <param name="input2" value="1.fasta"/> | |
41 <param name="gapopen" value="10.0"/> | |
42 <param name="gapextend" value="0.5"/> | |
43 <param name="width" value="16"/> | |
44 <param name="wordlen" value="6"/> | |
45 <param name="out_format1" value="fasta"/> | |
46 <output name="ofile1" file="emboss_supermatcher_out.fasta"/> | |
47 </test> | |
48 </tests> --> | |
49 <help> | |
50 You can view the original documentation here_. | |
51 | |
52 .. _here: http://galaxy-iuc.github.io/emboss-5.0-docs/supermatcher.html | |
53 </help> | |
54 <expand macro="citations" /> | |
55 </tool> |