annotate seqkit_translate.xml @ 2:6366952ddfd3 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 99c10c3df0424268179b3f54f89e01a34b9e120e
author iuc
date Sat, 18 May 2024 23:11:22 +0000
parents 18f755f51204
children 0c011189b47e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
1 <tool id="seqkit_translate" name="SeqKit translate" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
1
18f755f51204 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 4e3719a2c09e11afd9069bb520de11e3a0f02c72
iuc
parents: 0
diff changeset
2 <description>nucleotid to protein sequence</description>
0
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
3 <macros>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
4 <import>macros.xml</import>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
5 </macros>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
6 <expand macro="bio_tools"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
9 seqkit translate
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
10 '$input'
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
11 -o '$output'
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
12 #if $translate_or_remove_unknown.selector == 'trimming':
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
13 $translate_or_remove_unknown.trim
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
14 #elif $translate_or_remove_unknown.selector == 'translate':
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
15 $translate_or_remove_unknown.allow_unknown_codon
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
16 #end if
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
17 $append_frame
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
18 $clean
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
19 #if $frame
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
20 -f '$frame'
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
21 #end if
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
22 $init_codon_as_M
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
23 #if $transl_table
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
24 -T '$transl_table'
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
25 #end if
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
26
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
27 ]]></command>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
28 <inputs>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
29 <param name="input" type="data" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz" label="Input file"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
30 <param argument="--frame" type="select" multiple="true" label="Frame(s) to translate" >
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
31 <option value="1" selected="true">1 (default)</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
32 <option value="2" selected="false">2</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
33 <option value="3" selected="false">3</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
34 <option value="-1" selected="false">-1</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
35 <option value="-2" selected="false">-2</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
36 <option value="-3" selected="false">-3</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
37 <option value="6" selected="false">All 6 frames</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
38 </param>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
39 <param argument="--append-frame" type="boolean" truevalue="--append-frame" falsevalue="" checked="false" label="Append frame information to sequence ID ?" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
40 <param argument="--transl-table" type="select" label="Translate table / genetic code to use" >
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
41 <option value="1" selected="true">1: The Standard Code (default)</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
42 <option value="2" selected="false">2: The Vertebrate Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
43 <option value="3" selected="false">3: The Yeast Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
44 <option value="4" selected="false">4: The Mold, Protozoan, and Coelenterate Mitochondrial Code and the Mycoplasma/Spiroplasma Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
45 <option value="5" selected="false">5: The Invertebrate Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
46 <option value="6" selected="false">6: The Ciliate, Dasycladacean and Hexamita Nuclear Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
47 <option value="9" selected="false">9: The Echinoderm and Flatworm Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
48 <option value="10" selected="false">10: The Euplotid Nuclear Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
49 <option value="11" selected="false">11: The Bacterial, Archaeal and Plant Plastid Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
50 <option value="12" selected="false">12: The Alternative Yeast Nuclear Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
51 <option value="13" selected="false">13: The Ascidian Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
52 <option value="14" selected="false">14: The Alternative Flatworm Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
53 <option value="16" selected="false">16: Chlorophycean Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
54 <option value="21" selected="false">21: Trematode Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
55 <option value="22" selected="false">22: Scenedesmus obliquus Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
56 <option value="23" selected="false">23: Thraustochytrium Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
57 <option value="24" selected="false">24: Pterobranchia Mitochondrial Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
58 <option value="25" selected="false">25: Candidate Division SR1 and Gracilibacteria Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
59 <option value="26" selected="false">26: Pachysolen tannophilus Nuclear Code</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
60 <option value="27" selected="false">27: Karyorelict Nuclear</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
61 <option value="28" selected="false">28: Condylostoma Nuclear</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
62 <option value="29" selected="false">29: Mesodinium Nuclear</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
63 <option value="30" selected="false">30: Peritrich Nuclear</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
64 <option value="31" selected="false">31: Blastocrithidia Nuclear</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
65 </param>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
66 <param argument="--clean" type="boolean" truevalue="--clean" falsevalue="" checked="false" label="Change all STOP codon positions from the '*' character to 'X' (an unknown residue) ?" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
67 <conditional name="translate_or_remove_unknown" >
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
68 <param name="selector" type="select" label="Translate or remove unknown code ?" >
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
69 <option value="trimming">Remove all 'X' and '*' characters</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
70 <option value="translate">Translate unknown code to 'X'</option>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
71 </param>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
72 <when value="trimming">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
73 <param argument="--trim" type="boolean" truevalue="--trim" falsevalue="" checked="false" label="Remove all 'X' and '*' characters from the right end of the translation" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
74 </when>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
75 <when value="translate">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
76 <param argument="--allow-unknown-codon" type="boolean" truevalue="--allow-unknown-codon" falsevalue="" checked="false" label="Translate unknown code to 'X' ?" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
77 </when>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
78 </conditional>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
79 <param argument="--init-codon-as-M" type="boolean" truevalue="--init-codon-as-M" falsevalue="" checked="false" label="Translate initial codon at beginning to 'M'" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
80 </inputs>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
81 <outputs>
1
18f755f51204 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 4e3719a2c09e11afd9069bb520de11e3a0f02c72
iuc
parents: 0
diff changeset
82 <data name="output" format_source="input" label="${tool.name} on ${on_string}"/>
0
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
83 </outputs>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
84 <tests>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
85 <!-- 1. fastq -->
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
86 <test expect_num_outputs="1">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
87 <param name="input" value="input1.fastq.gz" ftype="fastqsanger.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
88 <output decompress="true" name="output" file="translate_output3.fastq.gz" ftype="fastqsanger.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
89 </test>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
90 <!-- 2. fasta -->
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
91 <test expect_num_outputs="1">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
92 <param name="input" value="input1.fasta.gz" ftype="fasta.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
93 <conditional name="translate_or_remove_unknown">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
94 <param name="allow_unknown_codon" value="true"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
95 </conditional>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
96 <param name="append_frame" value="true"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
97 <param name="clean" value="true"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
98 <param name="frame" value="2,3" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
99 <param name="init_codon_as_M" value="true" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
100 <param name="transl_table" value="3" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
101 <output decompress="true" name="output" file="translate_output1.fasta.gz" ftype="fasta.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
102 </test>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
103 <!-- 3. fastq + trim -->
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
104 <test expect_num_outputs="1">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
105 <param name="input" value="input1.fastq.gz" ftype="fastqsanger.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
106 <conditional name="translate_or_remove_unknown">
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
107 <param name="trim" value="true" />
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
108 </conditional>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
109 <output decompress="true" name="output" file="translate_output2.fastq.gz" ftype="fastqsanger.gz"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
110 </test>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
111 </tests>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
112 <help>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
113 **What it does**
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
114
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
115 Translate DNA/RNA to protein sequence (supporting ambiguous bases)
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
116
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
117 </help>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
118 <expand macro="citations"/>
a589a34457ee planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 235285be5ca6e2320545b16d017e1795b1d345ad
iuc
parents:
diff changeset
119 </tool>