Mercurial > repos > gianmarco_piccinno > project_rm
comparison Project_RM/codon_usage.xml @ 6:1c2b04d72f9d draft
Uploaded
author | gianmarco_piccinno |
---|---|
date | Sun, 09 Dec 2018 06:14:35 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
5:ede51c2aff18 | 6:1c2b04d72f9d |
---|---|
1 <tool id="codon_usage" name="Codon Usage" version="0.1.0"> | |
2 <description>for each sequence in a file</description> | |
3 <requirements> | |
4 <requirement type="python module">biopython</requirement> | |
5 <requirement type="python module">pandas</requirement> | |
6 </requirements> | |
7 | |
8 <command interpreter="python">codon_usage.py -i $input -t $input_type -o $output -c $codon_table</command> | |
9 <inputs> | |
10 <param name="input" format="fasta" type="data" label="Source file"/> | |
11 | |
12 <param name="input_type" type="select" format="text"> | |
13 <label>Indicate the input file format</label> | |
14 <option value="fasta">Fasta</option> | |
15 <option value="gbk">gbk</option> | |
16 </param> | |
17 | |
18 <param name="codon_table" type="select" format="text"> | |
19 <label>Choose the proper codon table for your organism)</label> | |
20 <option value="Archaeal"> Archaeal</option> | |
21 <option value="Bacterial">Bacterial</option> | |
22 <option value="Standard">Standard</option> | |
23 | |
24 </param> | |
25 | |
26 </inputs> | |
27 | |
28 | |
29 | |
30 <outputs> | |
31 <data format="tabular" name="output" /> | |
32 </outputs> | |
33 | |
34 <tests> | |
35 <test> | |
36 <param name="input" value="fa_gc_content_input.fa"/> | |
37 <output name="out_file1" file="fa_gc_content_output.txt"/> | |
38 </test> | |
39 </tests> | |
40 | |
41 <help> | |
42 This tool compute codon usage of an annotated genome [preferably Prokaryotes]. | |
43 </help> | |
44 </tool> |