annotate quast.xml @ 12:875d0f36d66f draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
author iuc
date Sun, 06 Feb 2022 21:02:38 +0000
parents 7594365c546b
children 675488238c96
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
1 <tool id="quast" name="Quast" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01">
0
736d51130b41 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
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
3 <macros>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
4 <import>macros.xml</import>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
5 </macros>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
6 <expand macro="bio_tools"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
7 <expand macro='requirements' />
5
81df4950d65b 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
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
9 <![CDATA[
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
10 #import re
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
11
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
12 #if str($in.custom) == 'false'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
13 #set $labels = ','.join( [re.sub('[^\w\-_]', '_', str($x.element_identifier)) for $x in $in.inputs])
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
14 echo $labels &&
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
15 #else
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
16 #set $labels = []
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
17 #for $x in $in.inputs
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
18 #if str($x.labels) != ''
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
19 #silent $labels.append(re.sub('[^\w\-_]', '_', str($x.labels)))
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
20 #else
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
21 #silent $labels.append(re.sub('[^\w\-_]', '_', str($x.input.element_identifier)))
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
22 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
23 #end for
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
24 #set $labels = ','.join($labels)
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
25 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
26
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
27 #if $assembly.type == 'metagenome' and $assembly.ref.origin == 'list'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
28 #set $temp_ref_list_fp = 'temp_ref_list_fp'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
29 #set $temp_ref_list_f = open($temp_ref_list_fp, 'w')
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
30 #silent $temp_ref_list_f.write('\n'.join([x.strip() for x in $assembly.ref.references_list.split(',')]))
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
31 #silent $temp_ref_list_f.close()
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
32 #end if
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
33
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
34 #if $assembly.type == 'genome'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
35 quast
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
36 #else
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
37 metaquast
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
38 #end if
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
39
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
40 #if $reads.reads_option == 'single'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
41 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
42 --single '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
43 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
44 #else if $reads.reads_option == 'paired'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
45 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
46 --pe1 '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
47 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
48 #for $read in $reads.input_2
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
49 --pe2 '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
50 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
51 #else if $reads.reads_option == 'paired_interlaced'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
52 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
53 --pe12 '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
54 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
55 #else if $reads.reads_option == 'mate_paired'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
56 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
57 --mp1 '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
58 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
59 #for $read in $reads.input_2
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
60 --mp2 '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
61 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
62 #else if $reads.reads_option == 'pacbio'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
63 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
64 --pacbio '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
65 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
66 #else if $reads.reads_option == 'nanopore'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
67 #for $read in $reads.input_1
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
68 --nanopore '$read'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
69 #end for
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
70 #end if
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
71
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
72 --labels $labels
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
73 -o outputdir
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
74
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
75 #if $assembly.type == 'genome'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
76 #if $assembly.ref.use_ref == 'true'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
77 -r '$assembly.ref.r'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
78 #if $assembly.ref.features
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
79 --features '$assembly.ref.features'
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
80 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
81 #if $assembly.ref.operons
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
82 --operons '$assembly.ref.operons'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
83 #end if
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
84 $assembly.ref.circos
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
85 $assembly.ref.k_mer.k_mer_stats
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
86 #if str($assembly.ref.k_mer.k_mer_stats) != ''
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
87 --k-mer-size $assembly.ref.k_mer.k_mer_size
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
88 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
89 #else if $assembly.ref.est_ref_size
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
90 --est-ref-size $assembly.ref.est_ref_size
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
91 #end if
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
92 $assembly.orga_type
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
93 #else
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
94 #if $assembly.ref.origin == 'history'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
95 -r '$assembly.ref.r'
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
96 #else if $assembly.ref.origin == 'list'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
97 --references-list '$temp_ref_list_fp'
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
98 #else if $assembly.ref.origin == 'silva'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
99 --test-no-ref
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
100 --max-ref-num '$assembly.ref.max_ref_num'
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
101 #end if
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
102 #end if
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
103
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
104 --min-contig $min_contig
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
105 $split_scaffolds
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
106 $large
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
107
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
108 #if str($genes.gene_finding.tool) != 'none'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
109 $genes.gene_finding.tool
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
110 #if $genes.gene_finding.tool == '--gene_finding' or $genes.gene_finding.tool == '--glimmer'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
111 #set $gene_threshold = ','.join([x.strip() for x in str($genes.gene_finding.gene_thresholds).split(',')])
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
112 --gene-thresholds '$gene_threshold'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
113 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
114 #end if
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
115
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
116 $genes.rna_finding
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
117 $genes.conserved_genes_finding
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
118 $alignments.use_all_alignments
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
119 --min-alignment $alignments.min_alignment
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
120 --min-identity $alignments.min_identity
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
121 --ambiguity-usage '$alignments.ambiguity_usage'
11
7594365c546b "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 0e504686e4ed0ff13e84e4c6b3631a1d1f0bd36f"
iuc
parents: 10
diff changeset
122 --ambiguity-score '$alignments.ambiguity_score'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
123 $alignments.fragmented
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
124 $alignments.upper_bound_assembly
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
125 #if $alignments.upper_bound_min_con
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
126 --upper-bound-min-con $alignments.upper_bound_min_con
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
127 #end if
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
128
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
129 #if $alignments.fragmented
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
130 #if $advanced.fragmented_max_indent != ''
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
131 --fragmented-max-indent $advanced.fragmented_max_indent
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
132 #end if
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
133 #end if
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
134
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
135 #set $contig_thresholds = ','.join([x.strip() for x in str($advanced.contig_thresholds).split(',')])
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
136 --contig-thresholds '$contig_thresholds'
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
137 $advanced.strict_NA
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
138 --extensive-mis-size $advanced.extensive_mis_size
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
139 --scaffold-gap-max-size $advanced.scaffold_gap_max_size
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
140 --unaligned-part-size $advanced.unaligned_part_size
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
141 $advanced.skip_unaligned_mis_contigs
3
6fcbee531de6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit cd130fcce3254cddb9a3f501f43feaa3f37c1b67
iuc
parents: 2
diff changeset
142
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
143 #if str($in.custom) == 'false'
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
144 #for $k in $in.inputs
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
145 '$k'
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
146 #end for
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
147 #else
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
148 #for $k in $in.inputs
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
149 '$k.input'
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
150 #end for
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
151 #end if
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
152
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
153 --threads \${GALAXY_SLOTS:-1}
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
154
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
155 && mkdir -p '$report_html.files_path'
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
156 && cp outputdir/*.html '$report_html.files_path'
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
157
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
158 #if ($assembly.type == 'genome' and $assembly.ref.use_ref) or ($assembly.type == 'metagenome' and $assembly.ref.origin != 'none')
5
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
159 && cp -R outputdir/icarus_viewers '$report_html.files_path'
81df4950d65b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 600e99f5044018f7d0046b1bfdc6dc392c4e6baa
iuc
parents: 4
diff changeset
160 #end if
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
161
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
162 ]]>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
163 </command>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
164 <inputs>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
165 <conditional name="in">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
166 <param name="custom" type="select" label="Use customized names for the input files?" help="They will be used in reports, plots and logs">
10
342a1d1fed7b "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e8ef230f8e63e7fe37a02ee78e000d1063955052"
iuc
parents: 9
diff changeset
167 <option value="true">Yes, specify custom names</option>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
168 <option value="false" selected="true">No, use dataset names</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
169 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
170 <when value="true">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
171 <repeat name="inputs" title="Contigs/scaffolds" min="1">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
172 <param name="input" type="data" format="fasta" label="Contigs/scaffolds file"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
173 <param argument="--labels" type="text" value="" label="Name"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
174 </repeat>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
175 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
176 <when value="false">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
177 <param name="inputs" type="data" format="fasta" multiple="true" label="Contigs/scaffolds file"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
178 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
179 </conditional>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
180 <conditional name="reads">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
181 <param name="reads_option" type="select" label="Reads options" help="Currently, the supported read types are Illumina unpaired, paired-end and mate-pair reads, PacBio SMRT, and Oxford Nanopore long reads.">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
182 <option value="disabled">Disabled</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
183 <option value="single">Illumina single-end reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
184 <option value="paired">Illumina paired-end reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
185 <option value="paired_interlaced">Illumina interlaced paired-end reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
186 <option value="mate_paired">Illumina mate-pair reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
187 <option value="pacbio">Pacbio SMRT reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
188 <option value="nanopore">Nanopore reads</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
189 </param>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
190 <when value="disabled"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
191
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
192 <when value="single">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
193 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
194 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
195
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
196 <when value="paired">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
197 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #1" />
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
198 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #2" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
199 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
200
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
201 <when value="paired_interlaced">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
202 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
203 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
204
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
205 <when value="mate_paired">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
206 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #1" />
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
207 <param name="input_2" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file #2" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
208 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
209
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
210 <when value="pacbio">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
211 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
212 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
213
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
214 <when value="nanopore">
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
215 <param name="input_1" format="fastq,fastq.gz,fasta,fasta.gz" type="data" multiple="true" label="FASTQ/FASTA file" />
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
216 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
217 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
218
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
219 <conditional name="assembly">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
220 <param name="type" type="select" label="Type of assembly">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
221 <option value="genome">Genome</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
222 <option value="metagenome">Metagenome</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
223 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
224 <when value="genome">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
225 <conditional name="ref">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
226 <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.">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
227 <option value="true">Yes</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
228 <option value="false" selected="true">No</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
229 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
230 <when value="true">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
231 <param argument="-r" type="data" format="fasta" multiple="true" label="Reference genome" />
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
232 <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"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
233 <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"/>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
234 <conditional name="k_mer">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
235 <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">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
236 <option value="--k-mer-stats">Yes</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
237 <option value="" selected="true">No</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
238 </param>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
239 <when value="--k-mer-stats">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
240 <param name="k_mer_size" argument="--k-mer-size" type="integer" value="101" label="Size of k" />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
241 </when>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
242 <when value=""/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
243 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
244 <param argument="--circos" type="boolean" truevalue="--circos" falsevalue="" checked="false" label="Generage Circos plot" help="Plot Circos version of Icarus contig alignment viewer"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
245 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
246 <when value="false">
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
247 <param argument="--est-ref-size" type="integer" optional="true" label="Estimated reference genome size (in bp) for computing NGx statistics" help=""/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
248 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
249 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
250 <param name="orga_type" type="select" label="Type of organism">
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
251 <option value="">Prokaryotes: use of GeneMarkS for gene finding (default)</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
252 <option value="--eukaryote">Eukaryote: use of GeneMark-ES for gene finding, Barrnap for ribosomal RNA genes prediction, BUSCO for conserved orthologs finding (--eukaryote)</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
253 <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
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
254 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
255 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
256 <when value="metagenome">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
257 <conditional name="ref">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
258 <param name="origin" type="select" label="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.">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
259 <option value="history">From history</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
260 <option value="list">From list</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
261 <option value="silva">From SILVA database</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
262 <option value="none" selected="true">None</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
263 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
264 <when value="history">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
265 <param argument="-r" type="data" format="fasta" multiple="true" label="Reference genome" />
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
266 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
267 <when value="list">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
268 <param name="references_list" 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"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
269 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
270 <when value="silva">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
271 <param name="max_ref_num" 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" />
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
272 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
273 <when value="none"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
274 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
275 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
276 </conditional>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
277 <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"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
278 <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
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
279 <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."/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
280 <section name="genes" title="Genes">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
281 <conditional name="gene_finding">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
282 <param name="tool" type="select" label="Tool for gene prediction" help="">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
283 <option value="none">Don't predict genes</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
284 <option value="--gene-finding">GeneMarkS if prokaryotes or GeneMark-ES if eukaryotes or fungi</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
285 <option value="--mgm">MetaGeneMark, specially for metagenomic assembly</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
286 <option value="--glimmer">Glimmer</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
287 </param>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
288 <when value="none"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
289 <when value="--gene-finding">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
290 <expand macro="gene_thresholds"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
291 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
292 <when value="--mgm"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
293 <when value="--glimmer">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
294 <expand macro="gene_thresholds"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
295 </when>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
296 </conditional>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
297 <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. "/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
298 <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
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
299 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
300 <section name="alignments" title="Alignments">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
301 <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)"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
302 <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."/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
303 <param argument="--min-identity" type="float" value="95.0" label="Minimum IDY% considered as proper alignment" help="Alignments with IDY% worse than this value will be filtered. ote that all alignments with IDY% less than 80.0% will be filtered regardless of this threshold. "/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
304 <param argument="--ambiguity-usage" type="select" label="How processing equally good alignments of a contig (probably repeats)?" help="">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
305 <option value="none">Skip all such alignments</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
306 <option value="one" selected="true">Take only one (the very best one)</option>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
307 <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>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
308 </param>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
309 <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. "/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
310 <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 "/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
311 <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." />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
312 <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)"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
313 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
314 <section name="advanced" title="Advanced options">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
315 <param argument="--contig-thresholds" type="text" value="0,1000" label="Comma-separated list of contig length thresholds (in bp)" help="Used in # contigs ≥ x and total length (≥ x) metrics"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
316 <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)."/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
317 <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."/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
318 <param argument="--scaffold-gap-max-size" type="integer" value="1000" 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"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
319 <param argument="--unaligned-part-size" type="integer" value="500" label="Lower threshold for detecting partially unaligned contigs" help=""/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
320 <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)."/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
321 <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" />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
322 </section>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
323 <param name="output_files" type="select" display="checkboxes" optional="true" multiple="true" label="Output files">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
324 <option value="html" selected="true">HTML report</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
325 <option value="pdf">PDF report</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
326 <option value="tabular">Tabular reports</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
327 <option value="log">Log file</option>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
328 </param>
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
329 </inputs>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
330 <outputs>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
331 <data name="quast_tabular" format="tabular" label="${tool.name} on ${on_string}: tabular report" from_work_dir="outputdir/report.tsv">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
332 <filter>'tabular' in output_files</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
333 </data>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
334 <data name="report_html" format="html" label="${tool.name} on ${on_string}: HTML report" from_work_dir="outputdir/report.html">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
335 <filter>'html' in output_files</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
336 </data>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
337 <data name="report_pdf" format="pdf" label="${tool.name} on ${on_string}: PDF report" from_work_dir="outputdir/report.pdf">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
338 <filter>'pdf' in output_files</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
339 </data>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
340 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log" from_work_dir="outputdir/quast.log">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
341 <filter>'log' in output_files</filter>
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
342 </data>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
343 <data name="mis_ass" format="tabular" label="${tool.name} on ${on_string}: Misassemblies report" from_work_dir="outputdir/contigs_reports/misassemblies_report.txt">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
344 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true'</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
345 <filter>'tabular' in output_files</filter>
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
346 </data>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
347 <data name="unalign" format="tabular" label="${tool.name} on ${on_string}: Unaligned contigs report" from_work_dir="outputdir/contigs_reports/unaligned_report.tsv">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
348 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true'</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
349 <filter>'tabular' in output_files</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
350 </data>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
351 <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">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
352 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true' and assembly['ref']['k_mer']['k_mer_stats'] != ''</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
353 <filter>'tabular' in output_files</filter>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
354 </data>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
355 <data name="circos_output" format="png" from_work_dir="outputdir/circos/circos.png" label="${tool.name} on ${on_string}: Circos plot">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
356 <filter>assembly['type'] == 'genome' and assembly['ref']['use_ref'] == 'true' and assembly['ref']['circos']</filter>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
357 </data>
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
358 </outputs>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
359 <tests>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
360 <!-- Test 01: reference, genes annotations and operon coordinates -->
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
361 <test expect_num_outputs="2">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
362 <conditional name="in">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
363 <param name="custom" value="true"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
364 <repeat name="inputs">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
365 <param name="input" value="contigs1.fna"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
366 <param name="labels" value="contig1"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
367 </repeat>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
368 <repeat name="inputs">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
369 <param name="input" value="contigs2.fna"/>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
370 <param name="labels" value="contig2"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
371 </repeat>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
372 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
373 <conditional name="assembly">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
374 <param name="type" value="genome"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
375 <conditional name="ref">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
376 <param name="use_ref" value="true"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
377 <param name="r" value="reference.fna"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
378 <param name="features" value="genes.gff"/>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
379 <param name="operons" value="operons.bed"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
380 <conditional name="k_mer">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
381 <param name="k_mer_stats" value="--k-mer-stats"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
382 <param name="k_mer_size" value="101" />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
383 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
384 <param name="circos" value="true"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
385 </conditional>
f30d03867854 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" value=""/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
387 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
388 <param name="min_contig" value="500"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
389 <param name="split_scaffolds" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
390 <section name="genes">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
391 <conditional name="gene_finding">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
392 <param name="tool" value="--gene_finding"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
393 <param name="gene_thresholds" value="0,300,1500,3000"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
394 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
395 <param name="rna_finding" value="true"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
396 <param name="conserved_genes_finding" value="true"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
397 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
398 <section name="alignments">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
399 <param name="use_all_alignments" value="true"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
400 <param name="min_alignment" value="65"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
401 <param name="min_identity" value="95.0"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
402 <param name="ambiguity_usage" value="one"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
403 <param name="ambiguity_score" value="0.99"/>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
404 </section>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
405 <section name="advanced">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
406 <param name="contig_thresholds" value="0,1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
407 <param name="strict_NA" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
408 <param name="extensive_mis_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
409 <param name="scaffold_gap_max_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
410 <param name="unaligned_part_size" value="500"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
411 <param name="skip_unaligned_mis_contigs" value="true"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
412 <param name="fragmented_max_indent" value="50"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
413 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
414 <param name="output_files" value="html"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
415 <output name="report_html" file="test1_report.html" ftype="html" compare="sim_size"/>
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
416 <output name="circos_output" file="test1_circos.png" ftype="png" compare="sim_size"/>
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
417 </test>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
418 <!-- Test 02: all outputs -->
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
419 <test expect_num_outputs="8">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
420 <conditional name="in">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
421 <param name="custom" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
422 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
423 <param name="input" value="contigs1.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
424 <param name="labels" value="contig1"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
425 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
426 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
427 <param name="input" value="contigs2.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
428 <param name="labels" value="contig2"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
429 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
430 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
431 <conditional name="assembly">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
432 <param name="type" value="genome"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
433 <conditional name="ref">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
434 <param name="use_ref" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
435 <param name="r" value="reference.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
436 <param name="features" value="genes.gff"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
437 <param name="operons" value="operons.bed"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
438 <conditional name="k_mer">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
439 <param name="k_mer_stats" value="--k-mer-stats"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
440 <param name="k_mer_size" value="101" />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
441 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
442 <param name="circos" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
443 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
444 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
445 <param name="output_files" value="html,pdf,tabular,log"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
446 <output name="report_html" file="test2_report.html" ftype="html" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
447 <output name="report_pdf" file="test2_report.pdf" ftype="pdf" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
448 <output name="quast_tabular" file="test2_report.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
449 <output name="log" file="test2.log" ftype="txt" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
450 <output name="mis_ass" file="test2_missasemblies.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
451 <output name="unalign" file="test2_unaligned.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
452 <output name="kmers" file="test2_kmers.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
453 <output name="circos_output" file="test2_circos.png" ftype="png" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
454 </test>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
455 <!-- Test 03: without reference -->
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
456 <test expect_num_outputs="3">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
457 <conditional name="in">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
458 <param name="custom" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
459 <param name="inputs" value="contigs1.fna,contigs2.fna"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
460 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
461 <conditional name="assembly">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
462 <param name="type" value="genome"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
463 <conditional name="ref">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
464 <param name="use_ref" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
465 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
466 <param name="orga_type" value="--eukaryote"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
467 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
468 <param name="min_contig" value="500"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
469 <param name="split_scaffolds" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
470 <param name="large" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
471 <section name="genes">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
472 <conditional name="gene_finding">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
473 <param name="tool" value="none"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
474 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
475 <param name="rna_finding" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
476 <param name="conserved_genes_finding" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
477 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
478 <section name="alignments">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
479 <param name="use_all_alignments" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
480 <param name="min_alignment" value="65"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
481 <param name="min_identity" value="95.0"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
482 <param name="ambiguity_usage" value="one"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
483 <param name="ambiguity_score" value="0.99"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
484 <param name="fragmented" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
485 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
486 <section name="advanced">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
487 <param name="contig_thresholds" value="0,1000, 500"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
488 <param name="strict_NA" value="false"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
489 <param name="extensive_mis_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
490 <param name="scaffold_gap_max_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
491 <param name="unaligned_part_size" value="500"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
492 <param name="skip_unaligned_mis_contigs" value="-"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
493 </section>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
494 <param name="output_files" value="html,pdf,log" />
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
495 <output name="log" file="test3.log" ftype="txt" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
496 <output name="report_html" file="test3_report.html" compare="sim_size"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
497 <output name="report_pdf" file="test3_report.pdf" compare="sim_size"/>
3
6fcbee531de6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit cd130fcce3254cddb9a3f501f43feaa3f37c1b67
iuc
parents: 2
diff changeset
498 </test>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
499 <!-- Test 04: metagenomics -->
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
500 <test>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
501 <conditional name="in">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
502 <param name="custom" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
503 <param name="inputs" value="contigs3.fasta"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
504 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
505 <conditional name="assembly">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
506 <param name="type" value="metagenome"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
507 <conditional name="ref">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
508 <param name="origin" value="none"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
509 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
510 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
511 <param name="min_contig" value="500"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
512 <param name="split_scaffolds" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
513 <param name="large" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
514 <section name="genes">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
515 <conditional name="gene_finding">
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
516 <param name="tool" value="--mgm"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
517 </conditional>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
518 <param name="rna_finding" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
519 <param name="conserved_genes_finding" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
520 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
521 <section name="alignments">
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
522 <param name="use_all_alignments" value="false"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
523 <param name="min_alignment" value="65"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
524 <param name="min_identity" value="95.0"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
525 <param name="ambiguity_usage" value="one"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
526 <param name="ambiguity_score" value="0.99"/>
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
527 <param name="fragmented" value="false"/>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
528 </section>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
529 <section name="advanced">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
530 <param name="contig_thresholds" value="0,1000, 500"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
531 <param name="strict_NA" value="false"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
532 <param name="extensive_mis_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
533 <param name="scaffold_gap_max_size" value="1000"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
534 <param name="unaligned_part_size" value="500"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
535 <param name="skip_unaligned_mis_contigs" value="-"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
536 </section>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
537 <param name="output_files" value="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
538 <output name="quast_tabular" file="test4.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
539 </test>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
540 <!-- Test 05: FASTQ read files -->
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
541 <test expect_num_outputs="3">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
542 <conditional name="in">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
543 <param name="custom" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
544 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
545 <param name="input" value="contigs1.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
546 <param name="labels" value="contig1"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
547 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
548 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
549 <param name="input" value="contigs2.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
550 <param name="labels" value="contig2"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
551 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
552 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
553 <conditional name="reads">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
554 <param name="reads_option" value="pacbio"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
555 <param name="input_1" value="pacbio_01.fastq,pacbio_02.fastq,pacbio_03.fastq,pacbio_04.fastq"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
556 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
557 <conditional name="assembly">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
558 <param name="type" value="genome"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
559 <conditional name="ref">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
560 <param name="use_ref" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
561 <param name="r" value="reference.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
562 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
563 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
564 <section name="alignments">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
565 <param name="upper_bound_assembly" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
566 <param name="upper_bound_min_con" value="1"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
567 </section>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
568 <param name="output_files" value="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
569 <output name="quast_tabular" file="test5.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
570 <output name="mis_ass" file="test5_missasemblies.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
571 <output name="unalign" file="test5_unaligned.tab" ftype="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
572 </test>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
573 <!-- Test 6: FASTQ.gz read files -->
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
574 <test expect_num_outputs="1">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
575 <conditional name="in">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
576 <param name="custom" value="true"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
577 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
578 <param name="input" value="contigs1.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
579 <param name="labels" value="contig1"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
580 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
581 <repeat name="inputs">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
582 <param name="input" value="contigs2.fna"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
583 <param name="labels" value="contig2"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
584 </repeat>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
585 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
586 <conditional name="reads">
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
587 <param name="reads_option" value="single"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
588 <param name="input_1" value="pacbio_01.fastq.gz,pacbio_02.fastq.gz"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
589 </conditional>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
590 <param name="output_files" value="tabular"/>
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
591 <output name="quast_tabular" file="test6.tab" ftype="tabular"/>
6
f30d03867854 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 911441d53ac3a7a229c448d66101bcd9179e771b
iuc
parents: 5
diff changeset
592 </test>
12
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
593 <!-- Test 7: FASTA.gz read files -->
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
594 <test expect_num_outputs="1">
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
595 <conditional name="in">
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
596 <param name="custom" value="true"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
597 <repeat name="inputs">
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
598 <param name="input" value="contigs1.fna"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
599 <param name="labels" value="contig1"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
600 </repeat>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
601 <repeat name="inputs">
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
602 <param name="input" value="contigs2.fna"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
603 <param name="labels" value="contig2"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
604 </repeat>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
605 </conditional>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
606 <conditional name="reads">
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
607 <param name="reads_option" value="single"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
608 <param name="input_1" value="pacbio_01.fasta.gz,pacbio_02.fasta.gz"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
609 </conditional>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
610 <param name="output_files" value="tabular"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
611 <output name="quast_tabular" file="test7.tab" ftype="tabular"/>
875d0f36d66f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit f713a7853d074ca39057c680ebadba5cbecf5d86"
iuc
parents: 11
diff changeset
612 </test>
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
613 </tests>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
614 <help>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
615 <![CDATA[
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
616 **What it does**
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
617
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
618 QUAST = QUality ASsessment Tool. The tool evaluates genome assemblies by computing various metrics.
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
619
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
620 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
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
621
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
622 **Using Quast without reference**
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
623
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
624 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:
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
625
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
626 * Quast report in HTML format
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
627 * `Contig viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
628 * `Quast report <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_ in Tab-delimited format
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
629 * Quast log (a file technical information about Quast tool execution)
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
630
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
631 The **tab delimited Quast report** will contain the following information::
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
632
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
633 Assembly pit_fna cef_fna car_fna
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
634 # contigs (>= 0 bp) 100 91 94
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
635 # contigs (>= 1000 bp) 62 58 61
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
636 Total length (>= 0 bp) 6480635 6481216 6480271
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
637 Total length (>= 1000 bp) 6466917 6468946 6467103
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
638 # contigs 71 66 70
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
639 Largest contig 848753 848766 662053
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
640 Total length 6473173 6474698 6473810
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
641 GC (%) 66.33 66.33 66.33
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
642 N50 270269 289027 254671
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
643 N75 136321 136321 146521
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
644 L50 7 7 8
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
645 L75 15 15 16
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
646 # N's per 100 kbp 0.00 0.00 0.00
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
647
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
648 where values are defined as specified in `Quast manual <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
649
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
650 **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:
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
651
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
652 .. image:: $PATH_TO_IMAGES/contig_view_noR.png
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
653 :width: 558
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
654 :height: 412
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
655
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
656 Also see `Plot description <http://quast.sourceforge.net/docs/manual.html#sec2>`_ section of the manual.
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
657
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
658 **Using Quast with reference**
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
659
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
660 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):
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
661
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
662 * Quast report in HTML format
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
663 * `Contig viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
664 * `Alignment viewer <http://quast.sourceforge.net/docs/manual.html#sec3.4>`_ (an HTML file)
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
665 * `Quast report <http://quast.sourceforge.net/docs/manual.html#sec3.1.1>`_ in Tab-delimited format
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
666 * Summary of `misassemblies <http://quast.sourceforge.net/docs/manual.html#sec3.1.2>`_
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
667 * Summary of `unaligned contigs <http://quast.sourceforge.net/docs/manual.html#sec3.1.3>`_
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
668 * Quast log (a file technical information about Quast tool execution)
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
669
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
670 With the reference Quast produces a much more comprehensive set of results::
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
671
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
672 Assembly pit_fna cef_fna car_fna
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
673 # contigs (>= 0 bp) 100 91 94
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
674 # contigs (>= 1000 bp) 62 58 61
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
675 Total length (>= 0 bp) 6480635 6481216 6480271
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
676 Total length (>= 1000 bp) 6466917 6468946 6467103
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
677 # contigs 71 66 70
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
678 Largest contig 848753 848766 662053
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
679 Total length 6473173 6474698 6473810
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
680 Reference length 6537648 6537648 6537648
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
681 GC (%) 66.33 66.33 66.33
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
682 Reference GC (%) 66.29 66.29 66.29
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
683 N50 270269 289027 254671
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
684 NG50 270269 289027 254671
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
685 N75 136321 136321 146521
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
686 NG75 136321 136321 136321
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
687 L50 7 7 8
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
688 LG50 7 7 8
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
689 L75 15 15 16
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
690 LG75 15 15 17
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
691 # misassemblies 0 0 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
692 # misassembled contigs 0 0 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
693 Misassembled contigs length 0 0 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
694 # local misassemblies 1 1 2
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
695 # unaligned mis. contigs 0 0 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
696 # unaligned contigs 0 + 0 0 + 0 0 + 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
697 part part part
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
698 Unaligned length 0 0 0
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
699 Genome fraction (%) 99.015 99.038 99.025
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
700 Duplication ratio 1.000 1.000 1.000
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
701 # N's per 100 kbp 0.00 0.00 0.00
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
702 # mismatches per 100 kbp 3.82 3.63 3.49
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
703 # indels per 100 kbp 1.19 1.13 1.13
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
704 Largest alignment 848753 848766 662053
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
705 Total aligned length 6473163 6474660 6473792
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
706 NA50 270269 289027 254671
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
707 NGA50 270269 289027 254671
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
708 NA75 136321 136321 146521
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
709 NGA75 136321 136321 136321
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
710 LA50 7 7 8
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
711 LGA50 7 7 8
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
712 LA75 15 15 16
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
713 LGA75 15 15 17
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
714
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
715 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
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
716
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
717 Using reference also produces an **Alignment viewer**:
4
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
718
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
719 .. image:: $PATH_TO_IMAGES/Align_view.png
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
720 :width: 515
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
721 :height: 395
0834c823d4b9 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 2c56b5f07500507dad503aab6ec0619ec37f8b87
iuc
parents: 3
diff changeset
722
8
ebb0dcdb621a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit e24f6cb40f19bad167b440e119e0300f15e04a78"
iuc
parents: 7
diff changeset
723 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
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
724
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
725 ]]>
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
726 </help>
9
45924fa8d8c5 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit 9e4867db42282a980f1149711159fa811b2d8414"
iuc
parents: 8
diff changeset
727 <expand macro="citations"/>
0
736d51130b41 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast commit d0e7095e03f99c80d6cc8f7a2bfb3c5bef33df09
iuc
parents:
diff changeset
728 </tool>