1
|
1 <tool id="prokka" name="Prokka" version="1.0.1">
|
0
|
2 <description>Prokaryotic Annotation</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="2.2.26+">blast+</requirement>
|
|
5 <requirement type="package" version="3.1b1">hmmer</requirement>
|
|
6 <requirement type="package" version="1.2.36">aragorn</requirement>
|
|
7 <requirement type="package" version="1.1rc4">infernal</requirement>
|
|
8 <requirement type="package" version="1.7">prokka</requirement>
|
|
9 </requirements>
|
|
10 <version_command>prokka --version</version_command>
|
|
11 <command interpreter="python">
|
|
12 prokka.py
|
|
13 \${PROKKA_SITE_OPTIONS:---cpus 8}
|
|
14 ## Reads in FASTA format
|
|
15 --fasta=$fasta_file
|
|
16 ## Additional inputs
|
|
17 --kingdom $kingdom_type.kingdom
|
|
18 #if str($mincontig)
|
|
19 --mincontig $mincontig
|
|
20 #end if
|
|
21 #if $rfam
|
|
22 --rfam
|
|
23 #end if
|
|
24 #if $centre
|
|
25 --centre "$centre"
|
|
26 #end if
|
|
27 ## Output files
|
|
28 --gff=$out_gff
|
|
29 --gbk=$out_gbk
|
|
30 --fna=$out_fna
|
|
31 --faa=$out_faa
|
|
32 --ffn=$out_ffn
|
|
33 --sqn=$out_sqn
|
|
34 --fsa=$out_fsa
|
|
35 --tbl=$out_tbl
|
|
36 --err=$out_err
|
1
|
37 --txt=$out_txt
|
0
|
38 --log=$out_log
|
|
39 </command>
|
|
40 <inputs>
|
|
41 <param name="fasta_file" type="data" format="fasta" label="Contigs" help="FASTA format" />
|
|
42 <conditional name="kingdom_type">
|
|
43 <param name="kingdom" type="select" label="Kingdom (--kingdom)">
|
|
44 <option value="Archaea">Archaea</option>
|
|
45 <option value="Bacteria" selected="true">Bacteria</option>
|
|
46 <option value="Viruses">Viruses</option>
|
|
47 </param>
|
|
48 <when value="Archaea" />
|
|
49 <when value="Bacteria" />
|
|
50 <when value="Viruses" />
|
|
51 </conditional>
|
|
52 <param name="mincontig" type="integer" value="200" optional="true" label="Minimun contig size - NCBI needs 200 (--mincontig)" />
|
|
53 <param name="centre" type="text" value="CRS4" label="Sequencing centre ID (--centre)" />
|
|
54 <param name="rfam" type="boolean" checked="false" label="Enable searching for ncRNAs with Infernal-Rfam - SLOW (--rfam)" />
|
|
55 </inputs>
|
|
56 <outputs>
|
1
|
57 <data format="gff" name="out_gff" label="${tool.name} on ${on_string}: gff" />
|
|
58 <data format="txt" name="out_gbk" label="${tool.name} on ${on_string}: gbk" />
|
|
59 <data format="fasta" name="out_fna" label="${tool.name} on ${on_string}: fna" />
|
|
60 <data format="fasta" name="out_faa" label="${tool.name} on ${on_string}: faa" />
|
|
61 <data format="fasta" name="out_ffn" label="${tool.name} on ${on_string}: ffn" />
|
|
62 <data format="asn1" name="out_sqn" label="${tool.name} on ${on_string}: sqn" />
|
|
63 <data format="fasta" name="out_fsa" label="${tool.name} on ${on_string}: fsa" />
|
|
64 <data format="txt" name="out_tbl" label="${tool.name} on ${on_string}: tbl" />
|
|
65 <data format="txt" name="out_err" label="${tool.name} on ${on_string}: err" />
|
|
66 <data format="txt" name="out_txt" label="${tool.name} on ${on_string}: txt" />
|
|
67 <data format="txt" name="out_log" label="${tool.name} on ${on_string}: log" />
|
0
|
68 </outputs>
|
|
69
|
|
70 <help>
|
|
71 **What it does**
|
|
72
|
1
|
73 Prokka_ is a software tool to annotate bacterial, archaeal and viral genomes very rapidly, and produce output files that require only minor tweaking to submit to GenBank/ENA/DDBJ.
|
0
|
74
|
|
75 .. _Prokka: http://www.vicbioinformatics.com/software.prokka.shtml
|
|
76
|
|
77 **Output files**
|
|
78
|
1
|
79 Prokka creates several output files:
|
0
|
80
|
1
|
81 gff
|
|
82 This is the master annotation in GFF3 format, containing both sequences and annotations
|
|
83 gbk
|
|
84 This is a standard GenBank file derived from the master .gff . If the input to prokka was a multi-FASTA, then this will be a multi-GenBank, with one record for each sequence
|
|
85 fna
|
|
86 Nucleotide FASTA file of the input contig sequences
|
|
87 faa
|
|
88 Protein FASTA file of the translated CDS sequences
|
|
89 ffn
|
|
90 Nucleotide FASTA file of all the annotated sequences, not just CDS
|
|
91 sqn
|
|
92 An ASN1 format "Sequin" file for submission to GenBank. It needs to be edited to set the correct taxonomy, authors, related publication, etc.
|
|
93 fsa
|
|
94 Nucleotide FASTA file of the input contig sequences, used by "tbl2asn" to create the .sqn file. It is mostly the same as the .fna file, but with extra Sequin tags in the sequence description lines
|
|
95 tbl
|
|
96 Feature Table file, used by "tbl2asn" to create the .sqn file
|
|
97 err
|
|
98 Unacceptable annotations - the NCBI discrepancy report
|
|
99 log
|
|
100 Contains all the output that Prokka produced during its run
|
|
101 txt
|
|
102 Statistics relating to the annotated features found
|
0
|
103
|
|
104 **License and citation**
|
|
105
|
|
106 This Galaxy tool is Copyright © 2013 `CRS4 Srl.`_ and is released under the `MIT license`_.
|
|
107
|
|
108 .. _CRS4 Srl.: http://www.crs4.it/
|
|
109 .. _MIT license: http://opensource.org/licenses/MIT
|
|
110
|
|
111 If you use this tool in Galaxy, please cite |Cuccuru2013|_.
|
|
112
|
|
113 .. |Cuccuru2013| replace:: Cuccuru, G., Orsini, M., Pinna, A., Sbardellati, A., Soranzo, N., Travaglione, A., Uva, P., Zanetti, G., Fotia, G. (2013) Orione, a web-based framework for NGS analysis in microbiology. *Submitted*
|
|
114 .. _Cuccuru2013: http://orione.crs4.it/
|
|
115
|
|
116 This tool uses `Prokka`_, which is licensed separately. Please cite Seemann T. Prokka: Prokaryotic Genome Annotation System (in preparation).
|
|
117
|
|
118 .. _Prokka: http://www.vicbioinformatics.com/software.prokka.shtml
|
|
119 </help>
|
|
120 </tool>
|