annotate data_manager/ariba_database_builder.xml @ 8:fb4da292b6d0 draft

planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
author thanhlv
date Sun, 19 May 2019 09:09:24 -0400
parents 8a442938a61a
children 218301fbbb99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
1 <?xml version="1.0"?>
7
8a442938a61a planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 6
diff changeset
2 <tool id="ariba_database_builder" name="ARIBA" tool_type="manage_data" version="@VERSION@">
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
3 <description>database builder</description>
6
6286fb2cadf5 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 4
diff changeset
4 <macros>
6286fb2cadf5 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 4
diff changeset
5 <import>macros.xml</import>
6286fb2cadf5 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 4
diff changeset
6 </macros>
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
7 <expand macro="requirements" />
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
8 <version_command>ariba version | head head -n 1</version_command>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
9 <command detect_errors="exit_code">
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
10 <![CDATA[
7
8a442938a61a planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 6
diff changeset
11 #if str($library.lib_type) != "fasta"
8
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
12 python '$__tool_directory__/ariba_database_builder.py' '${out_file}' -t $library.lib_type -d $library.db
7
8a442938a61a planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 6
diff changeset
13 #else
8
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
14 python '$__tool_directory__/ariba_database_builder.py' '${out_file}' -t $library.lib_type -d $library.db -c $library.coding -f $library.fasta
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
15 #end if
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
16 ]]>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
17 </command>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
18 <inputs>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
19 <conditional name="library">
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
20 <param name="lib_type" type="select" label="Input reads type or collection" help="Select a curated database or a fasta from the history">
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
21 <option value="curated" selected="true">Curated Database</option>
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
22 <option value="mlst" selected="true">MLST</option>
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
23 <option value="fasta">A fasta file</option>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
24 </param>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
25 <when value="curated">
8
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
26 <param name="db" type="select" multiple="false" label="Select partial library to download">
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
27 <option value="card">CARD</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
28 <option value="resfinder">Resfinder</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
29 <option value="plasmidfinder">Plasmidfinder</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
30 <option value="megares">Megares</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
31 <option value="argannot">Argannot</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
32 <option value="vfdb_core">vfdb_core</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
33 <option value="vfdb_full">vfdb_full</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
34 <option value="virulencefinder">virulencefinder</option>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
35 </param>
fb4da292b6d0 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 7
diff changeset
36 </when>
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
37 <when value="mlst">
7
8a442938a61a planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 6
diff changeset
38 <param name="db" type="select" multiple="false" label="Select a species">
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
39 <option value="achs">Achromobacter spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
40 <option value="acib1">Acinetobacter baumannii#1</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
41 <option value="acib2">Acinetobacter baumannii#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
42 <option value="aers">Aeromonas spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
43 <option value="anap">Anaplasma phagocytophilum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
44 <option value="arcs">Arcobacter spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
45 <option value="aspf">Aspergillus fumigatus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
46 <option value="bacc">Bacillus cereus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
47 <option value="bacl">Bacillus licheniformis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
48 <option value="bacs">Bacillus subtilis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
49 <option value="barb">Bartonella bacilliformis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
50 <option value="barh">Bartonella henselae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
51 <option value="bors">Bordetella spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
52 <option value="borr">Borrelia spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
53 <option value="brah">Brachyspira hampsonii</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
54 <option value="brach">Brachyspira hyodysenteriae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
55 <option value="brai">Brachyspira intermedia</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
56 <option value="brap">Brachyspira pilosicoli</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
57 <option value="bras">Brachyspira spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
58 <option value="brus">Brucella spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
59 <option value="bucc">Burkholderia cepacia complex</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
60 <option value="burp">Burkholderia pseudomallei</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
61 <option value="camc">Campylobacter concisus/curvus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
62 <option value="camf">Campylobacter fetus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
63 <option value="camh">Campylobacter helveticus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
64 <option value="rlis">Campylobacter hyointestinalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
65 <option value="cami">Campylobacter insulaenigrae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
66 <option value="camj">Campylobacter jejuni</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
67 <option value="caml">Campylobacter lanienae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
68 <option value="rari">Campylobacter lari</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
69 <option value="cams">Campylobacter sputorum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
70 <option value="camu">Campylobacter upsaliensis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
71 <option value="cana">Candida albicans</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
72 <option value="cang">Candida glabrata</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
73 <option value="cank">Candida krusei</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
74 <option value="cant">Candida tropicalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
75 <option value="cals">Candidatus Liberibacter solanacearum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
76 <option value="carm">Carnobacterium maltaromaticum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
77 <option value="chls">Chlamydiales spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
78 <option value="citf">Citrobacter freundii</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
79 <option value="clos">Clonorchis sinensis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
80 <option value="clob">Clostridium botulinum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
81 <option value="clod">Clostridium difficile</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
82 <option value="mcum">Clostridium septicum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
83 <option value="cord">Corynebacterium diphtheriae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
84 <option value="cros">Cronobacter spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
85 <option value="dicn">Dichelobacter nodosus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
86 <option value="edws">Edwardsiella spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
87 <option value="entc">Enterobacter cloacae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
88 <option value="entf">Enterococcus faecalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
89 <option value="sium">Enterococcus faecium</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
90 <option value="escc1">Escherichia coli#1</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
91 <option value="escc2">Escherichia coli#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
92 <option value="flap">Flavobacterium psychrophilum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
93 <option value="gala">Gallibacterium anatis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
94 <option value="haei">Haemophilus influenzae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
95 <option value="haep">Haemophilus parasuis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
96 <option value="helc">Helicobacter cinaedi</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
97 <option value="help">Helicobacter pylori</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
98 <option value="hels">Helicobacter suis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
99 <option value="kink">Kingella kingae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
100 <option value="klea">Klebsiella aerogenes</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
101 <option value="kleo">Klebsiella oxytoca</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
102 <option value="klep">Klebsiella pneumoniae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
103 <option value="kuds">Kudoa septempunctata</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
104 <option value="lacs">Lactobacillus salivarius</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
105 <option value="leps">Leptospira spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
106 <option value="leps2">Leptospira spp.#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
107 <option value="leps3">Leptospira spp.#3</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
108 <option value="lism">Listeria monocytogenes</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
109 <option value="macc">Macrococcus canis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
110 <option value="scus">Macrococcus caseolyticus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
111 <option value="manh">Mannheimia haemolytica</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
112 <option value="melp">Melissococcus plutonius</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
113 <option value="morc">Moraxella catarrhalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
114 <option value="mycs">Mycobacteria spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
115 <option value="myca">Mycobacterium abscessus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
116 <option value="mycm">Mycobacterium massiliense</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
117 <option value="mycoa">Mycoplasma agalactiae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
118 <option value="mycb">Mycoplasma bovis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
119 <option value="mych">Mycoplasma hyopneumoniae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
120 <option value="anis">Mycoplasma hyorhinis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
121 <option value="myci">Mycoplasma iowae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
122 <option value="mycp">Mycoplasma pneumoniae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
123 <option value="mycos">Mycoplasma synoviae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
124 <option value="neis">Neisseria spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
125 <option value="orit">Orientia tsutsugamushi</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
126 <option value="ornr">Ornithobacterium rhinotracheale</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
127 <option value="pael">Paenibacillus larvae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
128 <option value="pasm1">Pasteurella multocida#1</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
129 <option value="pasm2">Pasteurella multocida#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
130 <option value="pedp">Pediococcus pentosaceus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
131 <option value="phod">Photobacterium damselae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
132 <option value="piss">Piscirickettsia salmonis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
133 <option value="porg">Porphyromonas gingivalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
134 <option value="proa">Propionibacterium acnes</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
135 <option value="psea">Pseudomonas aeruginosa</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
136 <option value="psef">Pseudomonas fluorescens</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
137 <option value="psep">Pseudomonas putida</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
138 <option value="rhos">Rhodococcus spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
139 <option value="riea">Riemerella anatipestifer</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
140 <option value="sale">Salmonella enterica</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
141 <option value="sapp">Saprolegnia parasitica</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
142 <option value="sins">Sinorhizobium spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
143 <option value="staa">Staphylococcus aureus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
144 <option value="stae">Staphylococcus epidermidis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
145 <option value="stah">Staphylococcus haemolyticus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
146 <option value="snis">Staphylococcus hominis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
147 <option value="stal">Staphylococcus lugdunensis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
148 <option value="stap">Staphylococcus pseudintermedius</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
149 <option value="stem">Stenotrophomonas maltophilia</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
150 <option value="stra">Streptococcus agalactiae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
151 <option value="sbcx">Streptococcus bovis/equinus complex (SBSEC)</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
152 <option value="strc">Streptococcus canis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
153 <option value="stde">Streptococcus dysgalactiae equisimilis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
154 <option value="strg">Streptococcus gallolyticus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
155 <option value="stro">Streptococcus oralis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
156 <option value="strp">Streptococcus pneumoniae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
157 <option value="snes">Streptococcus pyogenes</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
158 <option value="strs">Streptococcus suis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
159 <option value="strt">Streptococcus thermophilus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
160 <option value="strt2">Streptococcus thermophilus#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
161 <option value="stru">Streptococcus uberis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
162 <option value="strz">Streptococcus zooepidemicus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
163 <option value="sspp">Streptomyces spp</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
164 <option value="tays">Taylorella spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
165 <option value="tens">Tenacibaculum spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
166 <option value="trep">Treponema pallidum</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
167 <option value="triv">Trichomonas vaginalis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
168 <option value="ures">Ureaplasma spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
169 <option value="vibc">Vibrio cholerae</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
170 <option value="vibc2">Vibrio cholerae#2</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
171 <option value="vibp">Vibrio parahaemolyticus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
172 <option value="vibs">Vibrio spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
173 <option value="vibt">Vibrio tapetis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
174 <option value="vibv">Vibrio vulnificus</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
175 <option value="wolb">Wolbachia</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
176 <option value="xylf">Xylella fastidiosa</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
177 <option value="yerp">Yersinia pseudotuberculosis</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
178 <option value="yerr">Yersinia ruckeri</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
179 <option value="yers">Yersinia spp.</option>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
180 </param>
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
181 </when>
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
182 <when value="fasta">
4
be46816110b4 planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 2
diff changeset
183 <param name="fasta" type="data" format="fasta,fasta.gz" optional="false" />
7
8a442938a61a planemo upload for repository https://github.com/thanhleviet/galaxy-tools commit 98648bbb7796db528b5685d44a2a5b761c53c19b-dirty
thanhlv
parents: 6
diff changeset
184 <param name="db" type="text" label="DB name" help = "The DB name should include no space, special characters, and must be uniquely different to the name predefined in curated and mlst list" />
0
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
185 <param name="coding" type="boolean" truevalue="yes" falsevalue="no" checked="False" label="Coding sequence?" />
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
186 </when>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
187 </conditional>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
188 </inputs>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
189 <outputs>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
190 <data name="out_file" format="data_manager_json" />
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
191 </outputs>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
192 <help>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
193 </help>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
194 <citations>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
195 <citation type="doi">110.1099/mgen.0.000131</citation>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
196 </citations>
a8bb47cc7625 planemo upload for repository tbd commit 0af229dbbda0496819ca95938c2e0628db689134
thanhlv
parents:
diff changeset
197 </tool>