Mercurial > repos > bgruening > augustus
annotate augustus.xml @ 3:f5075dee9d6b draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
author | iuc |
---|---|
date | Fri, 22 May 2015 04:55:25 -0400 |
parents | a77a4e9921e0 |
children | 4de31938431b |
rev | line source |
---|---|
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
1 <tool id="augustus" name="Augustus" version="3.1.0"> |
0 | 2 <description>gene prediction for eukaryotic genomes</description> |
1 | 3 <parallelism method="multi" split_inputs="input_genome" split_mode="to_size" split_size="10" merge_outputs="output,protein_output,codingseq_output"></parallelism> |
0 | 4 <requirements> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
5 <requirement type="package" version="3.1">augustus</requirement> |
0 | 6 </requirements> |
2 | 7 <stdio> |
8 <exit_code range="1:" /> | |
9 <exit_code range=":-1" /> | |
10 <regex match="Error:" /> | |
11 <regex match="Exception:" /> | |
12 </stdio> | |
0 | 13 <command> |
2 | 14 <![CDATA[ |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
15 ## Augustus writes the protein and coding sequences as comment into the gff/gtf file an external |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
16 ## script is used to extract the sequences into additional files |
0 | 17 |
18 augustus | |
19 --strand=$strand | |
20 $noInFrameStop | |
21 $gff | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
22 --uniqueGeneId=true |
2 | 23 |
1 | 24 #if 'protein' in str($outputs).split(','): |
25 --protein=on | |
26 #else: | |
27 --protein=off | |
28 #end if | |
29 | |
30 #if 'codingseq' in str($outputs).split(','): | |
31 --codingseq=on | |
32 #else: | |
33 --codingseq=off | |
34 #end if | |
2 | 35 |
1 | 36 #if 'introns' in str($outputs).split(','): |
37 --introns=on | |
38 #else: | |
39 --introns=off | |
40 #end if | |
41 | |
42 #if 'start' in str($outputs).split(','): | |
43 --start=on | |
44 #else: | |
45 --stop=off | |
46 #end if | |
47 | |
48 #if 'stop' in str($outputs).split(','): | |
49 --stop=on | |
50 #else: | |
51 --stop=off | |
52 #end if | |
53 | |
54 #if 'cds' in str($outputs).split(','): | |
55 --cds=on | |
56 #else: | |
57 --cds=off | |
58 #end if | |
59 | |
0 | 60 $singlestrand |
61 $input_genome | |
62 $utr | |
63 --genemodel=$genemodel | |
64 --species=$organism | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
65 |
2 | 66 | tee $output |
1 | 67 #if 'protein' in str($outputs).split(',') or 'codingseq' in str($outputs).split(','): |
2 | 68 | python $__tool_directory__/extract_features.py |
1 | 69 #if 'protein' in str($outputs).split(','): |
0 | 70 --protein $protein_output |
71 #end if | |
1 | 72 #if 'codingseq' in str($outputs).split(','): |
0 | 73 --codingseq $codingseq_output |
74 #end if | |
75 #end if | |
2 | 76 ]]> |
0 | 77 </command> |
78 <inputs> | |
79 <param name="input_genome" type="data" format="fasta" label="Genome Sequence"/> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
80 <param name="noInFrameStop" argument="--noInFrameStop" type="boolean" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
81 label="Don't report transcripts with in-frame stop codons (--noInFrameStop)" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
82 truevalue="--noInFrameStop=true" falsevalue="--noInFrameStop=false" checked="false" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
83 help="Otherwise, intron-spanning stop codons could occur. (--noInFrameStop)" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
84 <param name="singlestrand" type="boolean" argument="--singlestrand" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
85 label="Predict genes independently on each strand" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
86 help="This allows overlapping genes on opposite strands. (--singlestrand)" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
87 truevalue="--singlestrand=true" falsevalue="--singlestrand=false" checked="false" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
88 |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
89 <param name="utr" type="boolean" argument="--UTR" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
90 label="Predict the untranslated regions in addition to the coding sequence" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
91 truevalue="--UTR=on" falsevalue="--UTR=off" checked="false" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
92 help="This currently works only for human, galdieria, toxoplasma and caenorhabditis. (--UTR)" /> |
0 | 93 |
94 <param name="organism" label="Model Organism" type="select" multiple="false" format="text" help="Choose a specialised trainingset."> | |
95 <option value="human">Homo sapiens</option> | |
96 <option value="fly">Drosophila melanogaster</option> | |
97 <option value="arabidopsis">Arabidopsis thaliana</option> | |
98 <option value="brugia ">Brugia malayi</option> | |
99 <option value="aedes">Aedes aegypti</option> | |
100 <option value="tribolium2012">Tribolium castaneum</option> | |
101 <option value="schistosoma">Schistosoma mansoni</option> | |
102 <option value="tetrahymena">Tetrahymena thermophila</option> | |
103 <option value="galdieria">Galdieria sulphuraria</option> | |
104 <option value="maize">Zea mays</option> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
105 <option value="toxoplasma">Toxoplasma gondii</option> |
0 | 106 <option value="caenorhabditis ">Caenorhabditis elegans</option> |
107 <option value="aspergillus_fumigatus">Aspergillus fumigatus</option> | |
108 <option value="aspergillus_nidulans ">Aspergillus nidulans</option> | |
109 <option value="aspergillus_oryzae ">Aspergillus oryzae</option> | |
110 <option value="aspergillus_terreus">Aspergillus terreus</option> | |
111 <option value="botrytis_cinerea ">Botrytis cinerea</option> | |
112 <option value="candida_albicans ">Candida albicans</option> | |
113 <option value="candida_guilliermondii ">Candida guilliermondii</option> | |
114 <option value="candida_tropicalis ">Candida tropicalis</option> | |
115 <option value="chaetomium_globosum">Chaetomium globosum</option> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
116 <option value="coccidioides_immitis">Coccidioides immitis</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
117 <option value="coprinus">Coprinus cinereus</option> |
0 | 118 <option value="coprinus_cinereus">Coprinus cinereus</option> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
119 <option value="cryptococcus_neoformans_gattii">Cryptococcus neoformans gattii</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
120 <option value="cryptococcus_neoformans_neoformans_B">Cryptococcus neoformans neoformans</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
121 <option value="cryptococcus_neoformans_neoformans_JEC21">Cryptococcus neoformans neoformans</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
122 <option value="cryptococcus">Cryptococcus neoformans</option> |
0 | 123 <option value="debaryomyces_hansenii">Debaryomyces hansenii</option> |
124 <option value="encephalitozoon_cuniculi_GB">Encephalitozoon cuniculi</option> | |
125 <option value="eremothecium_gossypii">Eremothecium gossypii</option> | |
126 <option value="fusarium_graminearum ">Fusarium graminearum</option> | |
127 <option value="histoplasma_capsulatum ">Histoplasma capsulatum</option> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
128 <option value="histoplasma">Histoplasma capsulatum</option> |
0 | 129 <option value="kluyveromyces_lactis ">Kluyveromyces lactis</option> |
130 <option value="laccaria_bicolor ">Laccaria bicolor</option> | |
131 <option value="lamprey">Petromyzon marinus</option> | |
132 <option value="leishmania_tarentolae">Leishmania tarentolae</option> | |
133 <option value="lodderomyces_elongisporus">Lodderomyces elongisporus</option> | |
134 <option value="magnaporthe_grisea ">Magnaporthe grisea</option> | |
135 <option value="neurospora_crassa">Neurospora crassa</option> | |
136 <option value="phanerochaete_chrysosporium">Phanerochaete chrysosporium</option> | |
137 <option value="pichia_stipitis">Pichia stipitis</option> | |
138 <option value="rhizopus_oryzae">Rhizopus oryzae</option> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
139 <option value="saccharomyces_cerevisiae_S288C">Saccharomyces cerevisiae</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
140 <option value="saccharomyces_cerevisiae_rm11-1a_1">Saccharomyces cerevisiae</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
141 <option value="saccharomyces">Saccharomyces cerevisiae</option> |
0 | 142 <option value="schizosaccharomyces_pombe">Schizosaccharomyces pombe</option> |
143 <option value="trichinella">Trichinella spiralis</option> | |
144 <option value="ustilago_maydis">Ustilago maydis</option> | |
145 <option value="yarrowia_lipolytica">Yarrowia lipolytica</option> | |
146 <option value="nasonia">Nasonia vitripennis</option> | |
147 <option value="tomato">Solanum lycopersicum</option> | |
148 <option value="chlamydomonas">Chlamydomonas reinhardtii</option> | |
149 <option value="amphimedon">Amphimedon queenslandica</option> | |
150 <option value="pneumocystis">Pneumocystis jirovecii</option> | |
151 <option value="chicken">Gallus gallus domesticus (chicken)</option> | |
152 <option value="cacao">Theobroma cacao (cacao)</option> | |
153 <option value="heliconius_melpomene1">Heliconius melpomene</option> | |
154 <option value="xenoturbella">Xenoturbella</option> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
155 <option value="E_coli_K12">E coli K12</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
156 <option value="c_elegans_trsk">c elegans trsk</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
157 <option value="camponotus_floridanus">Camponotus floridanus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
158 <option value="coyote_tobacco">Coyote tobacco</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
159 <option value="s_aureus">Staphylococcus aureus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
160 <option value="thermoanaerobacter_tengcongensis">Thermoanaerobacter tengcongensis</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
161 <option value="wheat">wheat</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
162 <option value="zebrafish">Danio rerio</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
163 <option value="anidulans">Aspergillus nidulans</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
164 <option value="bombus_impatiens1">Bombus impatiens1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
165 <option value="bombus_terrestris2">Bombus terrestris2</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
166 <option value="botrytis_cinerea">Botrytis cinerea</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
167 <option value="brugia_malayi">Brugia malayi</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
168 <option value="conidiobolus_coronatus">Conidiobolus coronatus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
169 <option value="cryptococcus_neoformans">Cryptococcus neoformans</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
170 <option value="culex_pipiens">Culex pipiens</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
171 <option value="elephant_shark">Callorhinchus milii</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
172 <option value="honeybee1">Apis mellifera</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
173 <option value="phanerochaete_chrysosporium">Phanerochaete chrysosporium</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
174 <option value="pea_aphid">Acyrthosiphon pisum</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
175 <option value="rhodnius_prolixus">Rhodnius prolixus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
176 <option value="ustilago_maydis">Ustilago maydis</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
177 <option value="verticillium_albo_atrum1">Verticillium albo atrum1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
178 <option value="verticillium_longisporum1">Verticillium longisporum1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
179 <option value="Xipophorus_maculatus">Xipophorus_maculatus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
180 <option value="adorsata">adorsata</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
181 <option value="ancylostoma_ceylanicum">ancylostoma_ceylanicum</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
182 <option value="maker2_athal1">maker2_athal1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
183 <option value="maker2_c_elegans1">maker2_c_elegans1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
184 <option value="maker2_dmel1">maker2_dmel1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
185 <option value="maker2_spomb1">maker2_spomb1</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
186 <option value="parasteatoda">parasteatoda</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
187 <option value="rice">rice</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
188 <option value="schistosoma2">schistosoma2</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
189 <option value="sulfolobus_solfataricus">sulfolobus_solfataricus</option> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
190 </param> |
0 | 191 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
192 <param name="strand" type="select" argument="--strand" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
193 label="Predict genes on specific strands" help="(--strand)"> |
0 | 194 <option value="both">both</option> |
195 <option value="forward">forward</option> | |
196 <option value="backward">backward</option> | |
2 | 197 </param> |
0 | 198 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
199 <param name="genemodel" label="Gene Model" type="select" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
200 help="Gene Model to predict, for more information please refere to the help. (--genemodel)"> |
0 | 201 <option value="complete">complete</option> |
202 <option value="partial">partial</option> | |
203 <option value="intronless">intronless</option> | |
204 <option value="atleastone">atleastone</option> | |
205 <option value="exactlyone">exactlyone</option> | |
206 </param> | |
207 | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
208 <param name="gff" type="boolean" label="GFF formated output" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
209 help="Standard output is GTF. (--gff3)" |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
210 truevalue="--gff3=on" falsevalue="--gff3=off" checked="false" /> |
0 | 211 |
1 | 212 <param name="outputs" type="select" display="checkboxes" multiple="True" label="Output options"> |
213 <option value="protein" selected="True">predicted protein sequences (--protein)</option> | |
214 <option value="codingseq" selected="True">coding sequence as comment in the output file (--codingseq)</option> | |
215 <option value="introns">predicted intron sequences (--introns)</option> | |
216 <option value="start">predicted start codons (--start)</option> | |
217 <option value="stop">predicted stop codons (--stop)</option> | |
218 <option value="cds" selected="true">CDS region (--cds)</option> | |
219 | |
220 <validator type="no_options" message="Please select at least one output file." /> | |
221 </param> | |
222 | |
0 | 223 </inputs> |
224 <outputs> | |
225 <data format="gtf" name="output" label="${tool.name} on ${on_string}: GTF/GFF"> | |
226 <change_format> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
227 <when input="gff" value="--gff3=on" format="gff3" /> |
0 | 228 </change_format> |
229 </data> | |
230 <data format="fasta" name="protein_output" label="${tool.name} on ${on_string}: Protein sequence"> | |
1 | 231 <filter>'protein' in outputs</filter> |
0 | 232 </data> |
233 <data format="fasta" name="codingseq_output" label="${tool.name} on ${on_string}: Coding sequence"> | |
1 | 234 <filter>'codingseq' in outputs</filter> |
0 | 235 </data> |
236 </outputs> | |
237 <tests> | |
238 <test> | |
239 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
240 <param name="organism" value="human" /> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
241 <param name="utr" value="True" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
242 <output name="output" file="human_augustus_utr-on.gtf" ftype="gtf" lines_diff="6"/> |
0 | 243 </test> |
244 <test> | |
245 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
246 <param name="organism" value="human" /> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
247 <param name="utr" value="True" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
248 <param name="gff" value="True" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
249 <output name="output" file="human_augustus_utr-on.gff" ftype="gff3" lines_diff="6"/> |
0 | 250 </test> |
251 <test> | |
252 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
253 <param name="organism" value="human" /> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
254 <param name="outputs" value="protein,codingseq,introns,cds,start,stop" /> |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
255 <output name="output" file="human_augustus_protein_codingseq_introns_cds_main.gtf" ftype="gtf" lines_diff="6"/> |
0 | 256 <output name="codingseq_output" file="human_augustus_protein_codingseq_introns_cds_codingseq.fasta" ftype="fasta" /> |
257 <output name="protein_output" file="human_augustus_protein_codingseq_introns_cds_protein.fasta" ftype="fasta" /> | |
258 </test> | |
259 </tests> | |
260 <help> | |
2 | 261 <![CDATA[ |
0 | 262 |
263 **What it does** | |
264 | |
265 AUGUSTUS is a gene prediction program for eukaryotes written by Mario Stanke and Oliver Keller. | |
266 It can be used as an ab initio program, which means it bases its prediction purely on the | |
267 sequence. AUGUSTUS may also incorporate hints on the gene structure coming from extrinsic sources | |
268 such as EST, MS/MS, protein alignments and synthenic genomic alignments. | |
269 | |
270 ----- | |
271 | |
272 **Parameters** | |
273 | |
274 Gene Model:: | |
275 | |
276 partial : allow prediction of incomplete genes at the sequence boundaries (default) | |
277 intronless : only predict single-exon genes like in prokaryotes and some eukaryotes | |
278 complete : only predict complete genes | |
279 atleastone : predict at least one complete gene | |
280 exactlyone : predict exactly one complete gene | |
281 | |
282 | |
283 | |
284 **Example** | |
285 | |
286 Suppose you have the following DNA formatted sequences:: | |
287 | |
288 >Seq1 | |
289 cccgcggagcgggtaccacatcgctgcgcgatgtgcgagcgaacacccgggctgcgcccg | |
290 ggtgttgcgctcccgctccgcgggagcgctggcgggacgctgcgcgtcccgctcaccaag | |
291 cccgcttcgcgggcttggtgacgctccgtccgctgcgcttccggagttgcggggcttcgc | |
292 cccgctaaccctgggcctcgcttcgctccgccttgggcctgcggcgggtccgctgcgctc | |
293 ccccgcctcaagggcccttccggctgcgcctccaggacccaaccgcttgcgcgggcctgg | |
294 | |
295 Running this tool will produce this:: | |
296 | |
297 # ----- prediction on sequence number 1 (length = 1992969, name = scaffold1|size1992969) ----- | |
298 # | |
299 # Constraints/Hints: | |
300 # (none) | |
301 # Predicted genes for sequence number 1 on both strands | |
302 # start gene g1 | |
303 scaffold1|size1992969 AUGUSTUS gene 17453 19382 0.11 + . g6 | |
304 scaffold1|size1992969 AUGUSTUS transcript 17453 19382 0.11 + . g6.t1 | |
305 scaffold1|size1992969 AUGUSTUS start_codon 17453 17455 . + 0 transcript_id "g6.t1"; gene_id "g6"; | |
306 scaffold1|size1992969 AUGUSTUS intron 17615 17660 0.38 + . transcript_id "g6.t1"; gene_id "g6"; | |
307 scaffold1|size1992969 AUGUSTUS intron 17708 17772 0.54 + . transcript_id "g6.t1"; gene_id "g6"; | |
308 scaffold1|size1992969 AUGUSTUS intron 17902 18035 0.58 + . transcript_id "g6.t1"; gene_id "g6"; | |
309 scaffold1|size1992969 AUGUSTUS intron 18313 18367 0.99 + . transcript_id "g6.t1"; gene_id "g6"; | |
310 scaffold1|size1992969 AUGUSTUS intron 19014 19080 0.44 + . transcript_id "g6.t1"; gene_id "g6"; | |
311 scaffold1|size1992969 AUGUSTUS CDS 17453 17614 0.55 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
312 scaffold1|size1992969 AUGUSTUS CDS 17661 17707 0.38 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
313 scaffold1|size1992969 AUGUSTUS CDS 17773 17901 0.54 + 1 transcript_id "g6.t1"; gene_id "g6"; | |
314 scaffold1|size1992969 AUGUSTUS CDS 18036 18312 0.52 + 1 transcript_id "g6.t1"; gene_id "g6"; | |
315 scaffold1|size1992969 AUGUSTUS CDS 18368 19013 0.99 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
316 scaffold1|size1992969 AUGUSTUS CDS 19081 19379 0.31 + 2 transcript_id "g6.t1"; gene_id "g6"; | |
317 scaffold1|size1992969 AUGUSTUS stop_codon 19380 19382 . + 0 transcript_id "g6.t1"; gene_id "g6"; | |
318 | |
319 | |
2 | 320 ]]> |
0 | 321 </help> |
2 | 322 <citations> |
323 <citation type="doi">10.1093/bioinformatics/btg1080</citation> | |
324 </citations> | |
0 | 325 </tool> |