annotate bio_hansel.xml @ 2:8e46a280c0d5 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
author iuc
date Sat, 05 Oct 2024 11:05:56 +0000
parents ddae7615b431
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
1 <tool id="bio_hansel" name="Salmonella Subtyping" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@">
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
2 <macros>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
3 <import>macros.xml</import>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
4 </macros>
2
8e46a280c0d5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
iuc
parents: 1
diff changeset
5 <xrefs>
8e46a280c0d5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
iuc
parents: 1
diff changeset
6 <xref type="bio.tools">Biohansel</xref>
8e46a280c0d5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
iuc
parents: 1
diff changeset
7 </xrefs>
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
8 <expand macro="requirements" />
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
10 #if $data_type.type == "paired":
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
11 #if $data_type.fastq_input1.ext.endswith('.gz'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
12 gunzip -c '$data_type.fastq_input1' > fast_q_paired_1.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
13 gunzip -c '$data_type.fastq_input2' > fast_q_paired_2.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
14 #else:
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
15 ln -s '$data_type.fastq_input1' fast_q_paired_1.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
16 ln -s '$data_type.fastq_input2' fast_q_paired_2.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
17 #end if
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
18 #elif $data_type.type == "collection":
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
19 #if $data_type.fastq_input1.forward.ext.endswith('.gz'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
20 gunzip -c '$data_type.fastq_input1.forward' > fast_q_paired_1.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
21 gunzip -c '$data_type.fastq_input2.reverse' > fast_q_paired_2.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
22 #else:
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
23 ln -s '$data_type.fastq_input1.forward' fast_q_paired_1.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
24 ln -s '$data_type.fastq_input1.reverse' fast_q_paired_2.fastq &&
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
25 #end if
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
26 #elif $data_type.type == "single":
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
27 #if $data_type.fastq_input1.ext.startswith("fastq"):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
28 #if $data_type.fastq_input1.ext.endswith('.gz'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
29 gunzip -c '$data_type.fastq_input1' > fast_q_single.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
30 #else:
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
31 ln -s '$data_type.fastq_input1' fast_q_single.fastq &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
32 #end if
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
33 #elif $data_type.fastq_input1.ext.startswith('fasta'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
34 #if $data_type.fastq_input1.ext.endswith('.gz'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
35 gunzip -c '$data_type.fastq_input1' > fast_a_single.fasta &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
36 #else:
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
37 ln -s '$data_type.fastq_input1' fast_a_single.fasta &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
38 #end if
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
39 #end if
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
40 #end if
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
41 #if $type_of_scheme.scheme_type == "custom":
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
42 #if $type_of_scheme.scheme_input.ext.startswith('fasta'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
43 #if $type_of_scheme.scheme_input.ext.endswith('.gz'):
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
44 gunzip -c '$type_of_scheme.scheme_input' > custom_scheme.fasta &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
45 #else:
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
46 ln -s '$type_of_scheme.scheme_input' custom_scheme.fasta &&
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
47 #end if
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
48 #end if
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
49 #end if
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
50 hansel
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
51 -s
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
52 #if $type_of_scheme.scheme_type == "heidelberg":
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
53 heidelberg
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
54 #elif $type_of_scheme.scheme_type == "enteritidis":
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
55 enteritidis
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
56 #elif $type_of_scheme.scheme_type == "custom":
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
57 custom_scheme.fasta
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
58 #end if
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
59 #if $kmer_min
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
60 --min-kmer-freq $kmer_min
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
61 #end if
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
62 #if $kmer_max
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
63 --max-kmer-freq $kmer_max
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
64 #end if
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
65 -vvv -t \${GALAXY_SLOTS:-1} -o 'results.tab' -O 'match_results.tab'
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
66 #if $data_type.type == "single":
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
67 #if $data_type.fastq_input1.ext.startswith('fastq'):
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
68 fast_q_single.fastq
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
69 #elif $data_type.fastq_input1.ext.startswith('fasta'):
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
70 fast_a_single.fasta
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
71 #end if
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
72 #else
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
73 -p fast_q_paired_1.fastq fast_q_paired_2.fastq
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
74 #end if
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
75 ]]></command>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
76 <inputs>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
77 <conditional name="data_type">
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
78 <param name="type" type="select" label="Specify the read type.">
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
79 <option value="single">Single-end Data</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
80 <option value="paired">Paired-end Data</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
81 <option value="collection">Collection Paired-end Data</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
82 </param>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
83 <when value="single">
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
84 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz,fastq,fastq.gz,fasta,fasta.gz" label="Single end read file(s)"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
85 </when>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
86 <when value="paired">
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
87 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz,fastq,fastq.gz" label="Forward paired-end read file"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
88 <param name="fastq_input2" type="data" format="fastqsanger,fastqsanger.gz,fastq,fastq.gz" label="Reverse paired-end read file"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
89 </when>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
90 <when value="collection">
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
91 <param name="fastq_input1" type="data_collection" label="Paired-end reads collection" optional="false" format="fastqsanger,fastqsanger.gz,fastq,fastq.gz" collection_type="paired" />
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
92 </when>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
93 </conditional>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
94 <conditional name="type_of_scheme">
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
95 <param name="scheme_type" type="select" label="Specify scheme to use. (Heidelberg is default)">
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
96 <option value="heidelberg">Heidelberg scheme</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
97 <option value="enteritidis">Enteritidis scheme</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
98 <option value="custom">Specify your own custom scheme</option>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
99 </param>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
100 <when value="heidelberg"/>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
101 <when value="enteritidis"/>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
102 <when value="custom">
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
103 <param name="scheme_input" type="data" format="fasta,fasta.gz" label="Scheme Input"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
104 </when>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
105 </conditional>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
106 <param name="kmer_min" argument="--min-kmer-freq" optional="True" type="integer" min="0" label="Min k-mer freq/coverage" help="default = 10"/>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
107 <param name="kmer_max" argument="--max-kmer-freq" optional="True" type="integer" min="1" label="Max k-mer freq/coverage" help="default = 200"/>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
108 </inputs>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
109 <outputs>
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
110 <data format="tabular" name="results" from_work_dir="results.tab" label="${tool.name} on ${on_string}: results.tab"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
111 <data format="tabular" name="match_results" from_work_dir="match_results.tab" label="${tool.name} on ${on_string}: match_results.tab"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
112 </outputs>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
113 <tests>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
114 <test>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
115 <param name="type" value="single"/>
2
8e46a280c0d5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
iuc
parents: 1
diff changeset
116 <param name="type_of_scheme|scheme_type" value="heidelberg"/>
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
117 <param name="fastq_input1" ftype="fasta.gz" value="SRR1002850_SMALL.fasta.gz"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
118 <output name="results" ftype="tabular" file="results1.tab" compare="contains"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
119 <output name="match_results" ftype="tabular" file="match_results1.tab" compare="contains"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
120 </test>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
121 <test>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
122 <param name="type" value="paired"/>
2
8e46a280c0d5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 32833cd064153c009ff667f9526515d1aa15d48c
iuc
parents: 1
diff changeset
123 <param name="type_of_scheme|scheme_type" value="heidelberg"/>
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
124 <param name="fastq_input1" ftype="fastq.gz" value="SRR5646583_SMALL_1.fastq.gz"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
125 <param name="fastq_input2" value="SRR5646583_SMALL_2.fastq.gz"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
126 <output name="results" ftype="tabular" file="results2.tab" compare="contains"/>
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
127 <output name="match_results" ftype="tabular" file="match_results2.tab" compare="contains"/>
0
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
128 </test>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
129 </tests>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
130 <help><![CDATA[
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
131 ***********************************************************
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
132 bio_hansel - Heidelberg And eNteritidis Snp ELucidation
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
133 ***********************************************************
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
134
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
135 Subtype *Salmonella enterica* subsp. enterica serovar Heidelberg and Enteritidis genomes using *in-silico* 33 bp k-mer SNP subtyping schemes developed by Genevieve Labbe et al.
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
136 Subtype *Salmonella* genome assemblies (FASTA files) and/or whole-genome sequencing reads (FASTQ files)!
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
137
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
138
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
139 Usage
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
140 =====
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
141 1) Enter your FASTA/FASTQ file(s)
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
142 2) Select which scheme you would like to use (e.g. heidelberg, enteritidis, or specify your own)
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
143 3) Click Execute
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
144
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
145 For more information visit `https://github.com/phac-nml/bio_hansel`
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
146
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
147
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
148 Example Usage
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
149 =============
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
150
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
151 Analysis of a single FASTA file
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
152 -------------------------------
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
153
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
154 Contents of ``results.tab``:
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
155
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
156 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
157 | sample | scheme | subtype | all_subtypes | tiles_matching_subtype | are_subtypes_consistent | inconsistent_subtypes | n_tiles_matching_all | n_tiles_matching_all_total | n_tiles_matching_positive | n_tiles_matching_positive_total | n_tiles_matching_subtype | n_tiles_matching_subtype_total | file_path |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
158 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
159 | file.fasta | heidelberg | 2.2.2.2.1.4 | 2; 2.2; 2.2.2; 2.2.2.2; 2.2.2.2.1; 2.2.2.2.1.4 | 1037658-2.2.2.2.1.4; 2154958-2.2.2.2.1.4; 3785187-2.2.2.2.1.4 | True | | 202 | 202 | 17 | 17 | 3 | 3 | file.fasta |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
160 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
161
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
162
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
163
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
164 Contents of ``match_results.tab``:
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
165
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
166 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
167 | tilename | stitle | pident | length | mismatch | gapopen | qstart | qend | sstart | send | evalue | bitscore | qlen | slen | seq | coverage | is_trunc | refposition | subtype | is_pos_tile | sample | file_path | scheme |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
168 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
169 | 775920-2.2.2.2 | NODE_2_length_512016_cov_46.4737_ID_3 | 100 | 33 | 0 | 0 | 1 | 33 | 474875 | 474907 | 2E-11 | 62.1 | 33 | 512016 | GTTCAGGTGCTACCGAGGATCGTTTTTGGTGCG | 1 | False | 775920 | 2.2.2.2 | True | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
170 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
171 | negative3305400-2.1.1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 276235 | 276267 | 2E-11 | 62.1 | 33 | 427905 | CATCGTGAAGCAGAACAGACGCGCATTCTTGCT | 1 | False | negative3305400 | 2.1.1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
172 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
173 | negative3200083-2.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 170918 | 170950 | 2E-11 | 62.1 | 33 | 427905 | ACCCGGTCTACCGCAAAATGGAAAGCGATATGC | 1 | False | negative3200083 | 2.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
174 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
175 | negative3204925-2.2.3.1.5 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 175760 | 175792 | 2E-11 | 62.1 | 33 | 427905 | CTCGCTGGCAAGCAGTGCGGGTACTATCGGCGG | 1 | False | negative3204925 | 2.2.3.1.5 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
176 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
177 | negative3230678-2.2.2.1.1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 201513 | 201545 | 2E-11 | 62.1 | 33 | 427905 | AGCGGTGCGCCAAACCACCCGGAATGATGAGTG | 1 | False | negative3230678 | 2.2.2.1.1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
178 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
179 | negative3233869-2.1.1.1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 204704 | 204736 | 2E-11 | 62.1 | 33 | 427905 | CAGCGCTGGTATGTGGCTGCACCATCGTCATTA | 1 | False | negative3233869 | 2.1.1.1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
180 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
181 | negative3254229-2.2.3.1.3 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 225064 | 225096 | 2E-11 | 62.1 | 33 | 427905 | CGCCACCACGCGGTTAGCGTCACGCTGACATTC | 1 | False | negative3254229 | 2.2.3.1.3 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
182 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
183 | negative3257074-2.2.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 227909 | 227941 | 2E-11 | 62.1 | 33 | 427905 | CGGCAACCAGACCGACTACGCCGCCAAGCAGAC | 1 | False | negative3257074 | 2.2.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
184 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
185 | negative3264474-2.2.2.1.1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 235309 | 235341 | 2E-11 | 62.1 | 33 | 427905 | AATGGCGCCGATCGTCGCCAGATAACCGTTGCC | 1 | False | negative3264474 | 2.2.2.1.1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
186 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
187 | negative3267927-2.2.2.2.2.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 238762 | 238794 | 2E-11 | 62.1 | 33 | 427905 | AAAGAGAAATATGATGCCAGGCTGATACATGAC | 1 | False | negative3267927 | 2.2.2.2.2.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
188 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
189 | negative3278067-1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 248902 | 248934 | 2E-11 | 62.1 | 33 | 427905 | TGTGAGTAAGTTGCGCGATATTCTGCTGGATTC | 1 | False | negative3278067 | 1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
190 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
191 | negative3299717-2.2.3.1.4 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 270552 | 270584 | 2E-11 | 62.1 | 33 | 427905 | ATGCCGGACAGCAGGCGAAACTCGAACCGGATA | 1 | False | negative3299717 | 2.2.3.1.4 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
192 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
193 | negative3373069-2.2.2.2.1.1 | NODE_3_length_427905_cov_48.1477_ID_5 | 100 | 33 | 0 | 0 | 1 | 33 | 344011 | 344043 | 2E-11 | 62.1 | 33 | 427905 | CTCTCCAGAAGATGAAGCCCGTGATGCGGCGCA | 1 | False | negative3373069 | 2.2.2.2.1.1 | False | out | file.fasta | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
194 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
195
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
196 Next 196 lines omitted.
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
197
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
198
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
199
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
200 Analysis of a single FASTQ readset
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
201 ----------------------------------
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
202
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
203 Contents of ``results.tab``:
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
204
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
205 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
206 | sample | scheme | subtype | all_subtypes | tiles_matching_subtype | are_subtypes_consistent | inconsistent_subtypes | n_tiles_matching_all | n_tiles_matching_all_total | n_tiles_matching_positive | n_tiles_matching_positive_total | n_tiles_matching_subtype | n_tiles_matching_subtype_total | file_path |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
207 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
208 | 564 | heidelberg | 2.2.1.1.1.1 | 2; 2.2; 2.2.1; 2.2.1.1; 2.2.1.1.1; 2.2.1.1.1.1 | 1983064-2.2.1.1.1.1; 4211912-2.2.1.1.1.1 | True | | 202 | 202 | 20 | 20 | 2 | 2 | forward.fastqsanger; reverse.fastqsanger |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
209 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
210
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
211
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
212 Contents of ``match_results.tab``:
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
213
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
214 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
215 | seq | freq | sample | file_path | tilename | is_pos_tile | subtype | refposition | is_kmer_freq_okay | scheme |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
216 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
217 | ACGGTAAAAGAGGACTTGACTGGCGCGATTTGC | 68 | 564 | forward.fastqsanger; reverse.fastqsanger | 21097-2.2.1.1.1 | True | 2.2.1.1.1 | 21097 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
218 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
219 | AACCGGCGGTATTGGCTGCGGTAAAAGTACCGT | 77 | 564 | forward.fastqsanger; reverse.fastqsanger | 157792-2.2.1.1.1 | True | 2.2.1.1.1 | 157792 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
220 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
221 | CCGCTGCTTTCTGAAATCGCGCGTCGTTTCAAC | 67 | 564 | forward.fastqsanger; reverse.fastqsanger | 293728-2.2.1.1 | True | 2.2.1.1 | 293728 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
222 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
223 | GAATAACAGCAAAGTGATCATGATGCCGCTGGA | 91 | 564 | forward.fastqsanger; reverse.fastqsanger | 607438-2.2.1 | True | 2.2.1 | 607438 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
224 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
225 | CAGTTTTACATCCTGCGAAATGCGCAGCGTCAA | 87 | 564 | forward.fastqsanger; reverse.fastqsanger | 691203-2.2.1.1 | True | 2.2.1.1 | 691203 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
226 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
227 | CAGGAGAAAGGATGCCAGGGTCAACACGTAAAC | 33 | 564 | forward.fastqsanger; reverse.fastqsanger | 944885-2.2.1.1.1 | True | 2.2.1.1.1 | 944885 | True | heidelberg |
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
228 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
229
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
230 Next 200 lines omitted.
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
231
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
232 ]]></help>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
233 <citations>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
234 <citation type="bibtex">@ARTICLE{a1,
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
235 title = {A robust genotyping scheme for *Salmonella enterica* serovar Heidelberg clones circulating in North America.},
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
236 author = {Geneviève Labbé, James Robertson, Peter Kruczkiewicz, Chad R. Laing, Kim Ziebell, Aleisha R. Reimer, Lorelee Tschetter, Gary Van Domselaar, Sadjia Bekal, Kimberley A. MacDonald, Linda Hoang, Linda Chui, Danielle Daignault, Durda Slavic, Frank Pollari, E. Jane Parmley, Philip Mabon, Elissa Giang, Lok Kan Lee, Jonathan Moffat, Marisa Rankin, Joanne MacKinnon, Roger Johnson, John H.E. Nash.},
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
237 url = {https://github.com/phac-nml/bio_hansel}
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
238 }
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
239 }</citation>
726cd66ca2f9 planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4ff4534765d620458c521bcac760cc8e01bc22f1
iuc
parents:
diff changeset
240 </citations>
1
ddae7615b431 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel commit 80309b6403ad219d7fa3a25288c6339d0b33ed63"
iuc
parents: 0
diff changeset
241 </tool>