28
|
1 <?xml version="1.0"?>
|
36
|
2 <tool name="Codon Usage" id="codon_usage" version="0.2.3">
|
28
|
3 <description>for each sequence in a file</description>
|
|
4 <requirements>
|
33
|
5 <requirement type="package" version="2.7.15">python</requirement>
|
28
|
6 <requirement type="package" version="1.72">biopython</requirement>
|
|
7 <requirement type="package" version="0.23.4">pandas</requirement>
|
31
|
8 <requirement type="package" version="1.15.3">numpy</requirement>
|
32
|
9 </requirements>
|
|
10
|
28
|
11 <command>
|
|
12 <![CDATA[
|
|
13 python '$__tool_directory__/codon_usage.py' -i $input -t $input_type -o $output -c $codon_table
|
|
14 ]]>
|
|
15 </command>
|
|
16 <inputs>
|
|
17 <param name="input" format="fasta" type="data" label="Source file"/>
|
|
18
|
|
19 <param name="input_type" type="select" format="text">
|
|
20 <label>Indicate the input file format</label>
|
|
21 <option value="fasta">Fasta</option>
|
|
22 <option value="gbk">gbk</option>
|
|
23 </param>
|
|
24
|
|
25 <param name="codon_table" type="select" format="text">
|
|
26 <label>Choose the proper codon table for your organism)</label>
|
|
27 <option value="Archaeal"> Archaeal</option>
|
|
28 <option value="Bacterial">Bacterial</option>
|
|
29 <option value="Standard">Standard</option>
|
|
30 </param>
|
|
31 </inputs>
|
|
32
|
|
33 <outputs>
|
|
34 <data format="tabular" name="output" />
|
|
35 </outputs>
|
|
36
|
|
37 <help>
|
|
38 This tool compute codon usage of an annotated genome [preferably Prokaryotes].
|
|
39 </help>
|
|
40 </tool>
|