annotate roary.xml @ 8:e88a7de55d6e draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
author iuc
date Thu, 23 Sep 2021 13:08:51 +0000
parents 78608ec02d62
children 91887494eb97
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
1 <tool id="roary" name="Roary" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
2 <description>the pangenome pipeline - Quickly generate a core gene alignment from gff3 files</description>
8
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
3 <xrefs>
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
4 <xref type="bio.tools">roary</xref>
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
5 </xrefs>
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
6 <macros>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
7 <token name="@TOOL_VERSION@">3.13.0</token>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
8 <token name="@VERSION_SUFFIX@">1</token>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
9 </macros>
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
10 <requirements>
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
11 <requirement type="package" version="@TOOL_VERSION@">roary</requirement>
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
12 </requirements>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
13
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
8
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
15 #import re
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
16 #set $filenames = list()
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
17 #for $gff in $gff_input.gffs
8
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
18 #set escaped_element_identifier = re.sub('[^\w\-]', '_', str($gff.element_identifier))
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
19 ln -s '$gff' '${escaped_element_identifier}.gff' &&
e88a7de55d6e "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit fde1985c9d6860f9a03ddfd38378a5c3f5e31fcb"
iuc
parents: 7
diff changeset
20 #set $filename = str($escaped_element_identifier) + '.gff'
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
21 $filenames.append(str($filename))
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
22 #end for
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
23
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
24 roary
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
25 -f out
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
26 -p \${GALAXY_SLOTS:-1}
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
27 -e
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
28 -n
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
29 -i '$percent_ident'
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
30 -cd '$core_diff'
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
31 -g '$advanced.maxclust'
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
32 $advanced.split_para
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
33 -t '$advanced.trans_tab'
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
34 -iv '$advanced.mcl'
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
35
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
36 #for $f in $filenames
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
37 '$f'
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
38 #end for
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
39
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
40 ]]> </command>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
41
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
42 <inputs>
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
43 <conditional name="gff_input">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
44 <param name="gff_input_selector" type="select" label="Individual gff files or a dataset collection" help="Select between individual gff files or a collection of gff files">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
45 <option value="individual">Individual</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
46 <option value="collection">Collection</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
47 </param>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
48 <when value="individual">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
49 <param name="gffs" type="data" multiple="true" min="2" format="gff,gff3" label="select gff inputs to Roary" help="Select the files you wish to send to Roary, must be in gff3 format with the sequence data at the end of the file." />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
50 </when>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
51 <when value='collection'>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
52 <param name="gffs" type="data_collection" collection_type="list" format="gff,gff3" label="Dataset collection to submit to Roary" help="A dataset list collection of gff3 files to send to Roary for analysis." />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
53 </when>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
54 </conditional>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
55 <param name="percent_ident" type="integer" value="95" label="minimum percentage identity for blastp" help="Sets the minimum percentage identity for protein matches" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
56 <param name="core_diff" type="float" value="99.0" label="percentage of isolates a gene must be in to be core" help="The total percentage of the isolates that must have the gene for it to be considered a core gene." />
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
57
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
58 <param name="outputs" type="select" multiple="true" display="checkboxes" label="Additional outputs" help="Summary statistics, core gene alignments and Gene Presence/Absence tables are always produced.">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
59 <option value="abg_nw">Accessory binary genes in newick format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
60 <option value="abg_fa">Accessory binary genes in fasta format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
61 <option value="accgraph">Accessory graph in dot format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
62 <option value="acchead_embl">Accessory header file in embl format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
63 <option value="acctab">Accessory gene table in tabular format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
64 <option value="blastfreq">Blast Identity Frequency Rtab file</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
65 <option value="clust">Clustered proteins file</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
66 <option value="coreaccgraph">Core Accessory Graph in dot format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
67 <option value="coreaccembl">Core Accessory table in embl format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
68 <option value="coreacctab">Core Accessory table in tabular format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
69 <option value="genepa_rtab">Gene Presence Absence file in Rtab format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
70 <option value="numcons_rtab">Number of Conserved Genes in Rtab format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
71 <option value="numpangene_rtab">Number of Genes in Pan Genome in Rtab format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
72 <option value="numnew_rtab">Number of New Genes in Rtab format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
73 <option value="numuniq_rtab">Number of Unique Genes in Rtab format</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
74 <option value="pangenomeref">FASTA file which contains a single representative nucleotide sequence from each of the clusters in the pan genome (core and accessory)</option>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
75 </param>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
76
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
77 <section name="advanced" title="Advanced options" expanded="false">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
78 <param name="maxclust" type="integer" value="50000" label="Maximum number of clusters" help="The maximum number of clusters to assign proteins" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
79 <param name="split_para" type="boolean" checked="False" truevalue="-s" falsevalue="" label="Don't split paralogs" help="Click yes so that paralogs aren't split." />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
80 <param name="trans_tab" type="integer" value="11" label="Translation table to use [1 or 4 or 11]" help="DNA -> RNA translation table to use. Roary is designed for prokaryotes and so tables 1, 4 or 11 will work, others could be problematic." />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
81 <param name="mcl" type="float" value="1.5" label="MCL inflation value" help="This is an advanced setting, change only if you know what you are doing and then at your own risk!" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
82 </section>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
83
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
84 </inputs>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
85
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
86 <outputs>
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
87 <data format="tabular" name="sumstats" label="${tool.name} on ${on_string} Summary statistics" from_work_dir="out/summary_statistics.txt" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
88 <data format="fasta" name="core_gene_aln" label="${tool.name} on ${on_string} Core Gene Alignment" from_work_dir="out/core_gene_alignment.aln" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
89 <data format="csv" name="gene_p_a" label="${tool.name} on ${on_string} Gene Presence Absence" from_work_dir="out/gene_presence_absence.csv" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
90 <data format="fasta" name="acc_bin" label="${tool.name} on ${on_string} Accessory Binary Genes" from_work_dir="out/accessory_binary_genes.fa">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
91 <filter>outputs and 'abg_fa' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
92 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
93 <data format="nhx" name="acc_bin_new" label="${tool.name} on ${on_string} Accessory Binary Genes (Newick)" from_work_dir="out/accessory_binary_genes.fa.newick">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
94 <filter>outputs and 'abg_nw' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
95 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
96 <data format="dot" name="acc_graph" label="${tool.name} on ${on_string} Acsessory Graph" from_work_dir="out/accessory_graph.dot">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
97 <filter>outputs and 'accgraph' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
98 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
99 <data format="embl" name="acc_head_embl" label="${tool.name} on ${on_string} Accessory Header" from_work_dir="out/accessory.header.embl">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
100 <filter>outputs and 'acchead_embl' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
101 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
102 <data format="tabular" name="acc_tab" label="${tool.name} on ${on_string} Accessory Gene Table" from_work_dir="out/accessory.tab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
103 <filter>outputs and 'acctab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
104 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
105 <data format="txt" name="blast_freq" label="${tool.name} on ${on_string} Blast Identity Frequencies" from_work_dir="out/blast_identity_frequency.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
106 <filter>outputs and 'blastfreq' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
107 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
108 <data format="txt" name="clust_file" label="${tool.name} on ${on_string} Clustered Proteins" from_work_dir="out/clustered_proteins">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
109 <filter>outputs and 'clust' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
110 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
111 <data format="dot" name="core_acc_graph" label="${tool.name} on ${on_string} Core Accessory Graph" from_work_dir="out/core_accessory_graph.dot">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
112 <filter>outputs and 'coreaccgraph' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
113 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
114 <data format="embl" name="core_acc_embl" label="${tool.name} on ${on_string} Core Accessory EMBL" from_work_dir="out/core_accessory.header.embl">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
115 <filter>outputs and 'coreaccembl' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
116 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
117 <data format="tabular" name="core_acc_tab" label="${tool.name} on ${on_string} Core Accessory Table" from_work_dir="out/core_accessory.tab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
118 <filter>outputs and 'coreacctab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
119 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
120 <data format="txt" name="gene_p_a_rtab" label="${tool.name} on ${on_string} Gene Presence Absence Rtab" from_work_dir="out/gene_presence_absence.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
121 <filter>outputs and 'genepa_rtab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
122 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
123 <data format="txt" name="num_cons_rtab" label="${tool.name} on ${on_string} Number of Conserved Genes" from_work_dir="out/number_of_conserved_genes.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
124 <filter>outputs and 'numcons_rtab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
125 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
126 <data format="txt" name="num_pangene_rtab" label="${tool.name} on ${on_string} Number of Genes in Pan Geneome" from_work_dir="out/number_of_genes_in_pan_genome.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
127 <filter>outputs and 'numpangene_rtab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
128 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
129 <data format="txt" name="num_new_rtab" label="${tool.name} on ${on_string} Number of New Genes" from_work_dir="out/number_of_new_genes.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
130 <filter>outputs and 'numnew_rtab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
131 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
132 <data format="txt" name="num_uniq_rtab" label="${tool.name} on ${on_string} Number of Unique Genes" from_work_dir="out/number_of_unique_genes.Rtab">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
133 <filter>outputs and 'numuniq_rtab' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
134 </data>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
135 <data format="fasta" name="pan_genome_ref" label="${tool.name} on ${on_string} pan-genome reference" from_work_dir="out/pan_genome_reference.fa">
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
136 <filter>outputs and 'pangenomeref' in outputs</filter>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
137 </data>
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
138 </outputs>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
139
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
140 <tests>
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
141 <test>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
142 <param name="gff_input_selector" value="individual" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
143 <param name="gffs" value="ex1.gff,ex2.gff" ftype="gff3" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
144 <output name="sumstats" file="out/summary_statistics.txt" ftype="tabular" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
145 </test>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
146 <test>
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
147 <param name="gff_input_selector" value="individual" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
148 <param name="gffs" value="ex1.gff,ex2.gff" ftype="gff3" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
149 <param name="percent_ident" value="50" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
150 <param name="core_diff" value="50.0" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
151 <output name="sumstats" file="test2/summary_statistics.txt" ftype="tabular" />
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
152 </test>
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
153 </tests>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
154
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
155 <help><![CDATA[
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
156 **Roary**
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
157
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
158 Roary is a high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka) and calculates the pan genome. Using a standard desktop PC, it can analyse datasets with thousands of samples, something which is computationally infeasible with existing methods, without compromising the quality of the results. 128 samples can be analysed in under 1 hour using 1 GB of RAM and a single processor. To perform this analysis using existing methods would take weeks and hundreds of GB of RAM.
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
159
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
160 To use Roary, select two or more gff3 files OR a collection of gff3 files
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
161
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
162 **Options**:
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
163
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
164
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
165 - Minimum percentage identity for blastp - an integer, default is [95]
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
166
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
167
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
168 - Percentage of isolates a gene must be in to be core - a float, default is [99.0]
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
169
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
170
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
171 **Advanced Options**:
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
172
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
173 - Maximum number of clusters - integer, default is [50000]
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
174
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
175
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
176 - Don't split paralogs - check box
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
177
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
178
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
179 - Translation table - which translation table to use, an integer, default is [11]
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
180
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
181
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
182 - Change the MCL inflation value - a float, default is [1.5]
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
183
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
184
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
185 For further info see: http://sanger-pathogens.github.io/Roary/
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
186
7
78608ec02d62 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 442b1247ee31ec9872633be18784f346e4762486"
iuc
parents: 6
diff changeset
187 ]]> </help>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
188
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
189 <citations>
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
190 <citation type="doi">10.1093/bioinformatics/btv421</citation>
0
e02e9af2743f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff changeset
191 </citations>
4
809e42326fc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit d2e1ee6304af1062175ca87aab59c4042ace3116"
iuc
parents: 3
diff changeset
192
3
15ca041134a9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 9c9db9f5e815e6a9b55c4adf378c7aa6a76a58da"
iuc
parents: 2
diff changeset
193 </tool>