diff abyss.xml @ 4:c8a188ea46d5 draft

Uploaded
author iuc
date Wed, 29 Apr 2015 12:07:23 -0400
parents 1d0f1274d999
children bb97dd7d11d5
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/abyss.xml	Wed Apr 29 12:07:23 2015 -0400
@@ -0,0 +1,34 @@
+<tool id="abyss" name="Abyss" version="1.0.0">
+    <description>Assemble short unpaired reads</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <expand macro="stdio" />
+    <command>
+<![CDATA[
+ABYSS -k$k $infile -o $outfile
+]]>
+    </command>
+
+    <inputs>
+        <param name="infile" type="data" format="fasta|fastq" label="Unpaired read sequences" />
+        <param name="k" type="integer" value="41" label="K-mer size" help="Try multiple sizes, starting around 2/3 read length" />
+    </inputs>
+
+    <outputs>
+        <data name="outfile" format="fasta" />
+    </outputs>
+
+    <help>
+**What it does**
+
+ABySS is a de novo sequence assembler that is designed for short reads.
+
+.. image:: http://www.bcgsc.ca/platform/bioinfo/software/abyss/screenshot
+
+**Reference**
+
+http://www.bcgsc.ca/platform/bioinfo/software/abyss
+    </help>
+</tool>