diff Project_RM/codon_usage_complete.xml @ 0:92d2b0a37086 draft

Uploaded-dev
author gianmarco_piccinno
date Sun, 09 Dec 2018 06:00:26 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Project_RM/codon_usage_complete.xml	Sun Dec 09 06:00:26 2018 -0500
@@ -0,0 +1,39 @@
+<tool id="codon_usage" name="Codon Usage" version="0.1.0">
+  <description>for each sequence in a file</description>
+  <requirements>
+    <requirement type="python module">biopython</requirement>
+    <requirement type="python module">pandas</requirement>
+  </requirements> 
+  
+  <command interpreter="python">codon_usage2.py python -i $input -t $input_type -o $output -c $codon_table</command>
+  <inputs>
+    <param name="input" format="fasta" type="data" label="Source file"/>
+
+    <param name="input_type" type="select" format="text">
+			<label>Indicate the input file format</label>
+				<option value="fasta">Fasta</option>
+				<option value="gbk">gbk</option>
+				<option value="gff">gff</option>
+		</param>
+
+    
+
+  </inputs>
+
+
+
+  <outputs>
+    <data format="tabular" name="output" />
+  </outputs>
+
+  <tests>
+    <test>
+      <param name="input" value="fa_gc_content_input.fa"/>
+      <output name="out_file1" file="fa_gc_content_output.txt"/>
+    </test>
+  </tests>
+
+  <help>
+This tool compute codon usage of an annotated genome [preferably Prokaryotes].
+  </help>
+</tool>