0
|
1 <tool id="quast" name="Quast" version="1.0.0" >
|
|
2 <description>QUAST (Quality ASsessment Tool) evaluates genome assemblies.</description>
|
|
3
|
|
4 <requirements>
|
|
5 <requirement type="package" version="3.2">quast</requirement>
|
|
6 </requirements>
|
|
7
|
|
8 <stdio>
|
|
9 <exit_code range="1:" level="fatal" description="The tool's exit code was 1, which suggests that something went wrong." />
|
|
10 </stdio>
|
|
11
|
|
12 <command>
|
|
13 quast.py
|
|
14 -o outputdir
|
|
15
|
|
16 #if $gene_selection == "eukaryote" :
|
|
17 --eukaryote
|
|
18 #end if
|
|
19
|
|
20 #if $gene_selection == "Metagenes" :
|
|
21 --meta
|
|
22 #end if
|
|
23
|
|
24 --min-contig $min_contig
|
|
25
|
|
26
|
|
27 #for $i in $files:
|
|
28 $i.input
|
|
29 #end for
|
|
30 ;
|
|
31 cp outputdir/report.txt $quast_out;
|
|
32 </command>
|
|
33
|
|
34 <inputs>
|
|
35 <repeat name="files" title="Input contig files">
|
|
36 <param type="data" format="fasta" name="input" label="Contigs output file"/>
|
|
37 </repeat>
|
|
38 <param name="gene_selection" type="select">
|
|
39 <option value="prokaryotes">Prokaryotes</option>
|
|
40 <option value="eukaryote">Eukaryote</option>
|
|
41 <option value="metagenes">Metagenomes</option>
|
|
42 </param>
|
|
43 <param name="min_contig" type="integer" value="500" label="Set the threshold for the contig length (default is 500)"/>
|
|
44 </inputs>
|
|
45
|
|
46 <outputs>
|
|
47 <data format="txt" name="quast_out" label="Quast report.txt" from_work_dir="Quast_report.txt"/>
|
|
48 </outputs>
|
|
49
|
|
50 <tests>
|
|
51 <test>
|
|
52 <param name="input" value="input_contigs_1.fasta"/>
|
|
53 <param name="gene_selection" value="eukaryote"/>
|
|
54 <param name="min_config" value="500"/>
|
|
55 <output name="quast_out" file="output_Quast_report.txt"/>
|
|
56 </test>
|
|
57 </tests>
|
|
58
|
|
59 <help>
|
|
60 **Description**
|
|
61
|
|
62 Galaxy tool wrapper for the QUAST tool. Quast stands for QUality ASsessment Tool. It evalutes genome assemblies by computing various metrics.
|
|
63 For more information regarding the settings of the tool, please visit the QUAST 3.2 Manual on http://quast.bioinf.spbau.ru/manual.html
|
|
64
|
|
65 -----
|
|
66
|
|
67 **Inputs and Outputs**
|
|
68
|
|
69 - Input:
|
|
70 + The tool accepts assemblies and references in FASTA format.
|
|
71
|
|
72 - Output:
|
|
73 + An assessment summary in plain text format
|
|
74
|
|
75
|
|
76 -----
|
|
77
|
|
78 **Tool Information**
|
|
79
|
|
80 - QUAST Tool v3.2:
|
|
81 + Release Date: November 2015
|
|
82 + URL: http://bioinf.spbau.ru/quast
|
|
83 + Source URL: https://downloads.sourceforge.net/project/quast/quast-3.2.tar.gz
|
|
84
|
|
85 -----
|
|
86
|
|
87 **QUAST Galaxy Wrapper Author and Contact Information**
|
|
88
|
|
89 + Jacob Jablonski
|
|
90 + AAFC-MBB Team
|
|
91 + Email: mbb@agr.gc.ca
|
|
92 + Agriculture and Agri-foods Canada, Ottawa, ON, Canada
|
|
93
|
|
94 </help>
|
|
95
|
|
96 <citations>
|
|
97 <citation type="bibtex">@ARTICLE{a1,
|
|
98 author = {Alexey Gurevich, Vladislav Saveliev, Nikolay Vyahhi, Glenn Tesler},
|
|
99 title = {QUAST: quality assessment tool for genomce assemblies, Bioinformatics (2013) 29 (8): 1072-1075}
|
|
100 }</citation>
|
|
101 </citations>
|
|
102 </tool>
|
|
103
|