comparison prodigal.xml @ 0:91791b6ecd38 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal commit fc5c69375318ffee0a71a69378d51c97003427b6
author iuc
date Thu, 14 Mar 2024 16:49:04 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:91791b6ecd38
1 <tool id="prodigal" name="Prodigal Gene Predictor" version="@VERSION@+galaxy0" profile="22.05">
2 <description>A tool for gene prediction in microbial genomes</description>
3 <macros>
4 <token name="@VERSION@">2.6.3</token>
5 </macros>
6 <xrefs>
7 <xref type="bio.tools">prodigal</xref>
8 </xrefs>
9 <requirements>
10 <requirement type="package" version="@VERSION@">prodigal</requirement>
11 </requirements>
12 <command detect_errors="exit_code"><![CDATA[
13 prodigal
14 -i '$input_fa'
15 #if $input_train
16 -t '$input_train'
17 #end if
18 -o '$output'
19 -f '$out_format'
20 -p '$procedure'
21 -g '$trans_table'
22 -a '$output_faa'
23 -d '$output_fnn'
24 -s '$output_start'
25 $closed
26 $force_nonsd
27 $masked_seq
28 ]]></command>
29 <inputs>
30 <param type="data" name="input_fa" format="fasta" label="Specify input file" help="-i" />
31 <param type="data" name="input_train" format="fasta" label="Specify training file" optional="true" help="Read and use the specified training file (-t)" />
32 <param type="select" name="out_format" label="Specify output format" help="-f" >
33 <option value="gbk" selected="true">GBK (default)</option>
34 <option value="gff">GFF</option>
35 <option value="sqn">SQN</option>
36 <option value="sco">SCO</option>
37 </param>
38 <param type="select" name="procedure" label="Specify mode" help="-p" >
39 <option value="single" selected="true">Single : Single genome, any number of
40 sequences (default)</option>
41 <option value="meta">Meta : Anonymous sequences, analyze
42 using preset training files, ideal for metagenomic data or single short sequences</option>
43 </param>
44 <param type="select" name="trans_table" label="Specify a translation table to use" help="-g" >
45 <option value="11">11 : Standard Bacteria/Archaea (default)</option>
46 <option value="4">4 : Mycoplasma/Spiroplasma</option>
47 <option value="#"># : Other genetic codes 1-25</option>
48 </param>
49 <param name="closed" type="boolean" label="Closed ends" truevalue="-c" falsevalue="" optional="true" help="Closed ends. Do not allow partial genes
50 at edges of sequence (-c)" />
51 <param name="force_nonsd" type="boolean" label="Force Prodigal to scan for
52 motifs" truevalue="-n" falsevalue="" optional="true" help="Do not use the Shine-Dalgarno RBS finder and instead force Prodigal to scan for motifs (-n)" />
53 <param name="masked_seq" type="boolean" label="Treat runs of N as masked sequence" truevalue="-m" falsevalue="" optional="true" help="Treat runs of N as masked sequence; don't build genes across them (-m)" />
54 </inputs>
55 <outputs>
56 <data name="output" format="genbank" label="${tool.name} on ${on_string} : coordinates">
57 <change_format>
58 <when input="out_format" value="gff" format="gff3" />
59 <when input="out_format" value="sqn" format="asn1" />
60 <when input="out_format" value="sco" format="genbank" />
61 </change_format>
62 </data>
63 <data name="output_faa" format="fasta" label="${tool.name} on ${on_string} : protein translations file" />
64 <data name="output_fnn" format="fasta" label="${tool.name} on ${on_string} : nucleotide sequences file" />
65 <data name="output_start" format="tabular" label="${tool.name} on ${on_string} : complete starts file" />
66 </outputs>
67 <tests>
68 <test>
69 <param name="input_fa" value="input.fna"/>
70 <output name="output" file="output"/>
71 </test>
72 <test>
73 <param name="input_fa" value="input.fna"/>
74 <output name="output" file="output" ftype="genbank"/>
75 <output name="output_faa" file="output.faa"/>
76 <output name="output_fnn" file="output.fnn"/>
77 <output name="output_start" file="output.start"/>
78 </test>
79 <test>
80 <param name="input_fa" value="input.fna"/>
81 <param name="out_format" value="gff"/>
82 <output name="output" file="output.gff" ftype="gff3" />
83 <output name="output_faa" file="output.faa"/>
84 <output name="output_fnn" file="output.fnn"/>
85 <output name="output_start" file="output.start"/>
86 </test>
87 <test>
88 <param name="input_fa" value="input.fna"/>
89 <param name="trans_table" value="4"/>
90 <output name="output" file="output_tt" ftype="genbank"/>
91 <output name="output_faa" file="output_tt.faa"/>
92 <output name="output_fnn" file="output_tt.fnn"/>
93 <output name="output_start" file="output_tt.start"/>
94 </test>
95 <test>
96 <param name="input_fa" value="input.fna"/>
97 <param name="procedure" value="single"/>
98 <param name="closed" value="true"/>
99 <param name="force_nonsd" value="true"/>
100 <param name="masked_seq" value="true"/>
101 <output name="output" file="output_c_n_m" ftype="genbank"/>
102 <output name="output_faa" file="output_c_n_m.faa"/>
103 <output name="output_fnn" file="output_c_n_m.fnn"/>
104 <output name="output_start" file="output_c_n_m.start"/>
105 </test>
106 <test>
107 <param name="input_fa" value="input.fna"/>
108 <param name="input_train" value="train_file.trn"/>
109 <output name="output" file="output_train" ftype="genbank"/>
110 <output name="output_faa" file="output_train.faa"/>
111 <output name="output_fnn" file="output_train.fnn"/>
112 <output name="output_start" file="output_train.start"/>
113 </test>
114 </tests>
115 <help><![CDATA[
116
117 Fast, reliable protein-coding gene prediction for prokaryotic genomes.
118
119 Features:
120 * Predicts protein-coding genes: Prodigal provides fast, accurate protein-coding gene predictions in GFF3, Genbank, or Sequin table format.
121 * Handles draft genomes and metagenomes: Prodigal runs smoothly on finished genomes, draft genomes, and metagenomes.
122 * Runs quickly: Prodigal analyzes the E. coli K-12 genome in 10 seconds on a modern MacBook Pro.
123 * Runs unsupervised: Prodigal is an unsupervised machine learning algorithm. It does not need to be provided with any training data, and instead automatically learns the properties of the genome from the sequence itself, including RBS motif usage, start codon usage, and coding statistics.
124 * Handles gaps and partial genes: The user can specify if Prodigal should build genes across runs of N's as well as how to handle genes at the edges of contigs.
125 * Identifies translation initiation sites: Prodigal predicts the correct translation initiation site for most genes, and can output information about every potential start site in the genome, including confidence score, RBS motif, and much more.
126
127 ]]></help>
128 <citations>
129 <citation type="doi">10.1186/1471-2105-11-119</citation>
130 </citations>
131 </tool>