comparison glimmerHMM/glimmerhmm_predict.xml @ 0:c9699375fcf6 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm commit 0dc67759bcbdf5a8a285ded9ba751340d741fe63
author bgruening
date Wed, 13 Jul 2016 10:55:48 -0400
parents
children 4da91bb244dc
comparison
equal deleted inserted replaced
-1:000000000000 0:c9699375fcf6
1 <tool id="glimmerhmm_predict" name="GlimmerHMM" version="2.0">
2 <description>Predict ORFs in eukaryotic genomes</description>
3 <command detect_errors="exit_code"><![CDATA[
4 glimmerhmm
5 $input $trained_specie.fields.path
6 -o $output
7 -g
8 $svm_splice_prediction
9 $partial_gene
10 #if str($top_n_predictions) != "-1":
11 -n $top_n_predictions
12 #end if
13 ]]></command>
14 <inputs>
15 <param name="input" type="data" format="fasta" label="Genome Sequence"/>
16 <param name="trained_specie" type="select" label="Select a specie">
17 <options from_data_table="glimmer_hmm_trained_dir">
18 <filter type="sort_by" column="2"/>
19 <validator type="no_options" message="No indexes are available"/>
20 </options>
21 </param>
22 <param name="partial_gene" type="boolean" label="Don't make partial gene predictions" truevalue="-f" falsevalue="" checked="false" />
23 <param name="svm_splice_prediction" type="boolean" label="Don't use svm splice site predictions" truevalue="-v" falsevalue="" checked="false" />
24 <param name="top_n_predictions" type="integer" label="top n best predictions, -1 means infinite" value="-1"/>
25 </inputs>
26 <outputs>
27 <data format="gff3" name="output" />
28 </outputs>
29 <help>
30
31 **What it does**
32
33 GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM).
34 Although the gene finder conforms to the overall mathematical framework of a GHMM,
35 additionally it incorporates splice site models adapted from the GeneSplicer program and a
36 decision tree adapted from GlimmerM. It also utilizes Interpolated Markov Models for the
37 coding and noncoding models . Currently, GlimmerHMM's GHMM structure includes introns of each phase,
38 intergenic regions, and four types of exons (initial, internal, final, and single).
39 A basic user manual can be consulted here.
40
41 -----
42
43 **Example**
44
45 Suppose you have the following DNA formatted sequences::
46
47 >SQ Sequence 8667507 BP; 1203558 A; 3121252 C; 3129638 G; 1213059 T; 0 other;
48 cccgcggagcgggtaccacatcgctgcgcgatgtgcgagcgaacacccgggctgcgcccg
49 ggtgttgcgctcccgctccgcgggagcgctggcgggacgctgcgcgtcccgctcaccaag
50 cccgcttcgcgggcttggtgacgctccgtccgctgcgcttccggagttgcggggcttcgc
51 cccgctaaccctgggcctcgcttcgctccgccttgggcctgcggcgggtccgctgcgctc
52 ccccgcctcaagggcccttccggctgcgcctccaggacccaaccgcttgcgcgggcctgg
53
54 Running this tool will produce this::
55
56 ##gff-version 3
57 ##sequence-region ConsensusfromCH236920mapping 1 4148552
58 ConsensusfromCH236920mapping GlimmerHMM mRNA 1 122 . + . ID=ConsensusfromCH236920mapping.path1.gene1;Name=ConsensusfromCH236920mapping.path1.gene1
59 ConsensusfromCH236920mapping GlimmerHMM CDS 1 122 . + 0 ID=ConsensusfromCH236920mapping.cds1.1;
60 ConsensusfromCH236920mapping GlimmerHMM mRNA 14066 15205 . - . ID=ConsensusfromCH236920mapping.path1.gene2;Name=ConsensusfromCH236920mapping.path1.gene2
61 ConsensusfromCH236920mapping GlimmerHMM CDS 14066 15034 . - 0 ID=ConsensusfromCH236920mapping.cds2.1;
62 ConsensusfromCH236920mapping GlimmerHMM CDS 15137 15205 . - 0 ID=ConsensusfromCH236920mapping.cds2.2;
63 ConsensusfromCH236920mapping GlimmerHMM mRNA 19910 24210 . - . ID=ConsensusfromCH236920mapping.path1.gene3;Name=ConsensusfromCH236920mapping.path1.gene3
64
65 </help>
66 </tool>