Mercurial > repos > bgruening > augustus
annotate augustus.xml @ 7:09855551d713 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
author | iuc |
---|---|
date | Thu, 15 Jul 2021 17:16:12 +0000 |
parents | ca6d970d931c |
children | bd0e53f3a891 |
rev | line source |
---|---|
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
1 <tool id="augustus" name="Augustus" profile="20.01" version="@VERSION@+galaxy@SUFFIX_VERSION@"> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
2 <description>gene prediction for prokaryotic and eukaryotic genomes</description> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
3 <macros> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
4 <import>macros.xml</import> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
5 </macros> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
6 <expand macro="requirements"/> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
7 <command detect_errors="aggressive"> |
2 | 8 <![CDATA[ |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
9 #if $model.augustus_mode == 'history' |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
10 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
11 ## Using an augustus model from history, we need to unzip it and let augustus find it |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
12 |
6
ca6d970d931c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 211061259f97dfbeb080aaf4713a21f64a1742e1"
iuc
parents:
5
diff
changeset
|
13 cp -r `command -v augustus | xargs dirname`/../config/ augustus_dir/ && |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
14 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
15 mkdir -p 'augustus_dir/species/' && |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
16 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
17 tar -C 'augustus_dir/species/' -xzvf '${model.custom_model}' > /dev/null && |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
18 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
19 export AUGUSTUS_CONFIG_PATH=`pwd`/augustus_dir/ && |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
20 #end if |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
21 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
22 ## 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
|
23 ## script is used to extract the sequences into additional files |
0 | 24 |
25 augustus | |
26 --strand=$strand | |
27 $noInFrameStop | |
28 $gff | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
29 --uniqueGeneId=true |
2 | 30 |
1 | 31 #if 'protein' in str($outputs).split(','): |
32 --protein=on | |
33 #else: | |
34 --protein=off | |
35 #end if | |
36 | |
37 #if 'codingseq' in str($outputs).split(','): | |
38 --codingseq=on | |
39 #else: | |
40 --codingseq=off | |
41 #end if | |
2 | 42 |
1 | 43 #if 'introns' in str($outputs).split(','): |
44 --introns=on | |
45 #else: | |
46 --introns=off | |
47 #end if | |
48 | |
49 #if 'start' in str($outputs).split(','): | |
50 --start=on | |
51 #else: | |
52 --stop=off | |
53 #end if | |
54 | |
55 #if 'stop' in str($outputs).split(','): | |
56 --stop=on | |
57 #else: | |
58 --stop=off | |
59 #end if | |
60 | |
61 #if 'cds' in str($outputs).split(','): | |
62 --cds=on | |
63 #else: | |
64 --cds=off | |
65 #end if | |
66 | |
0 | 67 $singlestrand |
68 $input_genome | |
69 $utr | |
70 --genemodel=$genemodel | |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
71 --softmasking=$softmasking |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
72 #if $hints.usehints == 'T' |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
73 --hintsfile='$hints.hintsfile' --extrinsicCfgFile='$hints.extrinsiccfg' |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
74 #end if |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
75 |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
76 #if $range.userange == 'T' |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
77 --predictionStart=$range.start --predictionEnd=$range.stop |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
78 #end if |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
79 |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
80 #if $model.augustus_mode == 'history' |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
81 --species=local |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
82 #else |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
83 --species=$model.organism |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
84 #end if |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
85 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
86 | tee '$output' |
1 | 87 #if 'protein' in str($outputs).split(',') or 'codingseq' in str($outputs).split(','): |
2 | 88 | python $__tool_directory__/extract_features.py |
1 | 89 #if 'protein' in str($outputs).split(','): |
0 | 90 --protein $protein_output |
91 #end if | |
1 | 92 #if 'codingseq' in str($outputs).split(','): |
0 | 93 --codingseq $codingseq_output |
94 #end if | |
95 #end if | |
2 | 96 ]]> |
0 | 97 </command> |
98 <inputs> | |
99 <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
|
100 <param name="noInFrameStop" argument="--noInFrameStop" type="boolean" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
101 label="Don't report transcripts with in-frame stop codons" |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
102 truevalue="--noInFrameStop=true" falsevalue="--noInFrameStop=false" checked="false" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
103 help="Otherwise, intron-spanning stop codons could occur." /> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
104 <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
|
105 label="Predict genes independently on each strand" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
106 help="This allows overlapping genes on opposite strands." |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
107 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
|
108 |
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
109 <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
|
110 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
|
111 truevalue="--UTR=on" falsevalue="--UTR=off" checked="false" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
112 help="This currently works only for human, galdieria, toxoplasma and caenorhabditis." /> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
113 |
0 | 114 |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
115 <conditional name="model"> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
116 <param name="augustus_mode" type="select" label="Trainingset"> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
117 <option value="builtin">Run Augustus with a predefined trainingset</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
118 <option value="history">Run Augustus with a custom trainingset</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
119 </param> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
120 <when value="history"> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
121 <param name="custom_model" type="data" format="augustus" label="Augustus model" help="Archive created with the 'Train Augustus' tool"/> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
122 </when> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
123 <when value="builtin"> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
124 <param name="organism" label="Model Organism" type="select" multiple="false" format="text" help="Choose a specialised trainingset."> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
125 <!-- If you update this list, please also update it in maker and busco tools (../maker/maker.xml and ../busco/busco.xml) --> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
126 <option value="human">Homo sapiens</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
127 <option value="fly">Drosophila melanogaster</option> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
128 <option value="maker2_dmel1">Drosophila melanogaster (maker2_dmel1)</option> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
129 <option value="arabidopsis">Arabidopsis thaliana</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
130 <option value="brugia ">Brugia malayi</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
131 <option value="aedes">Aedes aegypti</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
132 <option value="tribolium2012">Tribolium castaneum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
133 <option value="schistosoma">Schistosoma mansoni</option> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
134 <option value="schistosoma2">Schistosoma mansoni (schistosoma2)</option> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
135 <option value="tetrahymena">Tetrahymena thermophila</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
136 <option value="galdieria">Galdieria sulphuraria</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
137 <option value="maize">Zea mays</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
138 <option value="toxoplasma">Toxoplasma gondii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
139 <option value="caenorhabditis ">Caenorhabditis elegans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
140 <option value="aspergillus_fumigatus">Aspergillus fumigatus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
141 <option value="aspergillus_nidulans ">Aspergillus nidulans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
142 <option value="aspergillus_oryzae ">Aspergillus oryzae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
143 <option value="aspergillus_terreus">Aspergillus terreus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
144 <option value="botrytis_cinerea ">Botrytis cinerea</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
145 <option value="candida_albicans ">Candida albicans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
146 <option value="candida_guilliermondii ">Candida guilliermondii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
147 <option value="candida_tropicalis ">Candida tropicalis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
148 <option value="chaetomium_globosum">Chaetomium globosum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
149 <option value="coccidioides_immitis">Coccidioides immitis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
150 <option value="coprinus">Coprinus cinereus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
151 <option value="coprinus_cinereus">Coprinus cinereus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
152 <option value="cryptococcus_neoformans_gattii">Cryptococcus neoformans gattii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
153 <option value="cryptococcus_neoformans_neoformans_B">Cryptococcus neoformans neoformans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
154 <option value="cryptococcus_neoformans_neoformans_JEC21">Cryptococcus neoformans neoformans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
155 <option value="cryptococcus">Cryptococcus neoformans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
156 <option value="debaryomyces_hansenii">Debaryomyces hansenii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
157 <option value="encephalitozoon_cuniculi_GB">Encephalitozoon cuniculi</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
158 <option value="eremothecium_gossypii">Eremothecium gossypii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
159 <option value="fusarium_graminearum ">Fusarium graminearum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
160 <option value="histoplasma_capsulatum ">Histoplasma capsulatum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
161 <option value="histoplasma">Histoplasma capsulatum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
162 <option value="kluyveromyces_lactis ">Kluyveromyces lactis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
163 <option value="laccaria_bicolor ">Laccaria bicolor</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
164 <option value="lamprey">Petromyzon marinus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
165 <option value="leishmania_tarentolae">Leishmania tarentolae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
166 <option value="lodderomyces_elongisporus">Lodderomyces elongisporus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
167 <option value="magnaporthe_grisea ">Magnaporthe grisea</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
168 <option value="neurospora_crassa">Neurospora crassa</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
169 <option value="phanerochaete_chrysosporium">Phanerochaete chrysosporium</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
170 <option value="pichia_stipitis">Pichia stipitis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
171 <option value="rhizopus_oryzae">Rhizopus oryzae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
172 <option value="saccharomyces_cerevisiae_S288C">Saccharomyces cerevisiae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
173 <option value="saccharomyces_cerevisiae_rm11-1a_1">Saccharomyces cerevisiae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
174 <option value="saccharomyces">Saccharomyces cerevisiae</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
175 <option value="schizosaccharomyces_pombe">Schizosaccharomyces pombe</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
176 <option value="trichinella">Trichinella spiralis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
177 <option value="ustilago_maydis">Ustilago maydis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
178 <option value="yarrowia_lipolytica">Yarrowia lipolytica</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
179 <option value="nasonia">Nasonia vitripennis</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
180 <option value="tomato">Solanum lycopersicum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
181 <option value="chlamydomonas">Chlamydomonas reinhardtii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
182 <option value="amphimedon">Amphimedon queenslandica</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
183 <option value="pneumocystis">Pneumocystis jirovecii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
184 <option value="chicken">Gallus gallus domesticus (chicken)</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
185 <option value="cacao">Theobroma cacao (cacao)</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
186 <option value="heliconius_melpomene1">Heliconius melpomene</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
187 <option value="xenoturbella">Xenoturbella</option> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
188 <option value="E_coli_K12">Escherichia coli K12</option> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
189 <option value="c_elegans_trsk">c elegans trsk</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
190 <option value="camponotus_floridanus">Camponotus floridanus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
191 <option value="coyote_tobacco">Coyote tobacco</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
192 <option value="s_aureus">Staphylococcus aureus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
193 <option value="thermoanaerobacter_tengcongensis">Thermoanaerobacter tengcongensis</option> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
194 <option value="wheat">Triticum aestivum</option> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
195 <option value="zebrafish">Danio rerio</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
196 <option value="anidulans">Aspergillus nidulans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
197 <option value="bombus_impatiens1">Bombus impatiens1</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
198 <option value="bombus_terrestris2">Bombus terrestris2</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
199 <option value="botrytis_cinerea">Botrytis cinerea</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
200 <option value="brugia_malayi">Brugia malayi</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
201 <option value="conidiobolus_coronatus">Conidiobolus coronatus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
202 <option value="cryptococcus_neoformans">Cryptococcus neoformans</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
203 <option value="culex_pipiens">Culex pipiens</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
204 <option value="elephant_shark">Callorhinchus milii</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
205 <option value="honeybee1">Apis mellifera</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
206 <option value="phanerochaete_chrysosporium">Phanerochaete chrysosporium</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
207 <option value="pea_aphid">Acyrthosiphon pisum</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
208 <option value="rhodnius_prolixus">Rhodnius prolixus</option> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
209 <option value="ustilago_maydis">Ustilago maydis</option> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
210 <option value="verticillium_albo_atrum1">Verticillium albo-atrum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
211 <option value="verticillium_longisporum1">Verticillium longisporum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
212 <option value="Xipophorus_maculatus">Xipophorus maculatus</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
213 <option value="adorsata">Apis dorsata</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
214 <option value="ancylostoma_ceylanicum">Ancylostoma ceylanicum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
215 <option value="maker2_athal1">Arabidopsis thaliana (maker2_athal1)</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
216 <option value="maker2_c_elegans1">Caenorhabditis elegans (maker2_c_elegans1)</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
217 <option value="maker2_spomb1">Saccharomyces cerevisiae (maker2_spomb1)</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
218 <option value="parasteatoda">Parasteatoda SP.</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
219 <option value="rice">Oryza sp.</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
220 <option value="Cassiopea_xamachana">Cassiopea xamachana</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
221 <option value="Ptychodera_flava">Ptychodera flava</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
222 <option value="Argopecten_irridians">Argopecten irridians</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
223 <option value="Nemopilema_nomurai">Nemopilema nomurai</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
224 <option value="Notospermus_geniculatus">Notospermus geniculatus</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
225 <option value="Chrysaora_chesapeakeij">Chrysaora chesapeakeij</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
226 <option value="Ectocarpus_siliculosus">Ectocarpus siliculosus</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
227 <option value="Trichoplax_adhaerens">Trichoplax adhaerens</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
228 <option value="Aurelia_aurita">Aurelia aurita</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
229 <option value="Rhopilema_esculentum">Rhopilema esculentum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
230 <option value="Encephalitozoon_cuniculi">Encephalitozoon cuniculi</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
231 <option value="Gonapodya_prolifera">Dunaliella salina</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
232 <option value="Sordaria_macrospora">Sordaria macrospora</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
233 <option value="Sphaceloma_murrayae">Sphaceloma murrayae</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
234 <option value="Vitrella_brassicaformis">Vitrella brassicaformis</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
235 <option value="Monoraphidium_neglectum">Monoraphidium_neglectum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
236 <option value="Raphidocelis_subcapita">Raphidocelis subcapita</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
237 <option value="Ostreococcus_tauri">Ostreococcus tauri</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
238 <option value="Ostreococcus_sp_lucimarinus">Ostreococcus sp. lucimarinus</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
239 <option value="Micromonas_pusilla">Micromonas pusilla</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
240 <option value="Micromonas_commoda">Micromonas commoda</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
241 <option value="Chlamydomonas_eustigma">Chlamydomonas eustigma</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
242 <option value="Thalassiosira_pseudonana">Thalassiosira pseudonana</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
243 <option value="Pseudo-nitzschia_multistriata">Pseudo-nitzschia multistriata</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
244 <option value="Phaeodactylum_tricornutum">Phaeodactylum tricornutum</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
245 <option value="Fragilariopsis_cylindrus">Fragilariopsis cylindrus</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
246 <option value="Fistulifera_solaris">Fistulifera solaris</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
247 <option value="Bathycoccus_prasinos">Bathycoccus prasinos</option> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
248 <option value="Chloropicon_primus">Chloropicon primus</option> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
249 </param> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
250 </when> |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
251 </conditional> |
0 | 252 |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
253 <param name="softmasking" type="boolean" argument="--softmasking" |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
254 label="Softmasking" |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
255 truevalue="1" falsevalue="0" checked="true" |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
256 help="If this option is enabled, lowercase letters are considered as repeated regions." /> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
257 |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
258 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
259 <param name="strand" type="select" argument="--strand" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
260 label="Predict genes on specific strands"> |
0 | 261 <option value="both">both</option> |
262 <option value="forward">forward</option> | |
263 <option value="backward">backward</option> | |
2 | 264 </param> |
0 | 265 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
266 <param name="genemodel" label="Gene Model" type="select" |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
267 help="Gene Model to predict, for more information please refer to the help."> |
0 | 268 <option value="complete">complete</option> |
269 <option value="partial">partial</option> | |
270 <option value="intronless">intronless</option> | |
271 <option value="atleastone">atleastone</option> | |
272 <option value="exactlyone">exactlyone</option> | |
273 </param> | |
274 | |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
275 <conditional name="hints"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
276 <param name="usehints" label="Use hints (extrinsic information)?" type="select" display="radio"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
277 <option value="F">No</option> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
278 <option value="T">Yes</option> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
279 </param> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
280 <when value="T"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
281 <param name="hintsfile" label="Select hints file from history" type="data" format="gff" |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
282 help="A file containing hints in gff format (--hintsfile)"/> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
283 <param name="extrinsiccfg" label="Select extrinsic configuration file from history" type="data" format="txt" |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
284 help="A .cfg file listing hint sources and their boni and mali (--extrinsicCfgFile)"/> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
285 </when> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
286 <when value="F"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
287 </when> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
288 </conditional> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
289 |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
290 <conditional name="range"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
291 <param name="userange" label="Specify prediction sequence range?" type="select" display="radio"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
292 <option value="F">No</option> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
293 <option value="T">Yes</option> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
294 </param> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
295 <when value="T"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
296 <param name="start" label="Starting position" type="integer" value="" |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
297 help="The beginning of the search range (--predictionStart)"/> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
298 <param name="stop" label="Ending position" type="integer" value="" |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
299 help="The end of the search range (--predictionEnd); must be greater than starting position"/> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
300 </when> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
301 <when value="F"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
302 </when> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
303 </conditional> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
304 |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
305 <param name="gff" type="boolean" label="GFF formated output" |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
306 help="Standard output is GTF." |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
307 truevalue="--gff3=on" falsevalue="--gff3=off" checked="false" /> |
0 | 308 |
1 | 309 <param name="outputs" type="select" display="checkboxes" multiple="True" label="Output options"> |
310 <option value="protein" selected="True">predicted protein sequences (--protein)</option> | |
311 <option value="codingseq" selected="True">coding sequence as comment in the output file (--codingseq)</option> | |
312 <option value="introns">predicted intron sequences (--introns)</option> | |
313 <option value="start">predicted start codons (--start)</option> | |
314 <option value="stop">predicted stop codons (--stop)</option> | |
315 <option value="cds" selected="true">CDS region (--cds)</option> | |
316 </param> | |
0 | 317 </inputs> |
318 <outputs> | |
319 <data format="gtf" name="output" label="${tool.name} on ${on_string}: GTF/GFF"> | |
320 <change_format> | |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
321 <when input="gff" value="--gff3=on" format="gff3" /> |
0 | 322 </change_format> |
323 </data> | |
324 <data format="fasta" name="protein_output" label="${tool.name} on ${on_string}: Protein sequence"> | |
1 | 325 <filter>'protein' in outputs</filter> |
0 | 326 </data> |
327 <data format="fasta" name="codingseq_output" label="${tool.name} on ${on_string}: Coding sequence"> | |
1 | 328 <filter>'codingseq' in outputs</filter> |
0 | 329 </data> |
330 </outputs> | |
331 <tests> | |
332 <test> | |
333 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
334 <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
|
335 <param name="utr" value="True" /> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
336 <param name="softmasking" value="False"/> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
337 <output name="output" file="human_augustus_utr-on.gtf" ftype="gtf" lines_diff="6"/> |
0 | 338 </test> |
339 <test> | |
340 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
341 <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
|
342 <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
|
343 <param name="gff" value="True" /> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
344 <param name="softmasking" value="False"/> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
345 <output name="output" file="human_augustus_utr-on.gff" ftype="gff3" lines_diff="6"/> |
0 | 346 </test> |
347 <test> | |
348 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> | |
349 <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
|
350 <param name="outputs" value="protein,codingseq,introns,cds,start,stop" /> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
351 <param name="softmasking" value="False"/> |
3
f5075dee9d6b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/augustus commit cf04d83d615ff09c4458982282d422fbef7d83ac
iuc
parents:
2
diff
changeset
|
352 <output name="output" file="human_augustus_protein_codingseq_introns_cds_main.gtf" ftype="gtf" lines_diff="6"/> |
0 | 353 <output name="codingseq_output" file="human_augustus_protein_codingseq_introns_cds_codingseq.fasta" ftype="fasta" /> |
354 <output name="protein_output" file="human_augustus_protein_codingseq_introns_cds_protein.fasta" ftype="fasta" /> | |
355 </test> | |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
356 <test> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
357 <param name="input_genome" value="chr2R.truncated.fa" ftype="fasta" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
358 <param name="organism" value="fly" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
359 <param name="usehints" value="T" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
360 <param name="hintsfile" value="hints.truncated.adjusted.gff" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
361 <param name="extrinsiccfg" value="extrinsic.truncated.cfg" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
362 <param name="outputs" value="" /> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
363 <param name="softmasking" value="False"/> |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
364 <output name="output" file="augustus.hints.output.gtf" ftype="gtf" lines_diff="12"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
365 <assert_contents> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
366 <has_text_matching expression="chr2R\tAUGUSTUS\tgene\t7560\t9303\t0\.(7[8-9]|8[0-5])\t-\t.\tchr2R.g1" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
367 <has_text_matching expression="chr2R\tAUGUSTUS\ttranscript\t7560\t9303\t0\.(7[8-9]|8[0-5])\t-\t.\tchr2R.g1.t1" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
368 </assert_contents> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
369 </output> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
370 |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
371 </test> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
372 <test> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
373 <param name="input_genome" value="chr2R.truncated.fa" ftype="fasta" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
374 <param name="organism" value="fly" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
375 <param name="usehints" value="T" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
376 <param name="hintsfile" value="hints.truncated.adjusted.gff" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
377 <param name="extrinsiccfg" value="extrinsic.truncated.cfg" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
378 <param name="userange" value="T" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
379 <param name="start" value="7000" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
380 <param name="stop" value="9000" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
381 <param name="outputs" value="" /> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
382 <param name="softmasking" value="False"/> |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
383 <output name="output" file="augustus.hints_and_range.output.gtf" ftype="gtf" lines_diff="12"> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
384 <assert_contents> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
385 <has_text_matching expression="chr2R\tAUGUSTUS\tgene\t7560\t8931\t0.8[2-5]\t-\t.\tchr2R.g1" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
386 <has_text_matching expression="chr2R\tAUGUSTUS\ttranscript\t7560\t8931\t0.8[2-5]\t-\t.\tchr2R.g1.t1" /> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
387 </assert_contents> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
388 </output> |
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
389 </test> |
7
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
390 <!-- Test softmasking parameter--> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
391 <test> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
392 <param name="input_genome" value="human_augustus.fa" ftype="fasta" /> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
393 <param name="organism" value="human" /> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
394 <param name="utr" value="True" /> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
395 <param name="softmasking" value="True"/> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
396 <output name="output" file="human_augustus_utr-on_softmasking.gtf" ftype="gtf" lines_diff="6"/> |
09855551d713
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit bba7f5df059fcbeb06e89cf689e9a04d4f22cb76"
iuc
parents:
6
diff
changeset
|
397 </test> |
5
b3f5d0879dab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 0fed5bb024a096dcb5b2858520ba191da7798b6d
iuc
parents:
4
diff
changeset
|
398 |
0 | 399 </tests> |
400 <help> | |
2 | 401 <![CDATA[ |
0 | 402 |
403 **What it does** | |
404 | |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
405 AUGUSTUS is a gene prediction program for prokaryotes and eukaryotes written by Mario Stanke and Oliver Keller. |
0 | 406 It can be used as an ab initio program, which means it bases its prediction purely on the |
407 sequence. AUGUSTUS may also incorporate hints on the gene structure coming from extrinsic sources | |
408 such as EST, MS/MS, protein alignments and synthenic genomic alignments. | |
409 | |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
410 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
411 **Input** |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
412 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
413 Input data for the gene prediction tool Augustus is a FASTA file with a genomic nucleotide sequence. |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
414 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
415 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
416 **Output** |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
417 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
418 Augustus produces three output files: a FASTA file with predicted coding sequences, a FASTA file with predicted protein sequences and a gtf/GFF output file if selected. |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
419 |
0 | 420 |
421 **Parameters** | |
422 | |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
423 Gene Model: |
0 | 424 |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
425 partial: allow prediction of incomplete genes at the sequence boundaries (default) |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
426 intronless: only predict single-exon genes like in prokaryotes and some eukaryotes |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
427 complete: only predict complete genes |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
428 atleastone: predict at least one complete gene |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
429 exactlyone: predict exactly one complete gene |
0 | 430 |
431 | |
432 | |
433 **Example** | |
434 | |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
435 Suppose you have the following DNA FASTA sequence: |
0 | 436 |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
437 >Seq1 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
438 cccgcggagcgggtaccacatcgctgcgcgatgtgcgagcgaacacccgggctgcgcccg |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
439 ggtgttgcgctcccgctccgcgggagcgctggcgggacgctgcgcgtcccgctcaccaag |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
440 cccgcttcgcgggcttggtgacgctccgtccgctgcgcttccggagttgcggggcttcgc |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
441 cccgctaaccctgggcctcgcttcgctccgccttgggcctgcggcgggtccgctgcgctc |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
442 ccccgcctcaagggcccttccggctgcgcctccaggacccaaccgcttgcgcgggcctgg |
0 | 443 |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
444 |
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
445 Running this tool will produce this: |
0 | 446 |
447 # ----- prediction on sequence number 1 (length = 1992969, name = scaffold1|size1992969) ----- | |
448 # | |
449 # Constraints/Hints: | |
450 # (none) | |
451 # Predicted genes for sequence number 1 on both strands | |
452 # start gene g1 | |
453 scaffold1|size1992969 AUGUSTUS gene 17453 19382 0.11 + . g6 | |
454 scaffold1|size1992969 AUGUSTUS transcript 17453 19382 0.11 + . g6.t1 | |
455 scaffold1|size1992969 AUGUSTUS start_codon 17453 17455 . + 0 transcript_id "g6.t1"; gene_id "g6"; | |
456 scaffold1|size1992969 AUGUSTUS intron 17615 17660 0.38 + . transcript_id "g6.t1"; gene_id "g6"; | |
457 scaffold1|size1992969 AUGUSTUS intron 17708 17772 0.54 + . transcript_id "g6.t1"; gene_id "g6"; | |
458 scaffold1|size1992969 AUGUSTUS intron 17902 18035 0.58 + . transcript_id "g6.t1"; gene_id "g6"; | |
459 scaffold1|size1992969 AUGUSTUS intron 18313 18367 0.99 + . transcript_id "g6.t1"; gene_id "g6"; | |
460 scaffold1|size1992969 AUGUSTUS intron 19014 19080 0.44 + . transcript_id "g6.t1"; gene_id "g6"; | |
461 scaffold1|size1992969 AUGUSTUS CDS 17453 17614 0.55 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
462 scaffold1|size1992969 AUGUSTUS CDS 17661 17707 0.38 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
463 scaffold1|size1992969 AUGUSTUS CDS 17773 17901 0.54 + 1 transcript_id "g6.t1"; gene_id "g6"; | |
464 scaffold1|size1992969 AUGUSTUS CDS 18036 18312 0.52 + 1 transcript_id "g6.t1"; gene_id "g6"; | |
465 scaffold1|size1992969 AUGUSTUS CDS 18368 19013 0.99 + 0 transcript_id "g6.t1"; gene_id "g6"; | |
466 scaffold1|size1992969 AUGUSTUS CDS 19081 19379 0.31 + 2 transcript_id "g6.t1"; gene_id "g6"; | |
467 scaffold1|size1992969 AUGUSTUS stop_codon 19380 19382 . + 0 transcript_id "g6.t1"; gene_id "g6"; | |
468 | |
469 | |
2 | 470 ]]> |
0 | 471 </help> |
4
4de31938431b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
iuc
parents:
3
diff
changeset
|
472 <expand macro="citations"/> |
0 | 473 </tool> |