comparison emboss_transeq.xml @ 10:9b98d3d903c6 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/emboss_5 commit fc158bfe5f5927dc199321a2cf43310373cbc8ba
author devteam
date Fri, 12 Aug 2016 19:17:10 -0400
parents
children 0e2484b6829b
comparison
equal deleted inserted replaced
9:18a63c800a4d 10:9b98d3d903c6
1 <tool id="EMBOSS: transeq101" name="transeq" version="5.0.0">
2 <description>Translate nucleic acid sequences</description>
3 <requirements><requirement type="package" version="5.0.0">emboss</requirement></requirements>
4 <command><![CDATA[
5 transeq
6 -sequence '$input1'
7 -outseq '$out_file1'
8 -frame $frame
9 -table $table
10 #if str($regions).strip():
11 -regions "$regions"
12 #end if
13 -trim $trim
14 -clean $clean
15 -alternative $alternative
16 -osformat2 '$out_format1'
17 -auto
18 ]]>
19 </command>
20 <inputs>
21 <param format="fasta" name="input1" type="data">
22 <label>Sequences</label>
23 </param>
24 <param name="frame" type="select">
25 <label>Frame(s) to translate</label>
26 <option value="1">Frame 1</option>
27 <option value="2">Frame 2</option>
28 <option value="3">Frame 3</option>
29 <option value="F">Forward three frames</option>
30 <option value="-1">Frame -1</option>
31 <option value="-2">Frame -2</option>
32 <option value="-3">Frame -3</option>
33 <option value="R">Reverse three frames</option>
34 <option value="6">All six frames</option>
35 </param>
36 <param name="table" type="select">
37 <label>Code to use</label>
38 <option value="0">Standard</option>
39 <option value="1">Standard (with alternative initiation codons)</option>
40 <option value="2">Vertebrate Mitochondrial</option>
41 <option value="3">Yeast Mitochondrial</option>
42 <option value="4">Mold, Protozoan, Coelenterate Mitochondrial and Mycoplasma/Spiroplasma</option>
43 <option value="5">Invertebrate Mitochondrial</option>
44 <option value="6">Ciliate Macronuclear and Dasycladacean</option>
45 <option value="9">Echinoderm Mitochondrial</option>
46 <option value="10">Euplotid Nuclear</option>
47 <option value="11">Bacterial</option>
48 <option value="12">Alternative Yeast Nuclear</option>
49 <option value="13">Ascidian Mitochondrial</option>
50 <option value="14">Flatworm Mitochondrial</option>
51 <option value="15">Blepharisma Macronuclear</option>
52 <option value="16">Chlorophycean Mitochondrial</option>
53 <option value="21">Trematode Mitochondrial</option>
54 <option value="22">Scenedesmus obliquus</option>
55 <option value="23">Thraustochytrium Mitochondrial</option>
56 </param>
57 <param name="regions" type="text" value="">
58 <label>Regions to translate</label>
59 </param>
60 <param name="trim" type="select">
61 <label>Remove all 'X' and '*' characters from the right end of the translation</label>
62 <option value="no">No</option>
63 <option value="yes">Yes</option>
64 </param>
65 <param name="clean" type="select">
66 <label>Change all STOP codon positions from the '*' character to 'X'</label>
67 <option value="no">No</option>
68 <option value="yes">Yes</option>
69 </param>
70 <param name="alternative" type="select">
71 <label>Define frame '-1' as using the set of codons starting with the last codon of the sequence</label>
72 <option value="no">No</option>
73 <option value="yes">Yes</option>
74 </param>
75 <param name="out_format1" type="select">
76 <label>Output Sequence File Format</label>
77 <option value="fasta">FASTA (m)</option>
78 <option value="acedb">ACeDB (m)</option>
79 <option value="asn1">ASN.1 (m)</option>
80 <option value="clustal">Clustal (m)</option>
81 <option value="codata">CODATA (m)</option>
82 <option value="embl">EMBL (m)</option>
83 <option value="fitch">Fitch (m)</option>
84 <option value="gcg">Wisconsin Package GCG 9.x and 10.x (s)</option>
85 <option value="genbank">GENBANK (m)</option>
86 <option value="gff">GFF (m)</option>
87 <option value="hennig86">Hennig86 (m)</option>
88 <option value="ig">Intelligenetics (m)</option>
89 <option value="jackknifer">Jackknifer (m)</option>
90 <option value="jackknifernon">Jackknifernon (m)</option>
91 <option value="mega">Mega (m)</option>
92 <option value="meganon">Meganon (m)</option>
93 <option value="msf">Wisconsin Package GCG's MSF (m)</option>
94 <option value="pir">NBRF (PIR) (m)</option>
95 <option value="ncbi">NCBI style FASTA (m)</option>
96 <option value="nexus">Nexus/PAUP (m)</option>
97 <option value="nexusnon">Nexusnon/PAUPnon (m)</option>
98 <option value="phylip">PHYLIP interleaved (m)</option>
99 <option value="phylipnon">PHYLIP non-interleaved (m)</option>
100 <option value="selex">SELEX (m)</option>
101 <option value="staden">Staden (s)</option>
102 <option value="strider">DNA strider (m)</option>
103 <option value="swiss">SwisProt entry (m)</option>
104 <option value="text">Plain sequence (s)</option>
105 <option value="treecon">Treecon (m)</option>
106 </param>
107 </inputs>
108 <outputs>
109 <data format="fasta" name="out_file1" />
110 </outputs>
111 <tests>
112 <test>
113 <param name="input1" value="2.fasta"/>
114 <param name="frame" value="1"/>
115 <param name="table" value="0"/>
116 <param name="regions" value=""/>
117 <param name="trim" value="no"/>
118 <param name="clean" value="no"/>
119 <param name="alternative" value="no"/>
120 <param name="out_format1" value="fasta"/>
121 <output name="out_file1" file="emboss_transeq_out.fasta"/>
122 </test>
123 </tests>
124 <code file="emboss_format_corrector.py" />
125 <help>
126
127 .. class:: warningmark
128
129 The input dataset needs to be sequences.
130
131 -----
132
133 You can view the original documentation here_.
134
135 .. _here: http://emboss.sourceforge.net/apps/release/5.0/emboss/apps/transeq.html
136
137 ------
138
139 **Citation**
140
141 For the underlying tool, please cite `Rice P, Longden I, Bleasby A. EMBOSS: the European Molecular Biology Open Software Suite. Trends Genet. 2000 Jun;16(6):276-7. &lt;http://www.ncbi.nlm.nih.gov/pubmed/10827456&gt;`_
142
143 If you use this tool in Galaxy, please cite `Blankenberg D, Taylor J, Schenck I, He J, Zhang Y, Ghent M, Veeraraghavan N, Albert I, Miller W, Makova KD, Hardison RC, Nekrutenko A. A framework for collaborative analysis of ENCODE data: making large-scale analyses biologist-friendly. Genome Res. 2007 Jun;17(6):960-4. &lt;http://www.ncbi.nlm.nih.gov/pubmed/17568012&gt;`_
144 </help>
145 </tool>