changeset 0:7147b6e3ba06

Uploaded
author xuebing
date Sat, 31 Mar 2012 21:40:25 -0400
parents
children e84f946fd52c
files fimo_to_bed.xml
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fimo_to_bed.xml	Sat Mar 31 21:40:25 2012 -0400
@@ -0,0 +1,19 @@
+<tool id="fimo_to_bed" name="FIMO-to-BED">
+  <description>convert FIMO output to BED</description>
+  <command interpreter="python">fimo_to_bed.py $input $rc > $output</command>
+  <inputs>
+    <param name="input" format="txt" type="data" label="FIMO output file"/>
+    <param name="rc" label="Check if the sequences are reverse complement" type="boolean" truevalue="rc" falsevalue="none" checked="False"/>
+  </inputs>
+  <outputs>
+    <data format="bed" name="output" />
+  </outputs>
+  <help>
+
+  Only works if your original FIMO input fasta sequences have ids like:: 
+  
+    mm9_chr15_99358448_99360448_-
+  
+  
+  </help>
+</tool>