annotate minia.xml @ 2:734cd5f1c1b2 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit 75a9dab06b5d4cec61475c2ba0d77fc21bd95dfc"
author iuc
date Tue, 04 Jan 2022 16:49:23 +0000
parents b2dc51639ad5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
1 <tool id="minia" name="Minia" version="@TOOL_VERSION@">
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
2 <description>Short-read assembler based on a de Bruijn graph</description>
1
b2dc51639ad5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit a57ba5366670e07035dfe12c211b2bc2bfeb7ff9"
iuc
parents: 0
diff changeset
3 <xrefs>
b2dc51639ad5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit a57ba5366670e07035dfe12c211b2bc2bfeb7ff9"
iuc
parents: 0
diff changeset
4 <xref type="bio.tools">minia</xref>
b2dc51639ad5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit a57ba5366670e07035dfe12c211b2bc2bfeb7ff9"
iuc
parents: 0
diff changeset
5 </xrefs>
0
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
6 <macros>
2
734cd5f1c1b2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit 75a9dab06b5d4cec61475c2ba0d77fc21bd95dfc"
iuc
parents: 1
diff changeset
7 <token name="@TOOL_VERSION@">3.2.6</token>
0
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
8 </macros>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
9 <requirements>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
10 <requirement type="package" version="@TOOL_VERSION@">minia</requirement>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
11 </requirements>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
12 <command detect_errors="exit_code"><![CDATA[
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
13 #set input = 'infile.' + $in.ext
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
14 ln -s '$in' '$input' &&
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
15
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
16 minia
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
17 -in '$input'
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
18 -kmer-size $kmer_size
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
19 #if str($abundance_min):
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
20 -abundance-min $abundance_min
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
21 #end if
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
22 #if str($abundance_max):
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
23 -abundance-min $abundance_max
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
24 #end if
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
25 -nb-cores \${GALAXY_SLOTS:-1}
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
26 -out output
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
27 ]]></command>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
28 <inputs>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
29 <param argument="-in" type="data" format="fasta,fastqsanger,fastqsanger.gz,fasta.gz" label="Reads in FASTA or FASTQ format" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
30 <param argument="-kmer-size" type="integer" value="31" min="1" label="Size of a kmer" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
31 <param argument="-abundance-min" type="integer" value="" optional="true" min="0" label="Min abundance threshold for solid kmers (default: 2)" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
32 <param argument="-abundance-max" type="integer" value="" optional="true" label="Max abundance threshold for solid kmers" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
33 </inputs>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
34 <outputs>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
35 <data name="output" format="fasta" label="${tool.name} on ${on_string}" from_work_dir="output.contigs.fa" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
36 </outputs>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
37 <tests>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
38 <test>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
39 <param name="in" value="ec.fa" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
40 <param name="kmer_size" value="21" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
41 <param name="abundance_min" value="1" />
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
42 <output name="output" ftype="fasta">
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
43 <assert_contents>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
44 <has_text text="LN:i:460 KC:i:2200 km:f:5.000"/>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
45 <has_text text="LN:i:637 KC:i:3085 km:f:5.000"/>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
46 <has_n_lines n="4"/>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
47 </assert_contents>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
48 </output>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
49 </test>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
50 </tests>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
51 <help><![CDATA[
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
52 Minia is a short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
53 The output of Minia is a set of contigs.
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
54 ]]></help>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
55 <citations>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
56 <citation type="doi">10.1186/1748-7188-8-22</citation>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
57 </citations>
0a66ef6dacb7 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia commit cd3b054df45f2805457941fa09170389f99df80e"
iuc
parents:
diff changeset
58 </tool>