annotate augustus/augustus.xml @ 1:5663d1a1b29c

add citation
author Bjoern Gruening <bjoern@gruenings.eu>
date Wed, 14 Mar 2012 17:07:11 +0100
parents 9fb7ae02453c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
1 <tool id="augustus" name="Augustus" version="0.1">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
2 <description>gen prediction for eukaryotic genomes</description>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
3 <command>augustus
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
4 --strand=$strand
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
5 $noInFrameStop
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
6 $gff
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
7 $protein
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
8 $introns
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
9 $start
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
10 $stop
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
11 $cds
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
12 $codingseq
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
13 $singlestrand
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
14 $input_genome
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
15 --genemodel=$genemodel
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
16 --species=$organism
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
17 --outfile=$output
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
18
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
19 #please set export AUGUSTUS_CONFIG_PATH=/path_to_augustus/augustus/config
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
20 #or use the --AUGUSTUS_CONFIG_PATH=path switch
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
21
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
22 </command>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
23 <inputs>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
24 <param name="input_genome" type="data" format="fasta" label="Genome Sequence"/>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
25 <param name="noInFrameStop" type="boolean" label="Don't report transcripts with in-frame stop codons. Otherwise, intron-spanning stop codons could occur" truevalue="--noInFrameStop=true" falsevalue="--noInFrameStop=false" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
26 <param name="gff" type="boolean" label="GFF formated output, standard is GTF" truevalue="--gff3=on" falsevalue="--gff3=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
27 <param name="protein" type="boolean" label="Output predicted protein sequences" truevalue="--protein=on" falsevalue="--protein=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
28 <param name="introns" type="boolean" label="Output predicted intron sequences" truevalue="--introns=on" falsevalue="--introns=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
29 <param name="start" type="boolean" label="Output predicted start codons" truevalue="--start=on" falsevalue="--start=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
30 <param name="stop" type="boolean" label="Output predicted stop codons" truevalue="--stop=on" falsevalue="--stop=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
31 <param name="cds" type="boolean" label="Output CDS region" truevalue="--cds=on" falsevalue="--cds=off" checked="true" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
32 <param name="codingseq" type="boolean" label="Output coding sequence as comment in the output file" truevalue="--codingseq=on" falsevalue="--codingseq=off" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
33
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
34 <param name="singlestrand" type="boolean" label="Predict genes independently on each strand, allow overlapping genes on opposite strands" truevalue="--singlestrand=true" falsevalue="--singlestrand=false" checked="false" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
35
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
36 <param name="organism" label="Model Organism" type="select" multiple="false" format="text" help="Choose a specialised trainingset.">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
37 <option value="human">Homo sapiens</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
38 <option value="fly">Drosophila melanogaster</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
39 <option value="arabidopsis">Arabidopsis thaliana</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
40 <option value="brugia ">Brugia malayi</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
41 <option value="aedes">Aedes aegypti</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
42 <option value="tribolium">Tribolium castaneum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
43 <option value="schistosoma">Schistosoma mansoni</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
44 <option value="tetrahymena">Tetrahymena thermophila</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
45 <option value="galdieria">Galdieria sulphuraria</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
46 <option value="maize">Zea mays</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
47 <option value="toxoplasma ">Toxoplasma gondii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
48 <option value="caenorhabditis ">Caenorhabditis elegans</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
49 <option value="aspergillus_fumigatus">Aspergillus fumigatus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
50 <option value="aspergillus_nidulans ">Aspergillus nidulans</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
51 <option value="aspergillus_oryzae ">Aspergillus oryzae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
52 <option value="aspergillus_terreus">Aspergillus terreus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
53 <option value="botrytis_cinerea ">Botrytis cinerea</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
54 <option value="candida_albicans ">Candida albicans</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
55 <option value="candida_guilliermondii ">Candida guilliermondii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
56 <option value="candida_tropicalis ">Candida tropicalis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
57 <option value="chaetomium_globosum">Chaetomium globosum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
58 <option value="coccidioides_immitis ">Coccidioides immitis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
59 <option value="coprinus ">Coprinus cinereus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
60 <option value="coprinus_cinereus">Coprinus cinereus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
61 <option value="cryptococcus_neoformans_gattii ">Cryptococcus neoformans gattii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
62 <option value="cryptococcus_neoformans_neoformans_B ">Cryptococcus neoformans neoformans</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
63 <option value="cryptococcus_neoformans_neoformans_JEC21 ">Cryptococcus neoformans neoformans</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
64 <option value="debaryomyces_hansenii">Debaryomyces hansenii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
65 <option value="encephalitozoon_cuniculi_GB">Encephalitozoon cuniculi</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
66 <option value="eremothecium_gossypii">Eremothecium gossypii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
67 <option value="fusarium_graminearum ">Fusarium graminearum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
68 <option value="histoplasma_capsulatum ">Histoplasma capsulatum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
69 <option value="(histoplasma)">Histoplasma capsulatum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
70 <option value="kluyveromyces_lactis ">Kluyveromyces lactis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
71 <option value="laccaria_bicolor ">Laccaria bicolor</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
72 <option value="lamprey">Petromyzon marinus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
73 <option value="leishmania_tarentolae">Leishmania tarentolae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
74 <option value="lodderomyces_elongisporus">Lodderomyces elongisporus</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
75 <option value="magnaporthe_grisea ">Magnaporthe grisea</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
76 <option value="neurospora_crassa">Neurospora crassa</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
77 <option value="phanerochaete_chrysosporium">Phanerochaete chrysosporium</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
78 <option value="pichia_stipitis">Pichia stipitis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
79 <option value="rhizopus_oryzae">Rhizopus oryzae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
80 <option value="saccharomyces_cerevisiae_S288C ">Saccharomyces cerevisiae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
81 <option value="saccharomyces_cerevisiae_rm11-1a_1 ">Saccharomyces cerevisiae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
82 <option value="(saccharomyces)">Saccharomyces cerevisiae</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
83 <option value="schizosaccharomyces_pombe">Schizosaccharomyces pombe</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
84 <option value="trichinella">Trichinella spiralis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
85 <option value="ustilago_maydis">Ustilago maydis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
86 <option value="yarrowia_lipolytica">Yarrowia lipolytica</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
87 <option value="nasonia">Nasonia vitripennis</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
88 <option value="tomato ">Solanum lycopersicum</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
89 <option value="chlamydomonas">Chlamydomonas reinhardtii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
90 <option value="amphimedon ">Amphimedon queenslandica</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
91 <option value="pneumocystis ">Pneumocystis jirovecii</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
92 </param>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
93
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
94 <param name="strand" type="select" multiple="false" format="text" help="Report predicted genes on both strands, just the forward or just the backward strand.">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
95 <option value="both">both</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
96 <option value="forward">forward</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
97 <option value="backward">backward</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
98 </param>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
99
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
100 <param name="genemodel" label="Gene Model" type="select" multiple="false" format="text" help="Gene Model to predict, for more information please refere to the help.">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
101 <option value="complete">complete</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
102 <option value="partial">partial</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
103 <option value="intronless">intronless</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
104 <option value="atleastone">atleastone</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
105 <option value="exactlyone">exactlyone</option>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
106 </param>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
107
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
108 </inputs>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
109 <outputs>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
110 <data format="gtf" name="output">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
111 <change_format>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
112 <when input="gff" value="--gff3=on" format="gff" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
113 </change_format>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
114 </data>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
115 </outputs>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
116 <requirements>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
117 <requirement type="binary">augustus</requirement>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
118 </requirements>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
119 <help>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
120
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
121 **What it does**
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
122
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
123 AUGUSTUS is a gene prediction program for eukaryotes written by Mario Stanke and Oliver Keller.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
124 It can be used as an ab initio program, which means it bases its prediction purely on the
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
125 sequence. AUGUSTUS may also incorporate hints on the gene structure coming from extrinsic sources
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
126 such as EST, MS/MS, protein alignments and synthenic genomic alignments.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
127
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
128 -----
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
129
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
130 **Parameters**
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
131
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
132 Gene Model::
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
133
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
134 partial : allow prediction of incomplete genes at the sequence boundaries (default)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
135 intronless : only predict single-exon genes like in prokaryotes and some eukaryotes
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
136 complete : only predict complete genes
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
137 atleastone : predict at least one complete gene
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
138 exactlyone : predict exactly one complete gene
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
139
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
140
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
141
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
142 **Example**
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
143
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
144 Suppose you have the following DNA formatted sequences::
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
145
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
146 >Seq1
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
147 cccgcggagcgggtaccacatcgctgcgcgatgtgcgagcgaacacccgggctgcgcccg
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
148 ggtgttgcgctcccgctccgcgggagcgctggcgggacgctgcgcgtcccgctcaccaag
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
149 cccgcttcgcgggcttggtgacgctccgtccgctgcgcttccggagttgcggggcttcgc
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
150 cccgctaaccctgggcctcgcttcgctccgccttgggcctgcggcgggtccgctgcgctc
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
151 ccccgcctcaagggcccttccggctgcgcctccaggacccaaccgcttgcgcgggcctgg
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
152
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
153 Running this tool will produce this::
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
154
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
155 # ----- prediction on sequence number 1 (length = 1992969, name = scaffold1|size1992969) -----
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
156 #
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
157 # Constraints/Hints:
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
158 # (none)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
159 # Predicted genes for sequence number 1 on both strands
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
160 # start gene g1
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
161 scaffold1|size1992969 AUGUSTUS gene 17453 19382 0.11 + . g6
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
162 scaffold1|size1992969 AUGUSTUS transcript 17453 19382 0.11 + . g6.t1
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
163 scaffold1|size1992969 AUGUSTUS start_codon 17453 17455 . + 0 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
164 scaffold1|size1992969 AUGUSTUS intron 17615 17660 0.38 + . transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
165 scaffold1|size1992969 AUGUSTUS intron 17708 17772 0.54 + . transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
166 scaffold1|size1992969 AUGUSTUS intron 17902 18035 0.58 + . transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
167 scaffold1|size1992969 AUGUSTUS intron 18313 18367 0.99 + . transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
168 scaffold1|size1992969 AUGUSTUS intron 19014 19080 0.44 + . transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
169 scaffold1|size1992969 AUGUSTUS CDS 17453 17614 0.55 + 0 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
170 scaffold1|size1992969 AUGUSTUS CDS 17661 17707 0.38 + 0 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
171 scaffold1|size1992969 AUGUSTUS CDS 17773 17901 0.54 + 1 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
172 scaffold1|size1992969 AUGUSTUS CDS 18036 18312 0.52 + 1 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
173 scaffold1|size1992969 AUGUSTUS CDS 18368 19013 0.99 + 0 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
174 scaffold1|size1992969 AUGUSTUS CDS 19081 19379 0.31 + 2 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
175 scaffold1|size1992969 AUGUSTUS stop_codon 19380 19382 . + 0 transcript_id "g6.t1"; gene_id "g6";
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
176
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
177
1
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
178 **References**
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
179
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
180 Mario Stanke and Stephan Waack (2003)
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
181 Gene Prediction with a Hidden-Markov Model and a new Intron Submodel.
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
182 Bioinformatics, Vol. 19, Suppl. 2, pages ii215-ii225
5663d1a1b29c add citation
Bjoern Gruening <bjoern@gruenings.eu>
parents: 0
diff changeset
183
0
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
184
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
185 </help>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
186 </tool>