annotate mob_recon.xml @ 10:2fd93022d5d7 draft default tip

planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
author nml
date Fri, 21 Feb 2025 18:41:14 +0000
parents 53f50adcb78e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
53f50adcb78e "planemo upload for repository https://github.com/phac-nml/mob-suite commit 314c26f1f5e22511c6f406cd9b7108f873cec295"
nml
parents: 7
diff changeset
1 <tool id="mob_recon" name="MOB-Recon" version="@VERSION@+galaxy0">
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
2 <description>Type contigs and extract plasmid sequences</description>
8
53f50adcb78e "planemo upload for repository https://github.com/phac-nml/mob-suite commit 314c26f1f5e22511c6f406cd9b7108f873cec295"
nml
parents: 7
diff changeset
3 <macros>
53f50adcb78e "planemo upload for repository https://github.com/phac-nml/mob-suite commit 314c26f1f5e22511c6f406cd9b7108f873cec295"
nml
parents: 7
diff changeset
4 <import>macros.xml</import>
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
5 </macros>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
6 <expand macro="bio_tools"/>
8
53f50adcb78e "planemo upload for repository https://github.com/phac-nml/mob-suite commit 314c26f1f5e22511c6f406cd9b7108f873cec295"
nml
parents: 7
diff changeset
7 <expand macro="requirements" />
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
8 <version_command>mob_recon --version</version_command>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
9 <command detect_errors="exit_code">
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
10 <![CDATA[
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
11 #import re
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
12 #import os.path
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
13
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
14 #set $named_input = re.sub(r'(\s|\(|\)|:|!)', '_', str($input.element_identifier)+'.fasta')
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
15 ln -s '$input' '$named_input' &&
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
16
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
17
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
18 mob_recon --num_threads \${GALAXY_SLOTS:-4} --infile '${named_input}'
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
19
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
20 #if $adv_param.unicycler_contigs:
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
21 --unicycler_contigs
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
22 #end if
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
23
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
24 #if $adv_param.run_overhang:
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
25 --run_overhang
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
26 #end if
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
27
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
28 #if $adv_param.debug:
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
29 --debug
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
30 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
31
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
32 #if $adv_param.plasmid_db
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
33 --plasmid_db '$adv_param.plasmid_db'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
34 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
35
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
36 #if $adv_param.plasmid_mash_db
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
37 --plasmid_mash_db '$adv_param.plasmid_mash_db'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
38 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
39
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
40 #if $adv_param.plasmid_meta
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
41 --plasmid_meta '$adv_param.plasmid_meta'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
42 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
43
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
44 #if $adv_param.repetitive_mask
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
45 --repetitive_mask '$adv_param.repetitive_mask'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
46 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
47
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
48 #if $adv_param.plasmid_mob
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
49 --plasmid_mob '$adv_param.plasmid_mob'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
50 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
51
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
52 #if $adv_param.plasmid_mpf
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
53 --plasmid_mpf '$adv_param.plasmid_mpf'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
54 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
55
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
56 #if $adv_param.plasmid_orit
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
57 --plasmid_orit '$adv_param.plasmid_orit'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
58 #end if
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
59
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
60 #if $adv_param.filter_db
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
61 --filter_db '$adv_param.filter_db'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
62 #end if
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
63
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
64 --mash_genome_neighbor_threshold '${adv_param.mash_genome_neighbor_threshold}'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
65 --primary_cluster_dist '${adv_param.primary_cluster_dist}'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
66 --secondary_cluster_dist '${adv_param.secondary_cluster_dist}'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
67 --max_contig_size '${adv_param.max_contig_size}'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
68 --max_plasmid_size '${adv_param.max_plasmid_size}'
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
69
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
70 --min_length '${adv_param.min_length}'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
71 --min_rep_evalue '${adv_param.min_rep_evalue}'
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
72 --min_rep_evalue '${adv_param.min_rep_evalue}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
73 --min_mob_evalue '${adv_param.min_mob_evalue}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
74 --min_con_evalue '${adv_param.min_con_evalue}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
75 --min_rep_ident '${adv_param.min_rep_ident}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
76 --min_mob_ident '${adv_param.min_mob_ident}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
77 --min_con_ident '${adv_param.min_con_ident}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
78 --min_rpp_ident '${adv_param.min_rpp_ident}'
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
79
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
80 --min_rep_cov '${adv_param.min_rep_cov}'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
81 --min_mob_cov '${adv_param.min_mob_cov}'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
82 --min_con_cov '${adv_param.min_con_cov}'
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
83 --min_rpp_cov '${adv_param.min_rpp_cov}'
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
84
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
85
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
86 --outdir 'outdir' &&
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
87 mkdir ./outdir/plasmids && (mv outdir/plasmid*.fasta ./outdir/plasmids 2> /dev/null || true)
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
88 ]]>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
89 </command>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
90 <inputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
91 <param name="input" type="data" format="fasta" label="Input" help="FASTA file with contig(s)"/>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
92 <section name="adv_param" title="Advanced parameters" expanded="False">
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
93
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
94 <param name="unicycler_contigs" type="boolean" truevalue="true" falsevalue="" checked="true" label="Check for circularity flag generated by unicycler in contigs fasta headers?" help="(--unicycler_contigs)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
95 <param name="run_overhang" type="boolean" truevalue="true" falsevalue="" checked="true" label="Detect circular contigs (i.e. potential plasmids) with assembly overhangs?" help="(--run_overhang)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
96 <param name="debug" type="boolean" truevalue="true" falsevalue="" checked="false" label="Provide debug information?" help="(--debug)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
97 <param name="mash_genome_neighbor_threshold" label="Mash distance selecting valid closed genomes to filter" type="float" min="0.00001" max="1" value="0.002" help="(--mash_genome_neighbor_threshold)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
98 <param name="primary_cluster_dist" label="MASH distance for assigning primary plasmid cluster id" type="float" min="0.00001" max="1" value="0.06" help="(--primary_cluster_dist)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
99 <param name="secondary_cluster_dist" label="MASH distance for assigning secondary plasmid cluster id" type="float" min="0.00001" max="1" value="0.025" help="(--secondary_cluster_dist)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
100 <param name="max_contig_size" label="Maximum size of a contig to be considered a plasmid (bp)" type="integer" min="1" max="1000000" value="450000" help="(--max_contig_size)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
101 <param name="max_plasmid_size" label="Maximum size of a reconstructed plasmid (bp)" type="integer" min="1" max="1000000" value="450000" help="(--max_plasmid_size)"/>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
102
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
103 <param name="min_rep_evalue" label="Minimum evalue threshold for replicon blastn" type="float" min="0.00001" max="1" value="0.00001" help="(--min_rep_evalue)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
104 <param name="min_mob_evalue" label="Minimum evalue threshold for relaxase tblastn" type="float" min="0.00001" max="1" value="0.00001" help="(--min_mob_evalue)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
105 <param name="min_con_evalue" label="Minimum evalue threshold for contig blastn" type="float" min="0.00001" max="1" value="0.00001" help="(--min_con_evalue)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
106 <param name="min_rpp_evalue" label="Minimum evalue threshold for repetitve elements blastn" type="float" min="0.00001" max="1" value="0.00001" help="(--min_rpp_evalue)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
107 <param name="min_length" label="Minimum length of contigs to classify (bp)" type="integer" value="1000" help="(--min_length)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
108 <param name="min_rep_ident" label="Minimum sequence identity for replicons" type="integer" min="0" max="100" value="80" help="(--min_rep_ident)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
109 <param name="min_mob_ident" label="Minimum sequence identity for relaxases" type="integer" min="0" max="100" value="80" help="(--min_mob_ident)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
110 <param name="min_con_ident" label="Minimum sequence identity for contigs" type="integer" min="0" max="100" value="80" help="(--min_con_ident)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
111 <param name="min_rpp_ident" label="Minimum sequence identity for repetitive elements" type="integer" min="0" max="100" value="80" help="(--min_rpp_ident)"/>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
112
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
113 <param name="min_rep_cov" label="Minimum percentage coverage of replicon query by input assembly" type="integer" min="0" max="100" value="80" help="(--min_rep_cov)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
114 <param name="min_mob_cov" label="Minimum percentage coverage of relaxase query by input assembly" type="integer" min="0" max="100" value="80" help="(--min_mob_cov)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
115 <param name="min_con_cov" label="Minimum percentage coverage of assembly contig by the plasmid reference database to be considered" type="integer" min="0" max="100" value="60" help="(--min_con_cov)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
116 <param name="min_rpp_cov" label="Minimum percentage coverage of contigs by repetitive elements" type="integer" min="0" max="100" value="80" help="(--min_rpp_cov)"/>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
117
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
118 <param name="plasmid_db" optional="true" type="data" format="fasta" label="Reference custom database of complete plasmids" help="(--plasmid_db)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
119 <param name="plasmid_mash_db" optional="true" type="data" format="binary" label="Custom MASH database of plasmids" help="MASH sketch of the reference plasmids database (--plasmid_mash_db)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
120 <param name="plasmid_meta" type="data" optional="true" format="text" label="Plasmid cluster metadata file" help="(--plasmid_meta)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
121 <param name="plasmid_replicons" type="data" optional="true" format="fasta" label="FASTA file with plasmid replicons" help="(--plasmid_replicons)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
122 <param name="repetitive_mask" type="data" optional="true" format="fasta" label="FASTA of known repetitive elements" help="(--reptitive_mask)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
123 <param name="plasmid_mob" type="data" optional="true" format="fasta" label="FASTA of plasmid relaxases" help="(--plasmid_mob)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
124 <param name="plasmid_mpf" type="data" optional="true" format="fasta" label="FASTA of known plasmid mate-pair proteins" help="(--plasmid_mpf)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
125 <param name="plasmid_orit" type="data" optional="true" format="fasta" label="FASTA of known plasmid oriT dna sequences" help="(--plasmid_orit)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
126 <param name="filter_db" type="data" optional="true" format="fasta" label="Path to fasta file to mask sequences" help="(--filter_db)"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
127
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
128
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
129
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
130 </section>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
131 </inputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
132 <outputs>
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
133 <data name="contig_report" format="tabular" from_work_dir="outdir/contig_report.txt" label="${tool.name} on ${input.element_identifier}: Overall contig MOB-recon report"/>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
134 <data name="mobtyper_aggregate_report" format="tabular" from_work_dir="outdir/mobtyper_results.txt" label="${tool.name} on ${input.element_identifier}: Aggregate MOB-typer report for all contigs"/>
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
135 <data name="chromosome" format="fasta" from_work_dir="outdir/chromosome.fasta" label="${tool.name} on ${input.element_identifier}: CHROMOSOMAL contigs"/>
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
136 <collection name="plasmids" type="list" label="${tool.name} on ${input.element_identifier}: PLASMIDS RECONSTRUCTED">
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
137 <discover_datasets pattern="__name_and_ext__" directory="outdir/plasmids" />
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
138 </collection>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
139 </outputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
140 <tests>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
141 <test>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
142 <param name="input" value="Ecoli_strain_KV7_complete_LT795502.fasta" ftype="fasta"/>
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
143 <section name="adv_param">
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
144 <param name="unicycler_contigs" value="True"/>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
145 <param name="run_overhang" value="True"/>
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
146 </section>
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
147 <output name="contig_report">
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
148 <assert_contents>
7
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
149 <has_text text="chromosome"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
150 <has_text text="plasmid"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
151 <has_text text="IncHI1A"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
152 <has_text text="IncN"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
153 </assert_contents>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
154 </output>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
155 <output name="mobtyper_aggregate_report">
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
156 <assert_contents>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
157 <has_text text="conjugative"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
158 <has_text text="Gammaproteobacteria"/>
822575bf359f "planemo upload for repository https://github.com/phac-nml/mob-suite commit 814769a7d86fa4ca552e93f8d707412e9ba23b1b"
nml
parents: 6
diff changeset
159 <has_text text="223020"/>
6
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
160 </assert_contents>
9424de64bfa8 "planemo upload for repository https://github.com/phac-nml/mob-suite commit dc6eaf2675bf842ab7a52c3fdf16d01028cddc9a"
nml
parents: 5
diff changeset
161 </output>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
162 </test>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
163 </tests>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
164 <help>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
165
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
166 **Syntax**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
167
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
168 This tool reconstructs individual plasmid sequences from draft genome assemblies using the plasmid reference databases.
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
169
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
170 For more information please visit https://github.com/phac-nml/mob-suite/.
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
171
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
172 -----
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
173
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
174 **Input:**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
175
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
176 A FASTA file with a single or multiple contigs (e.g. a draft genome assembly):
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
177
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
178
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
179 **Output:**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
180
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
181 Tab-delimited report listing information for each input contig on its cluster number, possible replicon, relaxase, and repetitive elements types, etc. Refer to https://github.com/phac-nml/mob-suite#mob-recon-contig-report-format for the description of each column.
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
182
10
2fd93022d5d7 planemo upload for repository https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob-suite commit 8bd2d0ff4101e7e7e6a45247d616929593a03cd4
nml
parents: 8
diff changeset
183 **Note:** Plasmid sequences will not be output if none are found. Some plasmid could be intergrated into a chromosome.
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
184
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
185
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
186 </help>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
187 <citations>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
188 <citation type="bibtex">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
189 @misc{githubmob-suite,
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
190 author = {Robertson J, Nash J},
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
191 title = {MOB-Suite: Software tools for clustering, reconstruction and typing of plasmids from draft assemblies.},
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
192 publisher = {GitHub},
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
193 journal = {GitHub repository},
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
194 doi = {10.1099/mgen.0.000206},
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
195 url = {https://github.com/phac-nml/mob-suite}
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
196 }</citation>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
197 </citations>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
198 </tool>