diff bowtie_build.xml @ 0:17e442abb3de draft default tip

Uploaded
author david-hoover
date Wed, 23 Jul 2014 10:27:07 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bowtie_build.xml	Wed Jul 23 10:27:07 2014 -0400
@@ -0,0 +1,22 @@
+<tool id="bowtiebuild" name="Bowtie Indexing">
+	<description>Build index for Bowtie alignment</description>
+
+	<requirements>
+                <requirement type="perl-module">bowtie_build_wrapper.pl</requirement>
+        </requirements>
+
+        <command interpreter="perl">
+		./bowtie_build_wrapper.pl $fastafile "$output.files_path" $output "$fastafile.name"
+	</command>
+
+	<inputs>
+		<param format="fasta" name="fastafile" type="data" optional="false" label="Fasta reference file" help="Reference file in fasta format"/>
+	</inputs>
+
+	<outputs>
+		<data format="bowtie_html_index" name="output"/>
+	</outputs>
+
+	<help>
+	</help>
+</tool>