Mercurial > repos > iuc > roary
annotate roary.xml @ 0:4a9dca0bbed3 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
| author | iuc |
|---|---|
| date | Fri, 23 Jun 2017 07:53:14 -0400 |
| parents | |
| children | 70c9cb0e2791 |
| rev | line source |
|---|---|
|
0
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
1 <tool id="roary" name="Roary" version="0.1.0"> |
|
4a9dca0bbed3
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> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
3 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
4 <requirements> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
5 <requirement type="package" version="3.8.2">roary</requirement> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
6 </requirements> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
7 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
9 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
10 #for $counter, $gff in enumerate($gff_input.gffs) |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
11 cp $gff temp${counter}.gff && |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
12 #end for |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
13 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
14 roary |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
15 -f out |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
16 -p \${GALAXY_SLOTS:-1} |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
17 -e |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
18 -n |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
19 -i '$percent_ident' |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
20 -cd '$core_diff' |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
21 -g '$advanced.maxclust' |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
22 $advanced.split_para |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
23 -t '$advanced.trans_tab' |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
24 -iv '$advanced.mcl' |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
25 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
26 temp*.gff |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
27 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
28 ]]></command> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
29 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
30 <inputs> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
31 <conditional name="gff_input"> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
32 <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"> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
33 <option value="individual">Individual</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
34 <option value="collection">Collection</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
35 </param> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
36 <when value="individual"> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
37 <param name="gffs" type="data" multiple="true" format="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." /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
38 </when> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
39 <when value='collection'> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
40 <param name="gffs" type="data_collection" collection_type="list" format="gff3" label="Dataset collection to submit to Roary" help="A dataset list collection of gff3 files to send to Roary for analysis." /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
41 </when> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
42 </conditional> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
43 <param name="percent_ident" type="integer" label="minimum percentage identity for blastp" help="Sets the minimum percentage identity for protein matches" value="95"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
44 <param name="core_diff" type="float" 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." value="99.0"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
45 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
46 <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."> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
47 <option value="abg_fa">Accessory binary genes in fasta format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
48 <option value="accgraph">Accessory graph in dot format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
49 <option value="acchead_embl">Accessory header file in embl format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
50 <option value="acctab">Accessory gene table in tabular format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
51 <option value="blastfreq">Blast Identity Frequency Rtab file</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
52 <option value="clust">Clustered proteins file</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
53 <option value="coreaccgraph">Core Accessory Graph in dot format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
54 <option value="coreaccembl">Core Accessory table in embl format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
55 <option value="coreacctab">Core Accessory table in tabular format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
56 <option value="genepa_rtab">Gene Presence Absence file in Rtab format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
57 <option value="numcons_rtab">Number of Conserved Genes in Rtab format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
58 <option value="numpangene_rtab">Number of Genes in Pan Genome in Rtab format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
59 <option value="numnew_rtab">Number of New Genes in Rtab format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
60 <option value="numuniq_rtab">Number of Unique Genes in Rtab format</option> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
61 </param> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
62 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
63 <section name="advanced" title="Advanced options" expanded="false"> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
64 <param name="maxclust" type="integer" value="50000" label="Maximum number of clusters" help="The maximum number of clusters to assign proteins" /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
65 <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."/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
66 <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." /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
67 <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!" /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
68 </section> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
69 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
70 </inputs> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
71 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
72 <outputs> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
73 <data format="tabular" name="sumstats" label="${tool.name} on ${on_string} Summary statistics" from_work_dir="out/summary_statistics.txt" /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
74 <data format="fasta" name="core_gene_aln" label="${tool.name} on ${on_string} Core Gene Alignment" from_work_dir="out/core_gene_alignment.aln" /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
75 <data format="csv" name="gene_p_a" label="${tool.name} on ${on_string} Gene Presence Absence" from_work_dir="out/gene_presence_absence.csv" /> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
76 <data format="fasta" name="acc_bin" label="${tool.name} on ${on_string} Accessory Binary Genes" from_work_dir="out/accessory_binary_genes.fa" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
77 <filter>outputs and 'abg_fa' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
78 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
79 <data format="dot" name="acc_graph" label="${tool.name} on ${on_string} Acsessory Graph" from_work_dir="out/accessory_graph.dot"> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
80 <filter>outputs and 'accgraph' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
81 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
82 <data format="embl" name="acc_head_embl" label="${tool.name} on ${on_string} Accessory Header" from_work_dir="out/accessory.header.embl" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
83 <filter>outputs and 'acchead_embl' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
84 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
85 <data format="tabular" name="acc_tab" label="${tool.name} on ${on_string} Accessory Gene Table" from_work_dir="out/accessory.tab" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
86 <filter>outputs and 'acctab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
87 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
88 <data format="txt" name="blast_freq" label="${tool.name} on ${on_string} Blast Identity Frequencies" from_work_dir="out/blast_identity_frequency.Rtab" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
89 <filter>outputs and 'blastfreq' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
90 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
91 <data format="txt" name="clust_file" label="${tool.name} on ${on_string} Clustered Proteins" from_work_dir="out/clustered_proteins" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
92 <filter>outputs and 'clust' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
93 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
94 <data format="dot" name="core_acc_graph" label="${tool.name} on ${on_string} Core Accessory Graph" from_work_dir="out/core_accessory_graph.dot" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
95 <filter>outputs and 'coreaccgraph' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
96 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
97 <data format="embl" name="core_acc_embl" label="${tool.name} on ${on_string} Core Accessory EMBL" from_work_dir="out/core_accessory.header.embl" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
98 <filter>outputs and 'coreaccembl' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
99 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
100 <data format="tabular" name="core_acc_tab" label="${tool.name} on ${on_string} Core Accessory Table" from_work_dir="out/core_accessory.tab" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
101 <filter>outputs and 'coreacctab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
102 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
103 <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" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
104 <filter>outputs and 'genepa_rtab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
105 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
106 <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" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
107 <filter>outputs and 'numcons_rtab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
108 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
109 <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" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
110 <filter>outputs and 'numpangene_rtab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
111 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
112 <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" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
113 <filter>outputs and 'numnew_rtab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
114 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
115 <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" > |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
116 <filter>outputs and 'numuniq_rtab' in outputs</filter> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
117 </data> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
118 </outputs> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
119 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
120 <tests> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
121 <test> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
122 <param name="gff_input_selector" value="individual"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
123 <param name="gffs" value="ex1.gff,ex2.gff" ftype="gff3"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
124 <output name="sumstats" file="out/summary_statistics.txt" ftype="tabular"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
125 </test> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
126 <test> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
127 <param name="gff_input_selector" value="individual"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
128 <param name="gffs" value="ex1.gff,ex2.gff" ftype="gff3"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
129 <param name="percent_ident" value="50"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
130 <param name="core_diff" value="50.0"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
131 <output name="sumstats" file="test2/summary_statistics.txt" ftype="tabular"/> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
132 </test> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
133 </tests> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
134 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
135 <help><![CDATA[ |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
136 **Roary** |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
137 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
138 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. |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
139 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
140 To use Roary, select two or more gff3 files OR a collection of gff3 files |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
141 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
142 **Options**: |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
143 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
144 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
145 - Minimum percentage identity for blastp - an integer, default is [95] |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
146 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
147 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
148 - Percentage of isolates a gene must be in to be core - a float, default is [99.0] |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
149 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
150 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
151 **Advanced Options**: |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
152 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
153 - Maximum number of clusters - integer, default is [50000] |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
154 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
155 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
156 - Don't split paralogs - check box |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
157 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
158 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
159 - Translation table - which translation table to use, an integer, default is [11] |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
160 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
161 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
162 - Change the MCL inflation value - a float, default is [1.5] |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
163 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
164 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
165 For further info see: http://sanger-pathogens.github.io/Roary/ |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
166 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
167 ]]></help> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
168 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
169 <citations> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
170 <citation type="doi">http://doi.org/10.1093/bioinformatics/btv421</citation> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
171 </citations> |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
172 |
|
4a9dca0bbed3
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary commit 1fbe605d5ac8fd5d91fec6fb24fcfc51788c62b6
iuc
parents:
diff
changeset
|
173 </tool> |
