annotate megahit_wrapper.xml @ 0:fc282b8cf3b5 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
author iuc
date Sun, 24 Sep 2017 10:39:54 -0400
parents
children 9ec09d997274
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
1 <?xml version='1.0' encoding='utf-8'?>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
2 <tool id="megahit" name="MEGAHIT" version="1.1.2">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
3 <description>metagenomics assembly</description>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
4 <requirements>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
5 <requirement type="package" version="1.1.2">megahit</requirement>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
6 </requirements>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
7 <version_command>megahit --version</version_command>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
9
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
10 megahit
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
11
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
12 #if $input_option.choice == 'paired'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
13 -1 ${ ','.join(['"%s"' % x.forward for x in $input_option.fastq_input1]) }
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
14 -2 ${ ','.join(['"%s"' % x.reverse for x in $input_option.fastq_input1]) }
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
15 #else
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
16 -r '${input_option.single_files}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
17 #end if
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
18
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
19 ##basic assembly
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
20 --min-count '${basic_section.min_count}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
21 --k-min '${basic_section.k_min}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
22 --k-max '${basic_section.k_max}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
23 --k-step '${basic_section.k_step}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
24 --min-contig-len '${basic_section.min_contig_len}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
25
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
26 ##advanced assembly
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
27 ${advanced_section.nomercy}
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
28 --bubble-level '${advanced_section.bubble_level}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
29 --merge-level '${advanced_section.merge_level}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
30 --prune-level '${advanced_section.prune_level}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
31 --low-local-ratio '${advanced_section.low_local_ratio}'
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
32 ${advanced_section.nolocal}
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
33 ${advanced_section.kmin1pass}
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
34
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
35 &&
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
36
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
37 cat megahit_out/log
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
38
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
39 ]]></command>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
40
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
41 <inputs>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
42 <conditional name="input_option">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
43 <param name="choice" type="select" label="Select your input option">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
44 <option value="single" selected="true">Single</option>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
45 <option value="paired">Paired-end</option>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
46 </param>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
47 <when value="paired">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
48 <param name="fastq_input1" format="fastq,fastqsanger,fasta" type="data_collection" collection_type="list:paired" label="Select a paired collection"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
49 </when>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
50 <when value="single">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
51 <param name="single_files" multiple="true" format="fastq,fastqsanger,fasta" type="data" label="Single-end file(s)" help="FASTQ/FASTA/FASTQ.GZ files accepted" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
52 </when>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
53 </conditional>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
54 <section name="basic_section" title="Basic assembly options" expanded="True">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
55 <param name="min_contig_len" argument="--min-contig-len" type="integer" value="200" label="minimum length of contigs to output" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
56 <param name="min_count" argument="--min-count" type="integer" value="2" label="minimum multiplicity for filtering (k_min+1)-mers"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
57 <param name="k_min" argument="--k-min" type="integer" value="21" label="minimum kmer size" max="127" help="must be odd number"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
58 <param name="k_max" argument="--k-max" type="integer" value="99" label="maximum kmer size" max="127" help="must be odd number"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
59 <param name="k_step" argument="--k-step" type="integer" value="20" label="increment of kmer size of each iteration" max="28" help="must be even number"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
60 </section>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
61 <section name="advanced_section" title="Advanced assembly options" expanded="False">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
62 <param name="nomercy" type="boolean" checked="false" truevalue="--no-mercy" falsevalue="" label="do not add mercy kmers" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
63 <param name="bubble_level" argument="--bubble-level" type="integer" value="0" min="0" max="2" label="intensity of bubble merging (0-2), 0 to disable" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
64 <param name="merge_level" argument="--merge-level" type="text" label="merge complex bubbles" value="20,0.98" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
65 <param name="prune_level" argument="--prune-level" type="integer" value="2" min="0" max="2" label="strength of local low depth pruning" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
66 <param name="low_local_ratio" argument="--low-local-ratio" type="float" value="0.2" label="ratio threshold to define low local coverage contigs" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
67 <param name="nolocal" type="boolean" checked="false" truevalue="--no-local" falsevalue="" label="disable local assembly" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
68 <param name="kmin1pass" type="boolean" checked="false" truevalue="--kmin-1pass" falsevalue="" label="use 1pass mode to build SdBG of k_min" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
69 </section>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
70 </inputs>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
71 <outputs>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
72 <data format="fasta" name="output" from_work_dir="megahit_out/final.contigs.fa" label="Assembly with ${tool.name} on ${on_string}" />
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
73 </outputs>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
74 <tests>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
75 <test>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
76 <conditional name="input_option">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
77 <param name="choice" value="single"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
78 <param name="single_files" value="refExample.fa" ftype="fasta"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
79 </conditional>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
80 <output name="output" file="single_result.fa"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
81 </test>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
82 <test>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
83 <conditional name="input_option">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
84 <param name="choice" value="paired"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
85 <param name="fastq_input1">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
86 <collection type="list:paired">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
87 <element name="Pair1">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
88 <collection type="paired">
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
89 <element name="forward" value="paired-fq1.fa" ftype="fasta"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
90 <element name="reverse" value="paired-fq2.fa" ftype="fasta"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
91 </collection>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
92 </element>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
93 </collection>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
94 </param>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
95 </conditional>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
96 <output name="output" file="paired_result.fa"/>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
97 </test>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
98 </tests>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
99
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
100 <help><![CDATA[
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
101
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
102 **What it does**
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
103
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
104 MEGAHIT is a single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph (SdBG) to achieve low memory assembly. MEGAHIT can optionally utilize a CUDA-enabled GPU to accelerate its SdBG contstruction. The GPU-accelerated version of MEGAHIT has been tested on NVIDIA GTX680 (4G memory) and Tesla K40c (12G memory) with CUDA 5.5, 6.0 and 6.5.
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
105
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
106 --------
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
107
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
108 **Project links:**
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
109
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
110 https://github.com/voutcn/megahit
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
111
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
112
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
113 ]]></help>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
114 <citations>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
115 <citation type="doi">10.1093/bioinformatics/btv033</citation>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
116 </citations>
fc282b8cf3b5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit commit 7da69f4b449643fd80cfb824251642b4e8638b44
iuc
parents:
diff changeset
117 </tool>