Mercurial > repos > nml > bio_hansel
annotate bio_hansel.xml @ 6:5a42e475436e draft
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
author | nml |
---|---|
date | Thu, 22 Feb 2018 12:21:08 -0500 |
parents | 6396d043667b |
children | af59ac462926 |
rev | line source |
---|---|
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
1 <tool id="bio_hansel" name="Bio Hansel" version="1.2.1"> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
2 <description>SNV Subtyping with genome assemblies or reads</description> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
3 <requirements> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
4 <requirement type="package" version="1.2.0">bio_hansel</requirement> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
5 <requirement type="package" version="17.2.0">attrs</requirement> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
6 </requirements> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
8 ## Preparing file input. |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
9 #if $data_type.type == "paired": |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
10 |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
11 ln -s '$data_type.fastq_input1' '$data_type.fastq_input1.name'.fastq && |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
12 ln -s '$data_type.fastq_input2' '$data_type.fastq_input2.name'.fastq && |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
13 |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
14 #elif $data_type.type == "collection": |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
15 |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
16 ln -s '$data_type.fastq_input1.forward' '$data_type.fastq_input1.name'_1.fastq && |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
17 ln -s '$data_type.fastq_input1.reverse' '$data_type.fastq_input1.name'_2.fastq && |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
18 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
19 #elif $data_type.type == "single": |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
20 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
21 #if $data_type.fastq_input1.is_of_type('fastqsanger') or $data_type.fastq_input1.is_of_type('fastq'): |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
22 ln -s '$data_type.fastq_input1' '$data_type.fastq_input1.name'.fastq && |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
23 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
24 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
25 #if $data_type.fastq_input1.is_of_type('fasta'): |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
26 ln -s '$data_type.fastq_input1' '$data_type.fastq_input1.name'.fasta && |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
27 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
28 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
29 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
30 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
31 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
32 ## Checking for custom scheme. |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
33 #if $type_of_scheme.scheme_type == "custom": |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
34 #if $type_of_scheme.scheme_input.is_of_type('fasta'): |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
35 ln -s '$type_of_scheme.scheme_input' '$type_of_scheme.scheme_input.name' && |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
36 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
37 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
38 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
39 ## Start the actual command here |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
40 hansel |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
41 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
42 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
43 ## Select the scheme |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
44 -s |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
45 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
46 #if $type_of_scheme.scheme_type == "heidelberg": |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
47 heidelberg |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
48 #elif $type_of_scheme.scheme_type == "enteritidis": |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
49 enteritidis |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
50 #elif $type_of_scheme.scheme_type == "custom": |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
51 '$type_of_scheme.scheme_input.name' |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
52 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
53 |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
54 ## Use Json output |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
55 #if $dev_args.use_json == "yes": |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
56 --json |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
57 #end if |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
58 |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
59 #if $kmer_vals.kmer_min |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
60 --min-kmer-freq $kmer_vals.kmer_min |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
61 #end if |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
62 |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
63 #if $kmer_vals.kmer_max |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
64 --max-kmer-freq $kmer_vals.kmer_max |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
65 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
66 |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
67 #if $qc_vals.low_cov_depth_freq |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
68 --low-cov-depth-freq $qc_vals.low_cov_depth_freq |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
69 #end if |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
70 |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
71 #if $qc_vals.max_missing_tiles |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
72 --max-missing-tiles $qc_vals.max_missing_tiles |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
73 #end if |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
74 |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
75 #if $qc_vals.min_ambiguous_tiles |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
76 --min-ambiguous-tiles $qc_vals.min_ambiguous_tiles |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
77 #end if |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
78 |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
79 #if $qc_vals.max_intermediate_tiles |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
80 --max-intermediate-tiles $qc_vals.max_intermediate_tiles |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
81 #end if |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
82 |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
83 #if $qc_vals.low_coverage_warning |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
84 --low-cov-warning $qc_vals.low_coverage_warning |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
85 #end if |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
86 |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
87 ## Adding more parameters to the command. |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
88 -vvv -t "\${GALAXY_SLOTS:-1}" -o results.tab -O match_results.tab -S tech_results.tab |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
89 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
90 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
91 ## Entering the file inputs |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
92 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
93 #if $data_type.type == "single": |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
94 |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
95 #if $data_type.fastq_input1.is_of_type('fastqsanger') or $data_type.fastq_input1.is_of_type('fastq'): |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
96 '$data_type.fastq_input1.name'.fastq |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
97 #end if |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
98 |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
99 #if $data_type.fastq_input1.is_of_type('fasta'): |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
100 '$data_type.fastq_input1.name'.fasta |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
101 #end if |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
102 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
103 #elif $data_type.type =="collection": |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
104 -p '$data_type.fastq_input1.name'_1.fastq '$data_type.fastq_input1.name'_2.fastq |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
105 |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
106 #elif $data_type.type =="paired": |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
107 -p '$data_type.fastq_input1.name'.fastq '$data_type.fastq_input2.name'.fastq |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
108 #end if |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
109 |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
110 ]]></command> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
111 <inputs> |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
112 <conditional name="data_type"> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
113 <param name="type" type="select" label="Specify the read type."> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
114 <option value="single">Single-end Data</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
115 <option value="paired">Paired-end Data</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
116 <option value="collection">Collection Paired-end Data</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
117 </param> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
118 <when value="single"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
119 <param name="fastq_input1" type="data" format="fastqsanger, fastq, fasta" label="Single end read file(s)"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
120 </when> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
121 <when value="paired"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
122 <param name="fastq_input1" type="data" format="fastqsanger, fastq" label="Forward paired-end read file"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
123 <param name="fastq_input2" type="data" format="fastqsanger, fastq" label="Reverse paired-end read file"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
124 </when> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
125 <when value="collection"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
126 <param name="fastq_input1" type="data_collection" label="Paired-end reads collection" optional="false" format="fastqsanger, fastq" collection_type="paired" /> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
127 </when> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
128 </conditional> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
129 <conditional name="type_of_scheme"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
130 <param name="scheme_type" type="select" label="Specify scheme to use. (Heidelberg is default)"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
131 <option value="heidelberg">Heidelberg scheme</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
132 <option value="enteritidis">Enteritidis scheme</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
133 <option value="custom">Specify your own custom scheme</option> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
134 </param> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
135 <when value="heidelberg"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
136 <when value="enteritidis"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
137 <when value="custom"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
138 <param name="scheme_input" type="data" format="fasta" label="Scheme Input"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
139 </when> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
140 </conditional> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
141 <!-- K-mer frequencies. --> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
142 <section name="kmer_vals" title="K-mer Frequency Thresholds" expanded="False"> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
143 <param name="kmer_min" argument="--min-kmer-freq" optional="True" type="integer" min="0" label="Min k-mer freq/coverage" value="8" help="default = 8"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
144 <param name="kmer_max" argument="--max-kmer-freq" optional="True" type="integer" min="1" label="Max k-mer freq/coverage" value="1000" help="default = 1000"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
145 </section> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
146 <!-- Quality Checking Parameters --> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
147 <section name="qc_vals" title="Quality Checking Thresholds" expanded="False"> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
148 <param name="low_cov_depth_freq" argument="--low-cov-depth-freq" optional="True" type="integer" min="0" label="QC: Frequency below this coverage are considered low coverage" value="20" help="default = 20"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
149 <param name="min_ambiguous_tiles" argument="--min-ambiguous-tiles" optional="True" type="integer" min="0" label="QC: Min number of tiles missing for Ambiguous Result" value="3" help="default = 3"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
150 <param name="max_missing_tiles" argument="--max-missing-tiles" optional="True" type="float" min="0" max="1" label="QC: Decimal Proportion of max allowed missing tiles" value="0.05" help="default = 0.05, valid values {0.0 - 1.0}"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
151 <param name="max_intermediate_tiles" argument="--max-intermediate-tiles" optional="True" type="float" min="0" max="1" label="QC: Decimal Proportion of max allowed missing tiles for an intermediate subtype" value="0.05" help="default = 0.05, valid values {0.0 - 1.0}"/> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
152 <param name="low_coverage_warning" argument="--low-cov-warning" optional="True" type="integer" min="0" label="QC: Overall tile coverage below this value will trigger a low coverage warning" value="20" help="default = 20"/> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
153 </section> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
154 <section name="dev_args" title="Developer Options" expanded="False"> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
155 <param name="use_json" type="select" label="Enable JSON output" help="Use this option of you need json representations of analysis' details"> |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
156 <option value="no">no</option> |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
157 <option value="yes">yes</option> |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
158 </param> |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
159 </section> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
160 </inputs> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
161 <outputs> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
162 <data format="tabular" name="results.tab" from_work_dir="results.tab" label="results.tab"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
163 <data format="tabular" name="match_results.tab" from_work_dir="match_results.tab" label="match_results.tab"/> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
164 <data format="tabular" name="tech_results.tab" from_work_dir="tech_results.tab" label="tech_results.tab"/> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
165 <data format="json" name="results.json" from_work_dir="results.tab.json" label="results.json"> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
166 <filter>dev_args['use_json'] == "yes"</filter> |
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
167 </data> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
168 <data format="json" name="match_results.json" from_work_dir="match_results.tab.json" label="match_results.json"> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
169 <filter>dev_args['use_json'] == "yes"</filter> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
170 </data> |
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
171 <data format="json" name="tech_results.json" from_work_dir="tech_results.tab.json" label="tech_results.json"> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
172 <filter>dev_args['use_json'] == "yes"</filter> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
173 </data> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
174 </outputs> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
175 <tests> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
176 <test> |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
177 <param name="type" value="single"/> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
178 <param name="type_of_scheme" value="heidelberg"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
179 <param name="fastq_input1" value="SRR1002850_SMALL.fasta"/> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
180 <output name="results.tab"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
181 <assert_contents> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
182 <has_text_matching expression="sample\s+scheme\s+scheme_version\s+subtype\s+all_subtypes\s+tiles_matching_subtype\s+are_subtypes_consistent\s+n_tiles_matching_all\s+n_tiles_matching_all_expected\s+n_tiles_matching_positive\s+n_tiles_matching_positive_expected\s+n_tiles_matching_subtype\s+n_tiles_matching_subtype_expected\s+file_path\s+qc_status\s+qc_message"/> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
183 </assert_contents> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
184 </output> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
185 <output name="match_results.tab"> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
186 <assert_contents> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
187 <has_text_matching expression="tilename\s+seq\s+is_revcomp\s+contig_id\s+match_index\s+refposition\s+subtype\s+is_pos_tile\s+sample\s+file_path\s+scheme\s+scheme_version\s+qc_status\s+qc_message"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
188 </assert_contents> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
189 </output> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
190 <output name="tech_results.tab"> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
191 <assert_contents> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
192 <has_text_matching expression="sample\s+subtype\s+qc_status\s+qc_message"/> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
193 </assert_contents> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
194 </output> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
195 </test> |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
196 <test> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
197 <param name="type" value="paired"/> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
198 <param name="type_of_scheme" value="heidelberg"/> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
199 <param name="fastq_input1" value="SRR5646583_SMALL_1.fastq"/> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
200 <param name="fastq_input2" value="SRR5646583_SMALL_2.fastq"/> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
201 <output name="results.tab"> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
202 <assert_contents> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
203 <has_text_matching expression="sample\s+scheme\s+scheme_version\s+subtype\s+all_subtypes\s+tiles_matching_subtype\s+are_subtypes_consistent\s+n_tiles_matching_all\s+n_tiles_matching_all_expected\s+n_tiles_matching_positive\s+n_tiles_matching_positive_expected\s+n_tiles_matching_subtype\s+n_tiles_matching_subtype_expected\s+file_path"/> |
3
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
204 </assert_contents> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
205 </output> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
206 <output name="match_results.tab"> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
207 <assert_contents> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
208 <has_text_matching expression="tilename\s+seq\s+freq\s+refposition\s+subtype\s+is_pos_tile\s+is_kmer_freq_okay\s+sample\s+scheme\s+scheme_version\s+qc_status\s+qc_message"/> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
209 </assert_contents> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
210 </output> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
211 <output name="tech_results.tab"> |
29faaa849e41
planemo upload for repository https://github.com/phac-nml/bio_hansel commit 4f09991d49a1701c54d5b97601a622e111c7290c
nml
parents:
2
diff
changeset
|
212 <assert_contents> |
5
6396d043667b
planemo upload for repository https://github.com/phac-nml/bio_hansel commit f9ecb9b31d5cace7e1a1ded13dd2e5eb8ef7759e-dirty
nml
parents:
4
diff
changeset
|
213 <has_text_matching expression="sample\s+subtype\s+avg_tile_coverage\s+qc_status\s+qc_message"/> |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
214 </assert_contents> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
215 </output> |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
216 </test> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
217 </tests> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
218 <help><![CDATA[ |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
219 *********************************************************** |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
220 bio_hansel - Heidelberg And eNteritidis Snp ELucidation |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
221 *********************************************************** |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
222 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
223 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. |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
224 Subtype *Salmonella* genome assemblies (FASTA files) and/or whole-genome sequencing reads (FASTQ files)! |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
225 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
226 Usage |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
227 ===== |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
228 1) Enter your FASTA/FASTQ file(s) |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
229 2) Select which scheme you would like to use (e.g. heidelberg, enteritidis, or specify your own) |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
230 3) Click Execute |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
231 |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
232 For more information visit `https://github.com/phac-nml/bio_hansel` |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
233 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
234 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
235 Example Usage |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
236 ============= |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
237 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
238 Analysis of a single FASTA file |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
239 ------------------------------- |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
240 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
241 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
242 Contents of ``results.tab``: |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
243 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
244 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
245 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
246 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
247 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
248 +------------+------------+-------------+------------------------------------------------+---------------------------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------+ |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
249 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
250 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
251 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
252 Contents of ``match_results.tab``: |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
253 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
254 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
255 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
256 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
257 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
258 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
259 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
260 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
261 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
262 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
263 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
264 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
265 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
266 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
267 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
268 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
269 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
270 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
271 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
272 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
273 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
274 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
275 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
276 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
277 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
278 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
279 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
280 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
281 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
282 +-----------------------------+---------------------------------------+--------+--------+----------+---------+--------+------+--------+--------+--------+----------+------+--------+-----------------------------------+----------+----------+-----------------+-------------+-------------+--------+------------+------------+ |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
283 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
284 Next 196 lines omitted. |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
285 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
286 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
287 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
288 Analysis of a single FASTQ readset |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
289 ---------------------------------- |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
290 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
291 Contents of ``results.tab``: |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
292 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
293 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
294 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
295 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
296 | 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 | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
297 +--------+------------+-------------+------------------------------------------------+------------------------------------------+-------------------------+-----------------------+----------------------+----------------------------+---------------------------+---------------------------------+--------------------------+--------------------------------+------------------------------------------+ |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
298 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
299 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
300 Contents of ``match_results.tab``: |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
301 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
302 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
303 | seq | freq | sample | file_path | tilename | is_pos_tile | subtype | refposition | is_kmer_freq_okay | scheme | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
304 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
305 | ACGGTAAAAGAGGACTTGACTGGCGCGATTTGC | 68 | 564 | forward.fastqsanger; reverse.fastqsanger | 21097-2.2.1.1.1 | True | 2.2.1.1.1 | 21097 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
306 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
307 | AACCGGCGGTATTGGCTGCGGTAAAAGTACCGT | 77 | 564 | forward.fastqsanger; reverse.fastqsanger | 157792-2.2.1.1.1 | True | 2.2.1.1.1 | 157792 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
308 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
309 | CCGCTGCTTTCTGAAATCGCGCGTCGTTTCAAC | 67 | 564 | forward.fastqsanger; reverse.fastqsanger | 293728-2.2.1.1 | True | 2.2.1.1 | 293728 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
310 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
311 | GAATAACAGCAAAGTGATCATGATGCCGCTGGA | 91 | 564 | forward.fastqsanger; reverse.fastqsanger | 607438-2.2.1 | True | 2.2.1 | 607438 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
312 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
313 | CAGTTTTACATCCTGCGAAATGCGCAGCGTCAA | 87 | 564 | forward.fastqsanger; reverse.fastqsanger | 691203-2.2.1.1 | True | 2.2.1.1 | 691203 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
314 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
315 | CAGGAGAAAGGATGCCAGGGTCAACACGTAAAC | 33 | 564 | forward.fastqsanger; reverse.fastqsanger | 944885-2.2.1.1.1 | True | 2.2.1.1.1 | 944885 | True | heidelberg | |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
316 +-----------------------------------+------+--------+------------------------------------------+------------------+-------------+-----------+-------------+-------------------+------------+ |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
317 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
318 Next 200 lines omitted. |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
319 |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
320 Galaxy wrapper written by Matthew Gopez at the Public Health Agency of Canada, National Microbiology Laboratory. |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
321 |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
322 ]]></help> |
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
323 <citations> |
1
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
324 <citation type="bibtex">@ARTICLE{a1, |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
325 title = {A robust genotyping scheme for *Salmonella enterica* serovar Heidelberg clones circulating in North America.}, |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
326 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.}, |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
327 url = {https://github.com/phac-nml/bio_hansel} |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
328 } |
ba271365095e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
nml
parents:
0
diff
changeset
|
329 }</citation> |
0
9407a9eaad22
planemo upload for repository https://github.com/phac-nml/bio_hansel commit c35a4502f95471e22dea2d77f36b92c47424cecc
nml
parents:
diff
changeset
|
330 </citations> |
6
5a42e475436e
planemo upload for repository https://github.com/phac-nml/bio_hansel commit e04f7d6043451f66946394d5a14582a1b39a6ec7-dirty
nml
parents:
5
diff
changeset
|
331 </tool> |