annotate mob_recon.xml @ 4:1c5dfecfbb4d draft

planemo upload for repository https://github.com/phac-nml/mob-suite commit e30c0687f755a46c5b3bd265a1478a1abf5dc9f1
author nml
date Mon, 20 Aug 2018 16:03:51 -0400
parents 066b2a1c6a55
children 09424ec94e80
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
1 <tool id="mob_recon" name="MOB-Recon" version="1.4.8">
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>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
3 <requirements>
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
4 <requirement type="package" version="1.4.8">mob_suite</requirement>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
5 </requirements>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
6 <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
7 <![CDATA[
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
8 #import re
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
9 #import os.path
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
10
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
11 #set $named_input = re.sub(r'(\s|\(|\)|:|!)', '_', str($input.element_identifier)+".fasta")
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
12 ln -s "$input" $named_input &&
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
13
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
14 mob_recon --num_threads \${GALAXY_SLOTS:-4} --infile "${named_input}"
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
15 #if str($adv_param.unicycler_contigs) == "True":
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
16 --unicycler_contigs
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
17 #end if
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
18 #if str($adv_param.run_circlator) == "True":
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
19 --run_circlator
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
20 #end if
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
21 #if str($adv_param.min_length_condition.min_length_param) == "True":
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
22 --min_length ${adv_param.min_length_condition.min_length_value}
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
23 #end if
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
24 --run_typer --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
25 --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
26 --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
27 --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
28 --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
29 --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
30 --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
31 --min_rpp_ident '${adv_param.min_rpp_ident}'
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
32 --outdir '.' &&
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
33 mkdir ./sequences && (cp plasmid*.fasta chromosome.fasta ./sequences 2> /dev/null || true)
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
34 ]]>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
35 </command>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
36 <inputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
37 <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
38 <section name="adv_param" title="Advanced parameters" expanded="False">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
39 <param name="unicycler_contigs" label="Check for circularity flag generated by unicycler in contigs fasta headers" type="select" value="True">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
40 <option value="True">Yes</option>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
41 <option value="False">No</option>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
42 </param>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
43 <param name="run_circlator" label="Run circlator minums2 pipeline to check for circular contigs" type="select" value="True">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
44 <option value="True">Yes</option>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
45 <option value="False">No</option>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
46 </param>
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
47 <conditional name="min_length_condition">
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
48 <param name="min_length_param" label="Minimum length of contigs to process" type="select" value="False">
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
49 <option value="False">No</option>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
50 <option value="True">Yes</option>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
51 </param>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
52 <when value="True">
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
53 <param name="min_length_value" type="integer" value="500" min="50"/>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
54 </when>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
55 <when value="False"/>
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
56 </conditional>
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
57 <param name="min_rep_evalue" label="Minimum evalue threshold for replicon blastn" type="float" min="0.00001" max="1" value="0.00001"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
58 <param name="min_mob_evalue" label="Minimum evalue threshold for relaxase tblastn" type="float" min="0.00001" max="1" value="0.00001"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
59 <param name="min_con_evalue" label="Minimum evalue threshold for contig blastn" type="float" min="0.00001" max="1" value="0.00001"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
60 <param name="min_rpp_evalue" label="Minimum evalue threshold for repetitve elements blastn" type="float" min="0.00001" max="1" value="0.00001"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
61 <param name="min_rep_ident" label="Minimum sequence identity for replicons" type="integer" min="0" max="100" value="80"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
62 <param name="min_mob_ident" label="Minimum sequence identity for relaxases" type="integer" min="0" max="100" value="80"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
63 <param name="min_con_ident" label="Minimum sequence identity for contigs" type="integer" min="0" max="100" value="80"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
64 <param name="min_rpp_ident" label="Minimum sequence identity for repetitive elements" type="integer" min="0" max="100" value="80"/>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
65 </section>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
66 </inputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
67 <outputs>
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
68 <data name="outfile1" format="tabular" from_work_dir="contig_report.txt" label="${tool.name} on ${on_string}: Overall contig MOB-recon report"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
69 <data name="outfile2" format="tabular" from_work_dir="repetitive_blast_report.txt" label="${tool.name} on ${on_string}: Repetitive elements BLAST report"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
70 <data name="outfile3" format="tabular" from_work_dir="mobtyper_aggregate_report.txt" label="${tool.name} on ${on_string}: Aggregate MOB-typer report for all contigs"/>
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
71 <collection name="seqhits" type="list" label="${tool.name} on ${on_string}: Extracted sequences (plasmids,chromosome(s))">
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
72 <discover_datasets pattern="__name_and_ext__" directory="sequences" />
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
73 </collection>
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
74 </outputs>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
75 <tests>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
76 <test>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
77 <param name="input" value="plasmid_476.fasta" ftype="fasta"/>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
78 <section name="adv_param">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
79 <param name="unicycler_contigs" value="True"/>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
80 <param name="run_circlator" value="True"/>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
81 </section>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
82 <output name="outfile1">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
83 <assert_contents>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
84 <has_text text="NC_019097"/>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
85 </assert_contents>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
86 </output>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
87 </test>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
88 </tests>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
89 <help>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
90
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
91 **Syntax**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
92
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
93 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
94
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
95 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
96
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
97 **Workflow**
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
98
4
1c5dfecfbb4d planemo upload for repository https://github.com/phac-nml/mob-suite commit e30c0687f755a46c5b3bd265a1478a1abf5dc9f1
nml
parents: 3
diff changeset
99 This preliminary \"Mobilome and Resistome Analysis Workflow\" linking mob_recon with staramr provides reports on mobilome and resistome for a given isolate given a draft genome assembly. The workflow is located in Shared Data --> Workflows --> Mobilome and Resistome Analysis Workflow (MOB-Recon and STARAMR). The workflow file can also be manually downloaded from https://raw.githubusercontent.com/phac-nml/galaxy_tools/master/tools/mob_suite/workflows/AMRworkflow_STARAMR.ga.
2
2c7f721a4905 planemo upload for repository https://github.com/phac-nml/mob-suite commit eecf57ea6130c483487087554c53918fe2b556dd
nml
parents: 1
diff changeset
100
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
101 -----
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
102
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
103 **Input:**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
104
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
105 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
106
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
107
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
108 **Output:**
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
109
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
110 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
111
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
112 Note: Plasmid sequences will not be output if none are found. Some plasmid could be intergrated into a chromosome.
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
113
0
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
114
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
115 </help>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
116 <citations>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
117 <citation type="bibtex">
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
118 @misc{githubmob-suite,
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
119 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
120 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
121 publisher = {GitHub},
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
122 journal = {GitHub repository},
1
2c419df5cdaa planemo upload for repository https://github.com/phac-nml/mob-suite commit 7681cd156a24e77ca039f3137145b6949a2ad5a3
nml
parents: 0
diff changeset
123 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
124 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
125 }</citation>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
126 </citations>
820eec3fa31f planemo upload for repository https://github.com/phac-nml/mob-suite commit 8c045f39dc0cdaa69876714f74f0470de6ce3c6c-dirty
nml
parents:
diff changeset
127 </tool>