annotate quast.xml @ 18:c791615bcc55 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
author iuc
date Sat, 04 Oct 2025 15:48:40 +0000
parents 84032664991e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1 <tool id="quast" name="Quast" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
2 <description>Genome assembly Quality</description>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
3 <macros>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
4 <import>macros.xml</import>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
5 </macros>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
6 <expand macro="bio_tools"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
7 <expand macro='requirements' />
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
8 <command detect_errors="exit_code">
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
9 <![CDATA[
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
10 #import re
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
11 #import os
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
12
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
13 #if str($mode.in.custom) == 'false'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
14 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
15 #set $labels = re.sub('[^\w\-_]', '_', str($mode.in.inputs.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
16 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
17 #set $labels = ','.join( [re.sub('[^\w\-_]', '_', str($x.element_identifier)) for $x in $mode.in.inputs])
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
18 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
19 echo $labels &&
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
20 #else
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
21 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
22 #if str($mode.in.labels) != ''
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
23 #set $labels = re.sub('[^\w\-_]', '_', str($mode.in.labels))
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
24 #else
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
25 #set $labels = re.sub('[^\w\-_]', '_', str($mode.in.input.element_identifier))
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
26 #end if
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
27 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
28 #set $labels = []
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
29 #for $x in $mode.in.inputs
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
30 #if str($x.labels) != ''
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
31 #silent $labels.append(re.sub('[^\w\-_]', '_', str($x.labels)))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
32 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
33 #silent $labels.append(re.sub('[^\w\-_]', '_', str($x.input.element_identifier)))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
34 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
35 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
36 #set $labels = ','.join($labels)
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
37 #end if
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
38 #end if
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
39
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
40 #if $assembly.type == 'metagenome' and $assembly.ref.origin == 'list'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
41 #set $temp_ref_list_fp = 'temp_ref_list'
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
42 #for $i in str($assembly.ref.references_list).split(',')
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
43 echo $i >> $temp_ref_list_fp &&
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
44 #end for
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
45 #end if
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
46
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
47 #if $mode.reads.reads_option == 'paired'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
48 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
49 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_1.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
50 ln -s '$mode.reads.input_1' 'pe1-${identifier}.${mode.reads.input_1.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
51 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_2.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
52 ln -s '$mode.reads.input_2' 'pe2-${identifier}.${mode.reads.input_2.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
53 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
54 #for $read in $mode.reads.input_1
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
55 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
56 ln -s '$read' 'pe1-${identifier}.${read.ext}' &&
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
57 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
58 #for $read in $mode.reads.input_2
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
59 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
60 ln -s '$read' 'pe2-${identifier}.${read.ext}' &&
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
61 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
62 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
63 #else if $mode.reads.reads_option == 'paired_collection'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
64 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
65 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_1.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
66 ln -s '$mode.reads.input_1.forward' 'pe1-${identifier}.${mode.reads.input_1.forward.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
67 ln -s '$mode.reads.input_1.reverse' 'pe2-${identifier}.${mode.reads.input_1.reverse.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
68 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
69 #for $read in $mode.reads.input_1
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
70 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
71 ln -s '$read.forward' 'pe1-${identifier}.${read.forward.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
72 ln -s '$read.reverse' 'pe2-${identifier}.${read.reverse.ext}' &&
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
73 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
74 #end if
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
75 #end if
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
76
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
77 #if $assembly.type == 'genome'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
78 quast
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
79 #else
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
80 metaquast
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
81 #end if
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
82
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
83 #if $mode.reads.reads_option == 'single'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
84 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
85 --single '$mode.reads.input_1'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
86 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
87 #for $read in $mode.reads.input_1
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
88 --single '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
89 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
90 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
91 #else if $mode.reads.reads_option == 'paired'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
92 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
93 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_1.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
94 --pe1 'pe1-${identifier}.${mode.reads.input_1.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
95 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_2.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
96 --pe2 'pe2-${identifier}.${mode.reads.input_2.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
97 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
98 #for $read in $mode.reads.input_1
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
99 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
100 --pe1 'pe1-${identifier}.${read.ext}'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
101 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
102 #for $read in $mode.reads.input_2
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
103 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
104 --pe2 'pe2-${identifier}.${read.ext}'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
105 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
106 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
107 #else if $mode.reads.reads_option == 'paired_collection'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
108 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
109 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.reads.input_1.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
110 --pe1 'pe1-${identifier}.${mode.reads.input_1.forward.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
111 --pe2 'pe2-${identifier}.${mode.reads.input_1.reverse.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
112 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
113 #for $read in $mode.reads.input_1
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
114 #set $identifier = re.sub('[^\s\w\-\\.]', '_', str($read.element_identifier))
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
115 --pe1 'pe1-${identifier}.${read.forward.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
116 --pe2 'pe2-${identifier}.${read.reverse.ext}'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
117 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
118 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
119 #else if $mode.reads.reads_option == 'paired_interlaced'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
120 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
121 --pe12 '$mode.reads.input_1'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
122 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
123 #for $read in $mode.reads.input_1
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
124 --pe12 '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
125 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
126 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
127 #else if $mode.reads.reads_option == 'mate_paired'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
128 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
129 --mp1 '$mode.reads.input_1'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
130 --mp2 '$mode.reads.input_2'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
131 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
132 #for $read in $mode.reads.input_1
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
133 --mp1 '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
134 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
135 #for $read in $mode.reads.input_2
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
136 --mp2 '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
137 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
138 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
139 #else if $mode.reads.reads_option == 'pacbio'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
140 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
141 --pacbio '$mode.reads.input_1'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
142 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
143 #for $read in $mode.reads.input_1
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
144 --pacbio '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
145 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
146 #end if
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
147 #else if $mode.reads.reads_option == 'nanopore'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
148 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
149 --nanopore '$mode.reads.input_1'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
150 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
151 #for $read in $mode.reads.input_1
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
152 --nanopore '$read'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
153 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
154 #end if
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
155 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
156 --labels '$labels'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
157 -o 'outputdir'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
158
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
159 #if $assembly.type == 'genome'
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
160 #if $assembly.ref.use_ref == 'true'
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
161 -r '$assembly.ref.r'
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
162 #if $assembly.ref.features
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
163 --features '$assembly.ref.features'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
164 #end if
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
165 #if $assembly.ref.operons
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
166 --operons '$assembly.ref.operons'
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
167 #end if
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
168 $assembly.ref.circos
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
169 $assembly.ref.k_mer.k_mer_stats
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
170 #if str($assembly.ref.k_mer.k_mer_stats) != ''
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
171 --k-mer-size $assembly.ref.k_mer.k_mer_size
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
172 #end if
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
173 #else if $assembly.ref.est_ref_size
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
174 --est-ref-size $assembly.ref.est_ref_size
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
175 #end if
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
176 $assembly.orga_type
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
177 #else if $assembly.type == 'metagenome'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
178 #if $assembly.ref.origin == 'history'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
179 -r '$assembly.ref.r'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
180 #else if $assembly.ref.origin == 'list'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
181 --references-list '$temp_ref_list_fp'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
182 #else if $assembly.ref.origin == 'silva'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
183 --max-ref-num $assembly.ref.max_ref_num
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
184 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
185 $assembly.reuse_combined_alignments
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
186 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
187 --min-identity $assembly.min_identity
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
188 --min-contig $min_contig
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
189 $split_scaffolds
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
190 $large
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
191
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
192 #if str($genes.gene_finding.tool) != 'none'
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
193 $genes.gene_finding.tool
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
194 #if $genes.gene_finding.tool == '--gene_finding' or $genes.gene_finding.tool == '--glimmer'
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
195 #set $gene_threshold = ','.join([x.strip() for x in str($genes.gene_finding.gene_thresholds).split(',')])
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
196 --gene-thresholds '$gene_threshold'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
197 #end if
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
198 #end if
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
199
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
200 $genes.rna_finding
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
201 $genes.conserved_genes_finding
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
202 $alignments.use_all_alignments
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
203 --min-alignment $alignments.min_alignment
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
204 --ambiguity-usage '$alignments.ambiguity_usage'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
205 --ambiguity-score $alignments.ambiguity_score
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
206 $alignments.fragmented
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
207 $alignments.upper_bound_assembly
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
208 #if $alignments.upper_bound_min_con
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
209 --upper-bound-min-con $alignments.upper_bound_min_con
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
210 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
211 #if $alignments.local_mis_size
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
212 --local-mis-size $alignments.local_mis_size
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
213 #end if
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
214
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
215 #if $alignments.fragmented
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
216 #if $advanced.fragmented_max_indent != ''
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
217 --fragmented-max-indent $advanced.fragmented_max_indent
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
218 #end if
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
219 #end if
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
220
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
221 #set $contig_thresholds = ','.join([x.strip() for x in str($advanced.contig_thresholds).split(',')])
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
222 --contig-thresholds '$contig_thresholds'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
223 $advanced.strict_NA
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
224 --extensive-mis-size $advanced.extensive_mis_size
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
225 --scaffold-gap-max-size $advanced.scaffold_gap_max_size
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
226 --unaligned-part-size $advanced.unaligned_part_size
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
227 $advanced.skip_unaligned_mis_contigs
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
228 $advanced.report_all_metrics
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
229 --x-for-Nx $advanced.x_for_Nx
3
1dd49661494f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit cd130fcce3254cddb9a3f501f43feaa3f37c1b67
iuc
parents: 2
diff changeset
230
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
231 #if str($mode.in.custom) == 'false'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
232 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
233 '$mode.in.inputs'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
234 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
235 #for $k in $mode.in.inputs
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
236 '$k'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
237 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
238 #end if
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
239 #else
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
240 #if $mode.mode == 'individual'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
241 '$mode.in.input'
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
242 #else
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
243 #for $k in $mode.in.inputs
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
244 '$k.input'
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
245 #end for
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
246 #end if
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
247 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
248 --threads \${GALAXY_SLOTS:-1}
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
249
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
250 #if 'krona' not in $output_files or $assembly.ref.origin != 'silva'
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
251 --no-krona
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
252 #end if
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
253
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
254 #if $assembly.type == 'genome'
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
255 && mkdir -p '$report_html.files_path'
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
256 && cp outputdir/*.html '$report_html.files_path'
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
257 #if $assembly.ref.use_ref
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
258 && cp -R outputdir/icarus_viewers '$report_html.files_path'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
259 #end if
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
260 #else
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
261 && if [[ -f "outputdir/report.tsv" ]]; then mkdir -p "outputdir/combined_reference/" && cp "outputdir/report.tsv" "outputdir/combined_reference/report.tsv"; fi
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
262 && if [[ -f "outputdir/report.html" ]]; then mkdir -p "outputdir/combined_reference/" && cp outputdir/*.html "outputdir/combined_reference/"; fi
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
263 && mkdir -p '$report_html_meta.files_path'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
264 && cp outputdir/combined_reference/*.html '$report_html_meta.files_path'
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
265 && if [[ -d "outputdir/icarus_viewers" ]]; then cp -R outputdir/icarus_viewers 'outputdir/combined_reference/'; fi
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
266 && if [[ -d "outputdir/combined_reference/icarus_viewers" ]]; then cp -R outputdir/combined_reference/icarus_viewers '$report_html_meta.files_path'; fi
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
267 && if [[ -d "outputdir/krona_charts/" ]]; then mkdir -p '$krona.files_path' && cp outputdir/krona_charts/*.html '$krona.files_path'; fi
5
844452fe09f8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
268 #end if
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
269 ]]></command>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
270 <inputs>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
271 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
272 <param name="mode" type="select" label="Assembly mode?" help="Useful to know if contigs have been generated all samples together (co-assembly) or on each sample individually (individual assembly)">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
273 <option value="individual">Individual assembly (1 contig file per sample)</option>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
274 <option value="co" selected="true">Co-assembly (1 contig file for several samples)</option>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
275 </param>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
276 <when value="individual">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
277 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
278 <expand macro="custom"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
279 <when value="true">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
280 <expand macro="labelled_input"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
281 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
282 <when value="false">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
283 <param name="inputs" type="data" format="fasta" label="Contigs/scaffolds file"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
284 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
285 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
286 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
287 <expand macro="reads_option"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
288 <when value="disabled"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
289 <when value="single">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
290 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
291 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
292 <when value="paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
293 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file #1" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
294 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file #2" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
295 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
296 <when value="paired_collection">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
297 <param name="input_1" type="data_collection" collection_type="paired" format="fastq,fastq.gz,fasta,fasta.gz" label="FASTQ/FASTA files" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
298 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
299 <when value="paired_interlaced">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
300 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
301 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
302 <when value="mate_paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
303 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file #1" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
304 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file #2" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
305 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
306 <when value="pacbio">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
307 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
308 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
309 <when value="nanopore">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
310 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
311 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
312 </conditional>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
313 </when>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
314 <when value="co">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
315 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
316 <expand macro="custom"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
317 <when value="true">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
318 <repeat name="inputs" title="Contigs/scaffolds" min="1">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
319 <expand macro="labelled_input"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
320 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
321 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
322 <when value="false">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
323 <param name="inputs" type="data" format="fasta" multiple="true" label="Contigs/scaffolds file"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
324 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
325 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
326 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
327 <expand macro="reads_option"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
328 <when value="disabled"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
329 <when value="single">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
330 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
331 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
332 <when value="paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
333 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #1" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
334 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #2" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
335 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
336 <when value="paired_collection">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
337 <param name="input_1" type="data_collection" collection_type="list:paired" format="fastq,fastq.gz,fasta,fasta.gz" label="FASTQ/FASTA files" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
338 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
339 <when value="paired_interlaced">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
340 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
341 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
342 <when value="mate_paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
343 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #1" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
344 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #2" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
345 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
346 <when value="pacbio">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
347 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
348 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
349 <when value="nanopore">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
350 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
351 </when>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
352 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
353 </when>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
354 </conditional>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
355 <conditional name="assembly">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
356 <param name="type" type="select" label="Type of assembly">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
357 <option value="genome">Genome</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
358 <option value="metagenome">Metagenome</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
359 </param>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
360 <when value="genome">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
361 <conditional name="ref">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
362 <param name="use_ref" type="select" label="Use a reference genome?" help="Many metrics can't be evaluated without a reference. If this is omitted, QUAST will only report the metrics that can be evaluated without a reference.">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
363 <option value="true">Yes</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
364 <option value="false" selected="true">No</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
365 </param>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
366 <when value="true">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
367 <param argument="-r" type="data" format="fasta" multiple="true" label="Reference genome" />
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
368 <param argument="--features" type="data" format="gff, gff3, bed" optional="true" label="Genomic feature positions in the reference genome" help="Gene coordinates for the reference genome"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
369 <param argument="--operons" type="data" format="gff, gff3, bed" optional="true" label="Operon positions in the reference genome" help="Operon coordinates for the reference genome"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
370 <conditional name="k_mer">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
371 <param argument="--k-mer-stats" type="select" label="Compute k-mer-based quality metrics?" help="It is recommended for large genomes. This may significantly increase memory and time consumption on large genomes">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
372 <option value="--k-mer-stats">Yes</option>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
373 <option value="" selected="true">No</option>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
374 </param>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
375 <when value="--k-mer-stats">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
376 <param argument="--k-mer-size" type="integer" value="101" label="Size of k" />
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
377 </when>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
378 <when value=""/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
379 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
380 <param argument="--circos" type="boolean" truevalue="--circos" falsevalue="" checked="false" label="Generage Circos plot" help="Plot Circos version of Icarus contig alignment viewer"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
381 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
382 <when value="false">
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
383 <param argument="--est-ref-size" type="integer" optional="true" label="Estimated reference genome size (in bp) for computing NGx statistics" help=""/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
384 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
385 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
386 <param name="orga_type" type="select" label="Type of organism">
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
387 <option value="">Prokaryotes: use of GeneMarkS for gene finding (default)</option>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
388 <option value="--eukaryote">Eukaryote: use of GeneMark-ES for gene finding, Barrnap for ribosomal RNA genes prediction, BUSCO for conserved orthologs finding (--eukaryote)</option>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
389 <option value="--fungus">Fungus: use of GeneMark-ES for gene finding, Barrnap for ribosomal RNA genes prediction, BUSCO for conserved orthologs finding (--fungus)</option>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
390 </param>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
391 <expand macro="min_identity_macros" value="95"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
392 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
393 <when value="metagenome">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
394 <conditional name="ref">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
395 <param name="origin" type="select" label="Reference genome" help="If no reference genomes is provided, the tool will try to identify genome content of the metagenome. By default, it will align contigs to SILVA 16S rRNA database, i.e. FASTA file containing small subunit ribosomal RNA sequences to identify genomes. The reference genomes for the chosen genomes are downloaded from the NCBI database. After that, Quast is run on all of them. Reference genomes with low genome fraction (less than 10%) are removed. The usual MetaQUAST analysis continues with the remaining references.">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
396 <option value="silva" selected="true">From SILVA database</option>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
397 <option value="history">From history</option>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
398 <option value="list">From a list</option>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
399 </param>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
400 <when value="silva">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
401 <param argument="--max-ref-num" type="integer" value="50" label="Maximum number of reference genomes (per each assembly) to download after searching in the SILVA databa" />
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
402 </when>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
403 <when value="history">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
404 <param argument="-r" type="data" format="fasta" multiple="true" label="Reference genome" />
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
405 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
406 <when value="list">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
407 <param argument="--references-list" type="text" value="" label="Comma-separated list of reference genomes" help="MetaQUAST will search for these references in the NCBI database and will download the found ones"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
408 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
409 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
410 <param argument="--reuse-combined-alignments" type="boolean" truevalue="--reuse-combined-alignments" falsevalue="" checked="false" label="Reuse the alignments on the combined reference" help="Reuse the alignments on the combined reference in the subsequent runs per separate references. That is, the alignment procedure is performed only once (for all assemblies against the combined reference) and does NOT executed for each subgroups of contigs against the corresponding separate reference genomes. In each separate reference run, all precomputed assembly alignments for other references are simply ignored" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
411 <expand macro="min_identity_macros" value="90"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
412 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
413 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
414 <param argument="--min-contig" type="integer" value="500" label="Lower threshold for a contig length (in bp)" help="Shorter contigs won't be taken into account"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
415 <param argument="--split-scaffolds" type="boolean" truevalue="--split-scaffolds" falsevalue="" checked="false" label="Are assemblies scaffolds rather than contigs?" help="QUAST will add split versions of assemblies to the comparison. Assemblies are split by continuous fragments of N's of length >= 10. If broken version is equal to the original assembly (i.e. nothing was split) it is not included in the comparison."/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
416 <param argument="--large" type="boolean" truevalue="--large" falsevalue="" checked="false" label="Is genome large (> 100 Mbp)?" help="Use optimal parameters for evaluation of large genomes. Affects speed and accuracy. In particular, imposes --eukaryote --min-contig 3000 --min-alignment 500 --extensive-mis-size 7000 (can be overridden manually with the corresponding options). In addition, this mode tries to identify misassemblies caused by transposable elements and exclude them from the number of misassemblies."/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
417 <section name="genes" title="Genes">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
418 <conditional name="gene_finding">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
419 <param name="tool" type="select" label="Tool for gene prediction" help="">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
420 <option value="none">Don't predict genes</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
421 <option value="--gene-finding">GeneMarkS if prokaryotes or GeneMark-ES if eukaryotes or fungi</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
422 <option value="--mgm">MetaGeneMark, specially for metagenomic assembly</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
423 <option value="--glimmer">Glimmer</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
424 </param>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
425 <when value="none"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
426 <when value="--gene-finding">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
427 <expand macro="gene_thresholds"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
428 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
429 <when value="--mgm"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
430 <when value="--glimmer">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
431 <expand macro="gene_thresholds"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
432 </when>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
433 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
434 <param argument="--rna-finding" type="boolean" truevalue="--rna-finding" falsevalue="" checked="false" label="Enables ribosomal RNA gene finding?" help="By default, we assume that the genome is prokaryotic, and Barrnap uses the bacterial database for rRNA prediction. If the genome is eukaryotic (fungal), use --eukaryote (--fungus) option to force Barrnap to work with the eukaryotic (fungal) database. "/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
435 <param argument="--conserved-genes-finding" type="boolean" truevalue="--conserved-genes-finding" falsevalue="" checked="false" label="Enables search for Universal Single-Copy Orthologs using BUSCO?" help="By default, we assume that the genome is prokaryotic, and BUSCO uses the bacterial database of orthologs. If the genome is eukaryotic (fungal), use --eukaryote (--fungus) option to force BUSCO to work with the eukaryotic (fungal) database. "/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
436 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
437 <section name="alignments" title="Alignments">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
438 <param argument="--use-all-alignments" type="boolean" truevalue="--use-all-alignments" falsevalue="" checked="false" label="Use all alignments as in QUAST v.1.*. to compute genome fraction, # genomic features, # operons metrics?" help="By default, QUAST v.2.0 and higher filters out ambiguous and redundant alignments, keeping only one alignment per contig (or one set of non-overlapping or slightly overlapping alignments)"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
439 <param argument="--min-alignment" type="integer" value="65" label="Minimum length of alignment" help="Alignments shorter than this value will be filtered. Note that all alignments shorter than 65 bp will be filtered regardless of this threshold."/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
440 <param argument="--ambiguity-usage" type="select" label="How processing equally good alignments of a contig (probably repeats)?" help="">
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
441 <option value="none">Skip all such alignments</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
442 <option value="one" selected="true">Take only one (the very best one)</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
443 <option value="all">Use all alignments. It can cause a significant increase of # mismatches (repeats are almost always inexact due to accumulated SNPs, indels, etc.). It is useful for metagenomic assemblies where ambiguous alignments might represent homologous sequences of different strains</option>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
444 </param>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
445 <param argument="--ambiguity-score" type="float" value="0.99" min="0.8" max="1.0" label="Score S for defining equally good alignments of a single contig" help="All alignments are sorted by decreasing LEN × IDY% value. All alignments with LEN × IDY% less than S × best(LEN × IDY%) are discarded. "/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
446 <param argument="--fragmented" type="boolean" truevalue="--fragmented" falsevalue="" checked="false" label="Fragmented reference genome" help="Reference genome is fragmented (e.g. a scaffold reference). QUAST will try to detect misassemblies caused by the fragmentation and mark them fake (will be excluded from misassemblies). Note: QUAST will not detect misassemblies caused by the linear representation of circular genome "/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
447 <param argument="--upper-bound-assembly" type="boolean" truevalue="--upper-bound-assembly" falsevalue="" label="Simulate upper bound assembly" help="Simulate upper bound assembly based on the reference genome and a given set reads (mate-pairs or long reads, such as Pacbio SMRT/Oxford Nanopore, are REQUIRED). This assembly is added to the comparison and could be useful for estimating the upper bounds of completeness and contiguity that theoretically can be reached by assembly software from this particular set of reads. The concept is based on the fact that the reference genome cannot be completely reconstructed from raw reads due to long genomic repeats and low covered regions." />
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
448 <param argument="--upper-bound-min-con" type="integer" value="" optional="true" label="Minimal number of 'connecting reads' needed for joining upper bound contigs into a scaffold" help="This is important for a realistic estimation of genome assembly fragmentation due to long repeats. The default values is 2 for mate-pairs and 1 for long reads (PacBio or Nanopore libraries)"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
449 <param argument="--local-mis-size" type="integer" value="200" optional="true" label="Minimal local misassembly size" help="Lower threshold for the local misassembly size. Shorter inconsistencies are considered as (long) indels. The default value is 200 bp. Note that the threshold should be equal to or lower than minimal extensive misassembly size, which is 1000 bp by default"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
450 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
451 <section name="advanced" title="Advanced options">
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
452 <param argument="--contig-thresholds" type="text" value="0,1000,5000,10000,25000,50000" label="Comma-separated list of contig length thresholds (in bp)" help="Used in # contigs ≥ x and total length (≥ x) metrics"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
453 <param argument="--strict-NA" type="boolean" truevalue="--strict-NA" falsevalue="" checked="false" label="Break contigs at every misassembly event (including local ones) to compute NAx and NGAx statistics?" help="By default, QUAST breaks contigs only at extensive misassemblies (not local ones)."/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
454 <param argument="--extensive-mis-size" type="integer" value="1000" min="85" label="Lower threshold for the relocation size (gap or overlap size between left and right flanking sequence)" help="Shorter relocations are considered as local misassemblies. It does not affect other types of extensive misassemblies (inversions and translocations). The default value is 1000 bp. Note that the threshold should be greater than maximum indel length which is 85 bp."/>
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
455 <param argument="--scaffold-gap-max-size" type="integer" value="10000" label="Max allowed scaffold gap length difference for detecting corresponding type of misassemblies" help="Longer inconsistencies are considered as relocations and thus, counted as extensive misassemblies. The default value is 10000 bp. Note that the threshold make sense only if it is greater than extensive misassembly size"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
456 <param argument="--unaligned-part-size" type="integer" value="500" label="Lower threshold for detecting partially unaligned contigs" help=""/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
457 <param argument="--skip-unaligned-mis-contigs" type="boolean" truevalue="" falsevalue="--skip-unaligned-mis-contigs" checked="true" label="Distinguish contigs with more than 50% unaligned bases as a separate group of contigs?" help="By default, QUAST breaks contigs only at extensive misassemblies (not local ones)."/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
458 <param argument="--fragmented-max-indent" type="integer" min="0" value="" optional="true" label="Fragment max indent" help="Mark translocation as fake if both alignments are located no further than N bases from the ends of the reference fragments. The value should be less than extensive misassembly size.Default value is 50. Note: requires --fragmented option" />
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
459 <param argument="--report-all-metrics" type="boolean" truevalue="--report-all-metrics" falsevalue="" checked="false" label="Report all metrics" help="Keep all quality metrics in the main report. Usually, all not-relevant metrics are not included in the report, e.g., reference-based metrics in the no-reference mode. Also, if metric values are undefined for all input assemblies, the metric is removed from the report" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
460 <param argument="--x-for-Nx" type="integer" min="0" max="100" value="90" label="Report Nx, Lx, etc metrics for specific value of 'x'" help="Value of 'x' for Nx, Lx, NGx, NGAx, etc metrics reported in addition to N50, L50, NG50, NGA50, etc" />
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
461 </section>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
462 <param name="output_files" type="select" display="checkboxes" optional="true" multiple="true" label="Output files">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
463 <option value="html" selected="true">HTML reports</option>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
464 <option value="pdf">PDF reports</option>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
465 <option value="tabular">Tabular reports</option>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
466 <option value="log">Log file</option>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
467 <option value="summary">Key metric summary (metagenome mode)</option>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
468 <option value="krona">Krona charts (metagenome mode without reference genomes)</option>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
469 </param>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
470 </inputs>
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
471 <outputs>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
472 <data name="report_tabular" format="tabular" label="${tool.name} on ${on_string}: tabular report" from_work_dir="outputdir/report.tsv">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
473 <filter>assembly['type'] == 'genome' and 'tabular' in output_files</filter>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
474 </data>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
475 <data name="report_tabular_meta" format="tabular" label="${tool.name} on ${on_string}: tabular report for combined reference genome" from_work_dir="outputdir/combined_reference/report.tsv">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
476 <filter>assembly['type'] == 'metagenome' and 'tabular' in output_files</filter>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
477 </data>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
478 <data name="report_html" format="html" label="${tool.name} on ${on_string}: HTML report" from_work_dir="outputdir/report.html">
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
479 <filter>assembly['type'] == 'genome' and 'html' in output_files</filter>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
480 </data>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
481 <data name="report_html_meta" format="html" label="${tool.name} on ${on_string}: HTML report for combined reference genome" from_work_dir="outputdir/combined_reference/report.html">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
482 <filter>assembly['type'] == 'metagenome' and 'html' in output_files</filter>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
483 </data>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
484 <data name="report_pdf" format="pdf" label="${tool.name} on ${on_string}: PDF report" from_work_dir="outputdir/report.pdf">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
485 <filter>assembly['type'] == 'genome' and 'pdf' in output_files</filter>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
486 </data>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
487 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log" from_work_dir="outputdir/quast.log">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
488 <filter>assembly['type'] == 'genome' and 'log' in output_files</filter>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
489 </data>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
490 <data name="log_meta" format="txt" label="${tool.name} on ${on_string}: Log Meta" from_work_dir="outputdir/metaquast.log">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
491 <filter>assembly['type'] == 'metagenome' and 'log' in output_files</filter>
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
492 </data>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
493 <data name="mis_ass" format="tabular" label="${tool.name} on ${on_string}: Misassemblies report" from_work_dir="outputdir/contigs_reports/misassemblies_report.txt">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
494 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true'</filter>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
495 <filter>'tabular' in output_files</filter>
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
496 </data>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
497 <data name="unalign" format="tabular" label="${tool.name} on ${on_string}: Unaligned contigs report" from_work_dir="outputdir/contigs_reports/unaligned_report.tsv">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
498 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true'</filter>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
499 <filter>'tabular' in output_files</filter>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
500 </data>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
501 <data name="kmers" format="tabular" label="${tool.name} on ${on_string}: K-mer-based metrics report" from_work_dir="outputdir/k_mer_stats/kmers_report.txt">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
502 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true' and assembly['ref']['k_mer']['k_mer_stats'] != ''</filter>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
503 <filter>'tabular' in output_files</filter>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
504 </data>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
505 <data name="circos_output" format="png" from_work_dir="outputdir/circos/circos.png" label="${tool.name} on ${on_string}: Circos plot">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
506 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true' and assembly['ref']['circos']</filter>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
507 </data>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
508 <collection name="metrics_tabular" type="list" label="${tool.name} on ${on_string}: Tabular reports for key metrics" >
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
509 <discover_datasets pattern="(?P&lt;designation&gt;.+).tsv" directory="outputdir/summary/TSV/" format="tabular"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
510 <filter>assembly['type'] == 'metagenome' and 'summary' in output_files</filter>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
511 </collection>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
512 <collection name="metrics_pdf" type="list" label="${tool.name} on ${on_string}: PDF reports for key metrics" >
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
513 <discover_datasets pattern="(?P&lt;designation&gt;.+).pdf" directory="outputdir/summary/PDF/" format="pdf"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
514 <filter>assembly['type'] == 'metagenome' and 'summary' in output_files</filter>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
515 </collection>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
516 <data name="krona" format="html" label="${tool.name} on ${on_string}: Krona chart" from_work_dir="outputdir/krona_charts/*.html">
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
517 <filter>assembly['type'] == 'metagenome' and assembly['ref']['origin'] == 'silva' and 'krona' in output_files</filter>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
518 </data>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
519 </outputs>
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
520 <tests>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
521 <!-- Test 01: reference, genes annotations and operon coordinates -->
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
522 <test expect_num_outputs="2">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
523 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
524 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
525 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
526 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
527 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
528 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
529 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
530 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
531 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
532 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
533 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
534 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
535 </conditional>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
536 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
537 <conditional name="assembly">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
538 <param name="type" value="genome"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
539 <conditional name="ref">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
540 <param name="use_ref" value="true"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
541 <param name="r" value="reference.fna"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
542 <param name="features" value="genes.gff"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
543 <param name="operons" value="operons.bed"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
544 <conditional name="k_mer">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
545 <param name="k_mer_stats" value="--k-mer-stats"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
546 <param name="k_mer_size" value="101" />
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
547 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
548 <param name="circos" value="true"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
549 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
550 <param name="orga_type" value=""/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
551 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
552 <param name="min_contig" value="500"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
553 <param name="split_scaffolds" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
554 <section name="genes">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
555 <conditional name="gene_finding">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
556 <param name="tool" value="--gene_finding"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
557 <param name="gene_thresholds" value="0,300,1500,3000"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
558 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
559 <param name="rna_finding" value="true"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
560 <param name="conserved_genes_finding" value="true"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
561 <param name="min_identity" value="95.0"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
562 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
563 <section name="alignments">
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
564 <param name="use_all_alignments" value="true"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
565 <param name="min_alignment" value="65"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
566 <param name="ambiguity_usage" value="one"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
567 <param name="ambiguity_score" value="0.99"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
568 </section>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
569 <section name="advanced">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
570 <param name="contig_thresholds" value="0,1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
571 <param name="strict_NA" value="true"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
572 <param name="extensive_mis_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
573 <param name="scaffold_gap_max_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
574 <param name="unaligned_part_size" value="500"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
575 <param name="skip_unaligned_mis_contigs" value="true"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
576 <param name="fragmented_max_indent" value="50"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
577 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
578 <param name="output_files" value="html"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
579 <output name="report_html" file="test1_report.html" ftype="html" compare="sim_size"/>
13
74be236ac5fd "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 12
diff changeset
580 <output name="circos_output" file="test1_circos.png" ftype="png" compare="sim_size"/>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
581 </test>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
582 <!-- Test 02: all outputs -->
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
583 <test expect_num_outputs="8">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
584 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
585 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
586 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
587 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
588 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
589 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
590 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
591 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
592 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
593 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
594 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
595 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
596 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
597 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
598 <conditional name="assembly">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
599 <param name="type" value="genome"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
600 <conditional name="ref">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
601 <param name="use_ref" value="true"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
602 <param name="r" value="reference.fna"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
603 <param name="features" value="genes.gff"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
604 <param name="operons" value="operons.bed"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
605 <conditional name="k_mer">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
606 <param name="k_mer_stats" value="--k-mer-stats"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
607 <param name="k_mer_size" value="101" />
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
608 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
609 <param name="circos" value="true"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
610 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
611 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
612 <param name="output_files" value="html,pdf,tabular,log"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
613 <output name="report_html" file="test2_report.html" ftype="html" compare="sim_size"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
614 <output name="report_pdf" file="test2_report.pdf" ftype="pdf" compare="sim_size"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
615 <output name="report_tabular" file="test2_report.tab" ftype="tabular"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
616 <output name="log" file="test2.log" ftype="txt" compare="sim_size"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
617 <output name="mis_ass" file="test2_missasemblies.tab" ftype="tabular"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
618 <output name="unalign" file="test2_unaligned.tab" ftype="tabular"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
619 <output name="kmers" file="test2_kmers.tab" ftype="tabular"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
620 <output name="circos_output" file="test2_circos.png" ftype="png" compare="sim_size"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
621 </test>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
622 <!-- Test 03: without reference -->
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
623 <test expect_num_outputs="3">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
624 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
625 <param name="mode" value="individual"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
626 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
627 <param name="custom" value="false"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
628 <param name="inputs" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
629 </conditional>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
630 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
631 <conditional name="assembly">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
632 <param name="type" value="genome"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
633 <conditional name="ref">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
634 <param name="use_ref" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
635 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
636 <param name="orga_type" value="--eukaryote"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
637 <param name="min_identity" value="95.0"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
638 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
639 <param name="min_contig" value="500"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
640 <param name="split_scaffolds" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
641 <param name="large" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
642 <section name="genes">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
643 <conditional name="gene_finding">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
644 <param name="tool" value="none"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
645 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
646 <param name="rna_finding" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
647 <param name="conserved_genes_finding" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
648 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
649 <section name="alignments">
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
650 <param name="use_all_alignments" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
651 <param name="min_alignment" value="65"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
652 <param name="ambiguity_usage" value="one"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
653 <param name="ambiguity_score" value="0.99"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
654 <param name="fragmented" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
655 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
656 <section name="advanced">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
657 <param name="contig_thresholds" value="0,1000, 500"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
658 <param name="strict_NA" value="false"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
659 <param name="extensive_mis_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
660 <param name="scaffold_gap_max_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
661 <param name="unaligned_part_size" value="500"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
662 <param name="skip_unaligned_mis_contigs" value="-"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
663 </section>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
664 <param name="output_files" value="html,pdf,log" />
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
665 <output name="log" file="test3.log" ftype="txt" compare="sim_size"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
666 <output name="report_html" file="test3_report.html" compare="sim_size"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
667 <output name="report_pdf" file="test3_report.pdf" compare="sim_size"/>
3
1dd49661494f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit cd130fcce3254cddb9a3f501f43feaa3f37c1b67
iuc
parents: 2
diff changeset
668 </test>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
669 <!-- Test 04: metagenomics -->
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
670 <test expect_num_outputs="3">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
671 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
672 <param name="mode" value="individual"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
673 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
674 <param name="custom" value="false"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
675 <param name="inputs" value="contigs3.fasta"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
676 </conditional>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
677 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
678 <conditional name="assembly">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
679 <param name="type" value="metagenome"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
680 <conditional name="ref">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
681 <param name="origin" value="silva"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
682 <param name="max_ref_num" value="50"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
683 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
684 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
685 <param name="min_contig" value="500"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
686 <param name="split_scaffolds" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
687 <param name="large" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
688 <section name="genes">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
689 <conditional name="gene_finding">
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
690 <param name="tool" value="--mgm"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
691 </conditional>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
692 <param name="rna_finding" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
693 <param name="conserved_genes_finding" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
694 </section>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
695 <section name="alignments">
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
696 <param name="use_all_alignments" value="false"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
697 <param name="min_alignment" value="65"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
698 <param name="min_identity" value="95.0"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
699 <param name="ambiguity_usage" value="one"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
700 <param name="ambiguity_score" value="0.99"/>
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
701 <param name="fragmented" value="false"/>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
702 </section>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
703 <section name="advanced">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
704 <param name="contig_thresholds" value="0,1000, 500"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
705 <param name="strict_NA" value="false"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
706 <param name="extensive_mis_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
707 <param name="scaffold_gap_max_size" value="1000"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
708 <param name="unaligned_part_size" value="500"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
709 <param name="skip_unaligned_mis_contigs" value="-"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
710 </section>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
711 <param name="output_files" value="log,html,tabular"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
712 <output name="log_meta" ftype="txt">
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
713 <assert_contents>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
714 <has_text text="Reference genomes are not found" />
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
715 </assert_contents>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
716 </output>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
717 <output name="report_tabular_meta" ftype="tabular">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
718 <assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
719 <has_text text="# contigs (>= 0 bp)"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
720 <has_text text="contigs3_fasta"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
721 <has_text text="# N's per 100 kbp"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
722 <has_n_lines n="17"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
723 </assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
724 </output>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
725 <output name="report_html_meta" ftype="html">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
726 <assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
727 <has_text text="Quality Assessment Tool for Genome Assemblies" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
728 <has_text text="contigs3_fasta" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
729 <has_text text="Statistics without reference" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
730 </assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
731 </output>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
732 </test>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
733 <!-- Test 05: FASTQ read files -->
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
734 <test expect_num_outputs="3">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
735 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
736 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
737 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
738 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
739 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
740 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
741 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
742 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
743 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
744 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
745 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
746 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
747 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
748 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
749 <param name="reads_option" value="pacbio"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
750 <param name="input_1" value="pacbio_01.fastq,pacbio_02.fastq,pacbio_03.fastq,pacbio_04.fastq"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
751 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
752 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
753 <conditional name="assembly">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
754 <param name="type" value="genome"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
755 <conditional name="ref">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
756 <param name="use_ref" value="true"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
757 <param name="r" value="reference.fna"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
758 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
759 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
760 <section name="alignments">
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
761 <param name="upper_bound_assembly" value="true"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
762 <param name="upper_bound_min_con" value="1"/>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
763 </section>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
764 <param name="output_files" value="tabular"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
765 <output name="report_tabular" file="test5.tab" ftype="tabular"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
766 <output name="mis_ass" ftype="tabular">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
767 <assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
768 <has_text text="All statistics are based on contigs of size >= 500 bp"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
769 <has_text text="# scaffold misassemblies"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
770 <has_text text="contig1"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
771 </assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
772 </output>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
773 <output name="unalign" ftype="tabular">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
774 <assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
775 <has_text text="Fully unaligned length"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
776 <has_text text="contig1"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
777 </assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
778 </output>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
779 </test>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
780 <!-- Test 06: FASTQ.gz read files -->
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
781 <test expect_num_outputs="1">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
782 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
783 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
784 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
785 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
786 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
787 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
788 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
789 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
790 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
791 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
792 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
793 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
794 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
795 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
796 <param name="reads_option" value="single"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
797 <param name="input_1" value="pacbio_01.fastq.gz,pacbio_02.fastq.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
798 </conditional>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
799 </conditional>
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
800 <param name="output_files" value="tabular"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
801 <output name="report_tabular" file="test6.tab" ftype="tabular"/>
6
bf2c7b30dfb6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
802 </test>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
803 <!-- Test 07: FASTA.gz read files -->
13
74be236ac5fd "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 12
diff changeset
804 <test expect_num_outputs="1">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
805 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
806 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
807 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
808 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
809 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
810 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
811 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
812 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
813 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
814 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
815 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
816 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
817 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
818 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
819 <param name="reads_option" value="single"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
820 <param name="input_1" value="pacbio_01.fasta.gz,pacbio_02.fasta.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
821 </conditional>
13
74be236ac5fd "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 12
diff changeset
822 </conditional>
74be236ac5fd "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 12
diff changeset
823 <param name="output_files" value="tabular"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
824 <output name="report_tabular" file="test7.tab" ftype="tabular"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
825 </test>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
826 <!-- Test 08: metagenomics all tab outputs-->
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
827 <test expect_num_outputs="3">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
828 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
829 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
830 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
831 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
832 <param name="input" value="meta_contigs_1.fasta"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
833 <param name="labels" value="meta_contigs_1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
834 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
835 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
836 <param name="input" value="meta_contigs_2.fasta"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
837 <param name="labels" value="meta_contigs_2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
838 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
839 </conditional>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
840 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
841 <conditional name="assembly">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
842 <param name="type" value="metagenome"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
843 <conditional name="ref">
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
844 <param name="origin" value="history"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
845 <param name="r" value="meta_ref_1.fasta,meta_ref_2.fasta,meta_ref_3.fasta"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
846 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
847 <param name="min_identity" value="95.0"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
848 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
849 <param name="min_contig" value="500"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
850 <param name="split_scaffolds" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
851 <param name="large" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
852 <section name="genes">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
853 <conditional name="gene_finding">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
854 <param name="tool" value="none"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
855 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
856 <param name="rna_finding" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
857 <param name="conserved_genes_finding" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
858 </section>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
859 <section name="alignments">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
860 <param name="use_all_alignments" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
861 <param name="min_alignment" value="65"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
862 <param name="ambiguity_usage" value="one"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
863 <param name="ambiguity_score" value="0.99"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
864 <param name="fragmented" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
865 </section>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
866 <section name="advanced">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
867 <param name="contig_thresholds" value="0,1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
868 <param name="strict_NA" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
869 <param name="extensive_mis_size" value="1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
870 <param name="scaffold_gap_max_size" value="1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
871 <param name="unaligned_part_size" value="500"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
872 <param name="skip_unaligned_mis_contigs" value="-"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
873 </section>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
874 <param name="output_files" value="tabular,summary"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
875 <output name="report_tabular_meta" ftype="tabular">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
876 <assert_contents>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
877 <has_text text="# contigs (>= 0 bp)"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
878 <has_text text="meta_ref_3_fasta"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
879 <has_text text="# N's per 100 kbp"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
880 <has_n_lines n="34"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
881 </assert_contents>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
882 </output>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
883 <output_collection name="metrics_tabular" type="list" count="15"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
884 <output_collection name="metrics_pdf" type="list" count="16"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
885 </test>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
886 <!-- Test 09: metagenomics log, html and krona outputs-->
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
887 <test expect_num_outputs="2">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
888 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
889 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
890 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
891 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
892 <param name="input" value="meta_contigs_1.fasta"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
893 <param name="labels" value="meta_contigs_1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
894 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
895 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
896 <param name="input" value="meta_contigs_2.fasta"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
897 <param name="labels" value="meta_contigs_2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
898 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
899 </conditional>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
900 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
901 <conditional name="assembly">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
902 <param name="type" value="metagenome"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
903 <conditional name="ref">
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
904 <param name="origin" value="list"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
905 <param name="references_list" value="Lactobacillus_delbrueckii_bulgaricus,Lactobacillus_reuteri"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
906 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
907 <param name="min_identity" value="95.0"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
908 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
909 <param name="min_contig" value="500"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
910 <param name="split_scaffolds" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
911 <param name="large" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
912 <section name="genes">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
913 <conditional name="gene_finding">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
914 <param name="tool" value="none"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
915 </conditional>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
916 <param name="rna_finding" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
917 <param name="conserved_genes_finding" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
918 </section>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
919 <section name="alignments">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
920 <param name="use_all_alignments" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
921 <param name="min_alignment" value="65"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
922 <param name="ambiguity_usage" value="all"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
923 <param name="ambiguity_score" value="0.99"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
924 <param name="fragmented" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
925 </section>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
926 <section name="advanced">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
927 <param name="contig_thresholds" value="0,1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
928 <param name="strict_NA" value="false"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
929 <param name="extensive_mis_size" value="1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
930 <param name="scaffold_gap_max_size" value="1000"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
931 <param name="unaligned_part_size" value="500"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
932 <param name="skip_unaligned_mis_contigs" value="-"/>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
933 </section>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
934 <param name="output_files" value="html,log"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
935 <output name="report_html_meta" ftype="html">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
936 <assert_contents>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
937 <has_text text="meta_contigs_2_fasta" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
938 <has_text text="combined_reference" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
939 <has_text text="Lactobacillus" />
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
940 </assert_contents>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
941 </output>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
942 <output name="log_meta" ftype="txt">
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
943 <assert_contents>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
944 <has_text text="List of references was provided, starting to download reference genomes from NCBI" />
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
945 <has_text text="Lactobacillus_delbrueckii_bulgaricus" />
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
946 </assert_contents>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
947 </output>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
948 </test>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
949 <!-- Test 10: Test new options -->
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
950 <test expect_num_outputs="1">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
951 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
952 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
953 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
954 <param name="custom" value="true"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
955 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
956 <param name="input" value="contigs1.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
957 <param name="labels" value="contig1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
958 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
959 <repeat name="inputs">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
960 <param name="input" value="contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
961 <param name="labels" value="contig2"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
962 </repeat>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
963 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
964 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
965 <section name="alignments">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
966 <param name="local_mis_size" value="210"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
967 </section>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
968 <conditional name="assembly">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
969 <param name="type" value="genome"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
970 <conditional name="ref">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
971 <param name="use_ref" value="false"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
972 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
973 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
974 <section name="advanced">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
975 <param name="report_all_metrics" value="true"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
976 <param name="x_for_Nx" value="80"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
977 </section>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
978 <param name="output_files" value="tabular"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
979 <output name="report_tabular" file="test10_tabular_report.tab" ftype="tabular"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
980 </test>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
981 <!-- Test 11: Test paired fastq.gz inputs -->
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
982 <test expect_num_outputs="1">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
983 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
984 <param name="mode" value="individual"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
985 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
986 <param name="custom" value="true"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
987 <param name="input" value="contigs1.fna"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
988 <param name="labels" value="contig1"/>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
989 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
990 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
991 <param name="reads_option" value="paired"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
992 <param name="input_1" value="reads1.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
993 <param name="input_2" value="reads2.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
994 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
995 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
996 <conditional name="assembly">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
997 <param name="type" value="genome"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
998 <conditional name="ref">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
999 <param name="use_ref" value="false"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1000 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1001 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1002 <param name="output_files" value="tabular"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1003 <output name="report_tabular" ftype="tabular">
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
1004 <assert_contents>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1005 <has_text text="# contigs (>= 0 bp)"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1006 <has_text text="contig1"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1007 <has_text text="# N's per 100 kbp"/>
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
1008 <has_n_lines n="30"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1009 </assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1010 </output>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1011 </test>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1012 <!-- Test 12: Test paired-collection fastq.gz inputs -->
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1013 <test expect_num_outputs="1">
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1014 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1015 <param name="mode" value="individual"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1016 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1017 <param name="custom" value="true"/>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1018 <param name="input" value="contigs1.fna"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1019 <param name="labels" value="contig1"/>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1020 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1021 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1022 <param name="reads_option" value="paired_collection"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1023 <param name="input_1">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1024 <collection type="paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1025 <element name="forward" value="reads1.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1026 <element name="reverse" value="reads2.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1027 </collection>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1028 </param>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1029 </conditional>
15
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1030 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1031 <conditional name="assembly">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1032 <param name="type" value="genome"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1033 <conditional name="ref">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1034 <param name="use_ref" value="false"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1035 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1036 </conditional>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1037 <param name="output_files" value="tabular"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1038 <output name="report_tabular" ftype="tabular">
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1039 <assert_contents>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1040 <has_text text="# contigs (>= 0 bp)"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1041 <has_text text="contig1"/>
25368452f73b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit b4d6989e1e185120ce470df5c2b0d93330d5e124
iuc
parents: 14
diff changeset
1042 <has_text text="# N's per 100 kbp"/>
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
1043 <has_n_lines n="23"/>
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
1044 </assert_contents>
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
1045 </output>
13
74be236ac5fd "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 12
diff changeset
1046 </test>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1047 <!-- Test 13: Test co-assembly with paired-collection fastq.gz inputs -->
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1048 <test expect_num_outputs="1">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1049 <conditional name="mode">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1050 <param name="mode" value="co"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1051 <conditional name="in">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1052 <param name="custom" value="false"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1053 <param name="inputs" value="contigs1.fna,contigs2.fna"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1054 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1055 <conditional name="reads">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1056 <param name="reads_option" value="paired_collection"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1057 <param name="input_1">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1058 <collection type="list:paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1059 <element name="s1">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1060 <collection type="paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1061 <element name="forward" value="reads1.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1062 <element name="reverse" value="reads2.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1063 </collection>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1064 </element>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1065 <element name="s2">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1066 <collection type="paired">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1067 <element name="forward" value="reads1.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1068 <element name="reverse" value="reads2.fastq.gz" ftype="fastqsanger.gz"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1069 </collection>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1070 </element>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1071 </collection>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1072 </param>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1073 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1074 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1075 <conditional name="assembly">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1076 <param name="type" value="genome"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1077 <conditional name="ref">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1078 <param name="use_ref" value="false"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1079 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1080 </conditional>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1081 <param name="output_files" value="tabular"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1082 <output name="report_tabular" ftype="tabular">
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1083 <assert_contents>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1084 <has_text text="# contigs (>= 0 bp)"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1085 <has_text text="contigs1"/>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1086 <has_text text="# N's per 100 kbp"/>
18
c791615bcc55 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 5b2225491719b922003c69f0394bfc3eb238b360
iuc
parents: 16
diff changeset
1087 <has_n_lines n="30"/>
16
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1088 </assert_contents>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1089 </output>
84032664991e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 617a2c388e73d6c93a2a1db9a58b914510052b69
iuc
parents: 15
diff changeset
1090 </test>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1091 </tests>
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1092 <help>
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1093 <![CDATA[
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1094 **What it does**
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1095
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1096 QUAST = QUality ASsessment Tool. The tool evaluates genome assemblies by computing various metrics.
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1097
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1098 If you have one or multiple genome assemblies, you can assess their quality with Quast. It works with or without reference genome. If you are new to Quast, start by reading its `manual page <http://quast.sourceforge.net/docs/manual.html>`_.
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1099
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1100 **Using Quast without reference**
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1101
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1102 Without reference Quast can calculate a number of assembly related-metrics but cannot provide any information about potential misassemblies, inversions, translocations, etc. Suppose you have three assemblies produced by Unicycler corresponding to three different antibiotic treatments *car*, *pit*, and *cef* (these stand for carbenicillin, piperacillin, and cefsulodin, respectively). Evaluating them without reference will produce the following Quast outputs:
14
459ceb2ff536 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 73d0b20640827d06320405f8d52cead9bf027beb"
iuc
parents: 13
diff changeset
1103
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1104 * Quast report in HTML format
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1105 * `Contig viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1106 * `Quast report <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_ in Tab-delimited format
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1107 * Quast log (a file technical information about Quast tool execution)
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1108
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1109 The **tab delimited Quast report** will contain the following information::
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1110
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1111 Assembly pit_fna cef_fna car_fna
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1112 # contigs (>= 0 bp) 100 91 94
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1113 # contigs (>= 1000 bp) 62 58 61
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1114 Total length (>= 0 bp) 6480635 6481216 6480271
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1115 Total length (>= 1000 bp) 6466917 6468946 6467103
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1116 # contigs 71 66 70
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1117 Largest contig 848753 848766 662053
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1118 Total length 6473173 6474698 6473810
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1119 GC (%) 66.33 66.33 66.33
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1120 N50 270269 289027 254671
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1121 N75 136321 136321 146521
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1122 L50 7 7 8
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1123 L75 15 15 16
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1124 # N's per 100 kbp 0.00 0.00 0.00
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1125
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1126 where values are defined as specified in `Quast manual <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1127
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1128 **Quast report in HTML format** contains graphs in addition to the above metrics, while **Contig viewer** draws contigs ordered from longest to shortest. This ordering is suitable for comparing only largest contigs or number of contigs longer than a specific threshold. The viewer shows N50 and N75 with color and textual indication. If the reference genome is available or at least approximate genome length is known (see `--est-ref-size`), NG50 and NG75 are also shown. You can also tone down contigs shorter than a specified threshold using Icarus control panel:
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1129
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1130 .. image:: $PATH_TO_IMAGES/contig_view_noR.png
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1131 :width: 558
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1132 :height: 412
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1133
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1134 Also see `Plot description <http://quast.sourceforge.net/docs/manual.html#sec2>`_ section of the manual.
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1135
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1136 **Using Quast with reference**
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1137
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1138 Car, pit, and cef are in fact assemblies of *Pseudomonas aeruginosa* UCBPP-PA14, so we can use its genome as a reference (by supplying a Fasta file containing *P. aeruginosa* pa14 genome to **Reference genome** input box). The following outputs will be produced (note the alignment viewer):
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1139
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1140 * Quast report in HTML format
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1141 * `Contig viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1142 * `Alignment viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1143 * `Quast report <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_ in Tab-delimited format
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1144 * Summary of `misassemblies <http://quast.sourceforge.net/docs/manual.html#sec3.1.2>`_
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1145 * Summary of `unaligned contigs <http://quast.sourceforge.net/docs/manual.html#sec3.1.3>`_
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1146 * Quast log (a file technical information about Quast tool execution)
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1147
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1148 With the reference Quast produces a much more comprehensive set of results::
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1149
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1150 Assembly pit_fna cef_fna car_fna
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1151 # contigs (>= 0 bp) 100 91 94
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1152 # contigs (>= 1000 bp) 62 58 61
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1153 Total length (>= 0 bp) 6480635 6481216 6480271
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1154 Total length (>= 1000 bp) 6466917 6468946 6467103
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1155 # contigs 71 66 70
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1156 Largest contig 848753 848766 662053
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1157 Total length 6473173 6474698 6473810
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1158 Reference length 6537648 6537648 6537648
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1159 GC (%) 66.33 66.33 66.33
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1160 Reference GC (%) 66.29 66.29 66.29
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1161 N50 270269 289027 254671
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1162 NG50 270269 289027 254671
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1163 N75 136321 136321 146521
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1164 NG75 136321 136321 136321
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1165 L50 7 7 8
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1166 LG50 7 7 8
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1167 L75 15 15 16
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1168 LG75 15 15 17
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1169 # misassemblies 0 0 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1170 # misassembled contigs 0 0 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1171 Misassembled contigs length 0 0 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1172 # local misassemblies 1 1 2
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1173 # unaligned mis. contigs 0 0 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1174 # unaligned contigs 0 + 0 0 + 0 0 + 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1175 part part part
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1176 Unaligned length 0 0 0
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1177 Genome fraction (%) 99.015 99.038 99.025
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1178 Duplication ratio 1.000 1.000 1.000
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1179 # N's per 100 kbp 0.00 0.00 0.00
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1180 # mismatches per 100 kbp 3.82 3.63 3.49
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1181 # indels per 100 kbp 1.19 1.13 1.13
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1182 Largest alignment 848753 848766 662053
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1183 Total aligned length 6473163 6474660 6473792
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1184 NA50 270269 289027 254671
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1185 NGA50 270269 289027 254671
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1186 NA75 136321 136321 146521
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1187 NGA75 136321 136321 136321
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1188 LA50 7 7 8
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1189 LGA50 7 7 8
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1190 LA75 15 15 16
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1191 LGA75 15 15 17
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1192
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1193 where, again, values are defined as specified in `Quast manual <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_. You can see that this report includes a variety of data that can only be computer against a reference assembly.
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1194
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
1195 Using reference also produces an **Alignment viewer**:
4
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1196
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1197 .. image:: $PATH_TO_IMAGES/Align_view.png
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1198 :width: 515
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1199 :height: 395
d90201633fb9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
1200
8
4c2bef52f68e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
1201 Alignment viewer highlights regions of interest as, in this case, missassemblies that can potentially point to genome rearrangements (see more `here <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_).
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1202
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1203 ]]>
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1204 </help>
10
e377f054bcd0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 9
diff changeset
1205 <expand macro="citations"/>
0
350257634bbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
1206 </tool>