Mercurial > repos > devteam > emboss_5
comparison emboss_est2genome.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: est2genome32" name="est2genome" version="5.0.0.1"> | |
2 <description>Align EST and genomic DNA sequences</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <command>est2genome -estsequence '$input1' -genomesequence '$input2' -outfile '$out_file1' -match $match -mismatch $mismatch -gappenalty $gappenalty -intronpenalty $intronpenalty -splicepenalty | |
8 $splicepenalty -minscore $minscore -reverse $reverse -splice $splice -mode $mode -best $best -shuffle $shuffle -seed $seed -align $align -width $width -auto</command> | |
9 <inputs> | |
10 <param name="input1" type="data" format="fasta" label="EST sequence(s)" /> | |
11 <param name="input2" type="data" format="data" label="Genomic sequence" /> | |
12 <param name="match" type="integer" value="1" label="Score for matching two bases" /> | |
13 <param name="mismatch" type="integer" value="1" label="Cost for mismatching two bases" /> | |
14 <param name="gappenalty" type="integer" value="2" label="Cost for deleting a single base in either sequence, excluding introns" /> | |
15 <param name="intronpenalty" type="integer" value="40" label="Cost for an intron, independent of length" /> | |
16 <param name="splicepenalty" type="integer" value="20" label="Cost for an intron, independent of length and starting/ending on donor-acceptor sites" /> | |
17 <param name="minscore" type="integer" value="30" label="Exclude alignments with scores below this threshold score" /> | |
18 <param name="reverse" type="select" label="Reverse the orientation of the EST sequence"> | |
19 <option value="no">No</option> | |
20 <option value="yes">Yes</option> | |
21 </param> | |
22 <param name="splice" type="select" label="Use donor and acceptor splice sites"> | |
23 <option value="yes">Yes</option> | |
24 <option value="no">No</option> | |
25 </param> | |
26 <param name="mode" type="select" label="Comparison mode"> | |
27 <option value="both">Both strands</option> | |
28 <option value="forward">Forward strand only</option> | |
29 <option value="reverse">Reverse strand only</option> | |
30 </param> | |
31 <param name="best" type="select" label="Only best comparisons"> | |
32 <option value="yes">Yes</option> | |
33 <option value="no">No</option> | |
34 </param> | |
35 <param name="shuffle" type="integer" value="0" label="Shuffle" /> | |
36 <param name="seed" type="integer" value="20825" label="Random number seed" /> | |
37 <param name="align" type="select" label="Show the alignment"> | |
38 <option value="no">No</option> | |
39 <option value="yes">Yes</option> | |
40 </param> | |
41 <param name="width" type="integer" value="50" label="Alignment width" /> | |
42 </inputs> | |
43 <outputs> | |
44 <data name="out_file1" format="est2genome" /> | |
45 </outputs> | |
46 <tests> | |
47 <test> | |
48 <param name="input1" value="2.fasta"/> | |
49 <param name="input2" value="1.fasta"/> | |
50 <param name="match" value="1"/> | |
51 <param name="mismatch" value="1"/> | |
52 <param name="match" value="1"/> | |
53 <param name="gappenalty" value="2"/> | |
54 <param name="intronpenalty" value="40"/> | |
55 <param name="splicepenalty" value="20"/> | |
56 <param name="minscore" value="30"/> | |
57 <param name="reverse" value="no"/> | |
58 <param name="splice" value="yes"/> | |
59 <param name="mode" value="both"/> | |
60 <param name="best" value="yes"/> | |
61 <param name="shuffle" value="0"/> | |
62 <param name="seed" value="20825"/> | |
63 <param name="align" value="no"/> | |
64 <param name="width" value="50"/> | |
65 <output name="out_file1" file="emboss_est2genome_out.est2genome"/> | |
66 </test> | |
67 </tests> | |
68 <help> | |
69 .. class:: warningmark | |
70 | |
71 The input dataset needs to be sequences. | |
72 | |
73 ----- | |
74 | |
75 You can view the original documentation here_. | |
76 | |
77 .. _here: http://galaxy-iuc.github.io/emboss-5.0-docs/est2genome.html | |
78 </help> | |
79 <expand macro="citations" /> | |
80 </tool> |