annotate mitos.xml @ 1:52742626480e draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 704a9315c33b3ed0881dd0f4132de1e61994c2c7"
author iuc
date Fri, 27 Mar 2020 17:57:42 -0400
parents 39b6485e2d34
children 1f4933f5a323
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
1 <tool id="mitos" name="@MITOS_NAME@" version="@MITOS_VERSION@" profile="20.01">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
2 <description>de-novo annotation of metazoan mitochondrial genomes</description>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
3 <macros>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
5 <token name="@MITOS_NAME@">MITOS</token>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
6 <token name="@MITOS_VERSION@">1.0.5</token>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
7 </macros>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
8 <requirements>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
9 <requirement type="package" version="@MITOS_VERSION@">mitos</requirement>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
10 <requirement type="package">zip</requirement>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
11 </requirements>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
12 <version_command>python -c "import mitos; print(mitos.__version__)"</version_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
13 <command detect_errors="aggressive"><![CDATA[
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
14 mkdir outdir &&
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
15
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
16 runmitos.py
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
17 --input '$input'
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
18 --code $code
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
19 --outdir outdir
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
20 --refdir '$refdir.fields.path'
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
21 #for tpe in ["prot", "trna", "rrna"]
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
22 #if not $tpe in str($advanced.featuretypes).split(',')
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
23 --no$tpe
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
24 #end if
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
25 #end for
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
26 --finovl $advanced.finovl
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
27 --evalue $advanced_prot.evalue
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
28 --cutoff $advanced_prot.cutoff
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
29 #set maxovl=float($advanced_prot.maxovl)/100.0
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
30 --maxovl $maxovl
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
31 --clipfac $advanced_prot.clipfac
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
32 #set fragovl=float($advanced_prot.fragovl)/100.0
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
33 --fragovl $fragovl
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
34 --fragfac $advanced_prot.fragfac
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
35 --ststrange $advanced_prot.ststrange
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
36
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
37 #if "raw" in str($addoutputs).split(','):
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
38 && zip -9 -y -r output.zip outdir/ > /dev/null
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
39 #end if
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
40 ]]></command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
41 <inputs>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
42 <param argument="--input" label="sequence" type="data" format="fasta" help="a single sequence in fasta formated sequence">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
43 <options options_filter_attribute="metadata.sequences">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
44 <filter type="add_value" value="1"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
45 </options>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
46 </param>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
47 <param argument="--code" label="Genetic code" type="select">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
48 <option value="2">Vertebrate (2)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
49 <option value="4">Mold, Protozoan, Coelenteral (4)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
50 <option value="5">Invertebrate (5)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
51 <option value="9">Echinoderm, Flatworm (9)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
52 <option value="13">Ascidian (13)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
53 <option value="14">Alternative Flatworm (14)</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
54 </param>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
55 <param argument="--refdir" label="Reference data" type="select" help="contact the administrator of this Galaxy instance if you miss reference data">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
56 <options from_data_table="mitos">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
57 <filter type="static_value" value="mitos" column="2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
58 </options>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
59 <validator message="No reference annotation is available for MITOS" type="no_options" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
60 </param>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
61 <param name="addoutputs" type="select" multiple="true" label="Outputs">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
62 <option value="bed" selected="true">BED</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
63 <option value="mito" selected="false">mito</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
64 <option value="gff" selected="false">GFF file</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
65 <option value="seq" selected="false">SEQ</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
66 <option value="fas" selected="false">nucleotide FASTA</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
67 <option value="faa" selected="false">protein FASTA</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
68 <option value="geneorder" selected="false">geneorder</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
69 <option value="protein_plot" selected="false">Protein prediction plot</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
70 <option value="ncRNA_plot" selected="false">ncRNA prediction plot</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
71 <!--<option value="ncRNA_structure_ps_plots" selected="false">ncRNA structure plots - postscript</option>-->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
72 <option value="ncRNA_structure_svg_plots" selected="false">ncRNA structure plots - svg</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
73 <option value="raw" selected="false">zipped raw results</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
74 </param>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
75 <section name="advanced" title="Advanced options">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
76 <param name="featuretypes" label="Feature types" help="Feature types that should be predicted by MITOS (--noprot,--notrna,--norrna)" type="select" multiple="true">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
77 <option value="prot" selected="true">Protein coding genes</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
78 <option value="trna" selected="true">tRNAs</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
79 <option value="rrna" selected="true">rRNAs</option>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
80 </param>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
81 <param argument="--finovl" label="Final overlap (nt)" help="Maximum number of nucleotides by which genes of different types may overlap" type="integer" value="35" min="0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
82 </section>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
83 <section name="advanced_prot" title="Advanced options for protein coding gene prediction">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
84 <param argument="--evalue" label="BLAST E-value Exponent" help="Negation of the exponent of the E-value threshold used by BLAST, i.e. a value X gives an E-value of 10^(-X)" type="float" value="2" min="0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
85 <param argument="--cutoff" label="Quality cutoff" help="Minimum allowed quality in % of the maximum quality value per reading frame" type="integer" value="50" min="0" max="100"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
86 <param argument="--maxovl" label="Maximum overlap" help="Maximum allowed overlap of proteins in percent of the smaller feature " type="integer" value="20" min="0" max="100"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
87 <param argument="--clipfac" label="Clipping factor" help="Clip overlapping proteins with the same name that differ by less than the specified factor" type="float" value="10" min="0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
88 <param argument="--fragovl" label="Fragment overlap" help="Maximum allowed overlap of proteins in the query (in percent of the shorter query range) for two hits to be counted as fragments of the same gene" type="integer" value="20" min="0" max="100"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
89 <param argument="--fragfac" label="Fragment quality factor" help="Maximum factor by which fragments of the same protein may differ in their quality" type="float" value="10"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
90 <param argument="--ststrange" label="Start/stop range" help="Number of aminoacids searched for start and stop codon of proteins" type="integer" value="6"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
91 </section>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
92 </inputs>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
93 <outputs>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
94 <data name="bedout" format="bed" from_work_dir="outdir/result.bed">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
95 <filter>"bed" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
96 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
97 <data name="mitoout" format="tabular" from_work_dir="outdir/result" label="${tool.name} on ${on_string}: mito">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
98 <filter>"mito" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
99 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
100 <data name="gffout" format="gff" from_work_dir="outdir/result.gff" label="${tool.name} on ${on_string}: GFF">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
101 <filter>"gff" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
102 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
103 <data name="seqout" format="txt" from_work_dir="outdir/result.seq" label="${tool.name} on ${on_string}: TBL">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
104 <filter>"seq" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
105 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
106 <data name="fasout" format="fasta" from_work_dir="outdir/result.fas" label="${tool.name} on ${on_string}: nt FASTA">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
107 <filter>"fas" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
108 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
109 <data name="faaout" format="fasta" from_work_dir="outdir/result.faa" label="${tool.name} on ${on_string}: aa FASTA">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
110 <filter>"faa" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
111 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
112 <data name="geneorderout" format="fasta" from_work_dir="outdir/result.geneorder" label="${tool.name} on ${on_string}: geneorder">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
113 <filter>"geneorder" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
114 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
115 <data name="protein_plot_out" format="pdf" from_work_dir="outdir/plots/prot.pdf" label="${tool.name} on ${on_string}: Protein prediction plot">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
116 <filter>"protein_plot" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
117 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
118 <data name="ncRNA_plot_out" format="pdf" from_work_dir="outdir/plots/rna.pdf" label="${tool.name} on ${on_string}: ncRNA prediction plot">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
119 <filter>"protein_plot" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
120 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
121 <!--<collection name="ncRNA_structure_plot_ps_out" type="list" label="${tool.name} on ${on_string}: ncRNA postscript structure plots">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
122 <discover_datasets pattern="(?P&lt;name&gt;.+)\.ps" format="ps" directory="outdir/plots" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
123 <filter>"ncRNA_structure_ps_plots" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
124 </collection>-->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
125 <collection name="ncRNA_structure_plot_svg_out" type="list" label="${tool.name} on ${on_string}: ncRNA svg structure plots">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
126 <discover_datasets pattern="(?P&lt;name&gt;.+)\.svg" format="svg" directory="outdir/plots" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
127 <filter>"ncRNA_structure_svg_plots" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
128 </collection>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
129 <data name="rawout" format="zip" from_work_dir="output.zip" label="${tool.name} on ${on_string}: raw data">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
130 <filter>"raw" in str(addoutputs)</filter>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
131 </data>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
132 </outputs>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
133 <tests>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
134 <!-- default options -->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
135 <test expect_num_outputs="1">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
136 <param name="input" value="NC_012920.fasta"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
137 <param name="code" value="2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
138 <param name="refdir" value="mitos1-refdata" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
139 <output name="bedout" file="NC_012920.bed" ftype="bed"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
140 <assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
141 <has_text text="--code 2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
142 <has_text text="--finovl 35"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
143 <has_text text="--evalue 2.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
144 <has_text text="--cutoff 50"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
145 <has_text text="--maxovl 0.2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
146 <has_text text="--clipfac 10.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
147 <has_text text="--fragovl 0.2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
148 <has_text text="--fragfac 10.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
149 <has_text text="--ststrange 6"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
150 </assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
151 </test>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
152 <!-- default options, add outputs -->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
153 <test expect_num_outputs="11">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
154 <param name="input" value="NC_012920.fasta"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
155 <param name="code" value="2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
156 <param name="refdir" value="mitos1-refdata" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
157 <param name="addoutputs" value="bed,mito,gff,seq,fas,faa,raw,geneorder,protein_plot,ncRNA_plot,ncRNA_structure_svg_plots"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
158 <output name="bedout" file="NC_012920.bed" ftype="bed"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
159 <output name="mitoout" file="NC_012920.mito" ftype="tabular" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
160 <output name="gffout" file="NC_012920.gff" ftype="gff" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
161 <output name="seqout" file="NC_012920.seq" ftype="txt" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
162 <output name="fasout" file="NC_012920.fas" ftype="fasta" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
163 <output name="faaout" file="NC_012920.faa" ftype="fasta" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
164 <output name="rawout" ftype="zip">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
165 <assert_contents>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
166 <has_archive_member path=".*/result.bed"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
167 </assert_contents>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
168 </output>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
169 <output name="geneorderout" file="NC_012920.geneorder" ftype="fasta" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
170 <output name="protein_plot_out" file="NC_012920_prot.pdf" ftype="pdf" compare="sim_size"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
171 <output name="ncRNA_plot_out" file="NC_012920_ncrna.pdf" ftype="pdf" compare="sim_size"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
172 <output_collection name="ncRNA_structure_plot_svg_out" type="list" count="24">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
173 <element name="trnA-5586-5654" file="NC_012920_trnA.svg" ftype="svg" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
174 </output_collection>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
175 <assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
176 <has_text text="--code 2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
177 <has_text text="--finovl 35"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
178 <has_text text="--evalue 2.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
179 <has_text text="--cutoff 50"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
180 <has_text text="--maxovl 0.2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
181 <has_text text="--clipfac 10.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
182 <has_text text="--fragovl 0.2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
183 <has_text text="--fragfac 10.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
184 <has_text text="--ststrange 6"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
185 </assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
186 </test>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
187 <!-- no rRNA, and advanced options -->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
188 <test expect_num_outputs="1">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
189 <param name="input" value="NC_012920.fasta"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
190 <param name="code" value="2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
191 <param name="refdir" value="mitos1-refdata" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
192 <param name="advanced|featuretypes" value="prot,trna" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
193 <param name="advanced|finovl" value="50" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
194 <output name="bedout" file="NC_012920.bed" ftype="bed" compare="sim_size"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
195 <assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
196 <has_text text="--code 2"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
197 <has_text text="--norrna"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
198 <has_text text="--finovl 50"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
199 </assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
200 </test>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
201 <!-- no rRNA, no tRNA; advanced protein options -->
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
202 <test expect_num_outputs="1">
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
203 <param name="input" value="NC_012920.fasta"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
204 <param name="code" value="5"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
205 <param name="refdir" value="mitos1-refdata" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
206 <param name="advanced|featuretypes" value="prot" />
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
207 <param name="advanced_prot|evalue" value="3"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
208 <param name="advanced_prot|cutoff" value="40"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
209 <param name="advanced_prot|maxovl" value="30"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
210 <param name="advanced_prot|clipfac" value="5"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
211 <param name="advanced_prot|fragovl" value="15"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
212 <param name="advanced_prot|fragfac" value="11"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
213 <param name="advanced_prot|ststrange" value="12"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
214 <param name="addoutputs" value="bed"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
215 <output name="bedout" file="NC_012920.bed" ftype="bed" compare="sim_size"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
216 <assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
217 <has_text text="--code 5"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
218 <has_text text="--evalue 3"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
219 <has_text text="--cutoff 40"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
220 <has_text text="--maxovl 0.3"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
221 <has_text text="--clipfac 5.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
222 <has_text text="--fragovl 0.15"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
223 <has_text text="--fragfac 11.0"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
224 <has_text text="--ststrange 12"/>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
225 </assert_command>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
226 </test>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
227 </tests>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
228 <help>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
229 @COMMON_HELP@
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
230 <![CDATA[
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
231 ]]></help>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
232 <citations>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
233 <citation type="doi">10.1016/j.ympev.2012.08.023</citation>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
234 </citations>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
235 </tool>
39b6485e2d34 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos commit 791f28c8a7194fdd1ecec05ad166932d461899b2"
iuc
parents:
diff changeset
236