annotate sickle.xml @ 3:89c9361b93da draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
author iuc
date Sat, 21 Jan 2017 13:08:43 -0500
parents 013275060443
children edaa8572219d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
1 <tool id="sickle" name="Sickle" version="1.33">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
2 <description>windowed adaptive trimming of FASTQ data</description>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
3 <requirements>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
4 <requirement type="package" version="1.33">sickle</requirement>
2
013275060443 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 9cf2e1454bf23a11ca0e7eeb26b4eaa446832bf8-dirty
iuc
parents: 1
diff changeset
5 <!-- conda dependency -->
013275060443 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 9cf2e1454bf23a11ca0e7eeb26b4eaa446832bf8-dirty
iuc
parents: 1
diff changeset
6 <requirement type="package" version="1.33">sickle-trim</requirement>
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
7 </requirements>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
8 <version_command>sickle --version | head -n 1</version_command>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
9 <command>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
10 sickle
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
11
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
12 #if str($readtype.single_or_paired) == "se":
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
13 se -f "${readtype.input_single}" -o "$output_single"
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
14
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
15 #if $readtype.is_of_type("fastq", "fastqsanger"):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
16 -t sanger
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
17 #else if $readtype.input_single.is_of_type('fastqillumina'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
18 -t illumina
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
19 #else if $readtype.input_single.is_of_type('fastqsolexa'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
20 -t solexa
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
21 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
22 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
23
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
24 #if str($readtype.single_or_paired) == "pe_combo":
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
25 #if $readtype.output_n:
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
26 pe -c "${readtype.input_combo}" -M "$output_combo"
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
27 #else
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
28 pe -c "${readtype.input_combo}" -m "$output_combo" -s "$output_combo_single"
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
29 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
30
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
31 #if $readtype.input_combo.is_of_type("fastq", "fastqsanger"):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
32 -t sanger
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
33 #else if $readtype.input_combo.is_of_type('fastqillumina'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
34 -t illumina
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
35 #else if $readtype.input_combo.is_of_type('fastqsolexa'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
36 -t solexa
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
37 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
38 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
39
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
40 #if str($readtype.single_or_paired) == "pe_sep":
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
41 pe -f "${readtype.input_paired1}" -r "${readtype.input_paired2}" -o "$output_paired1" -p "$output_paired2" -s "$output_paired_single"
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
42
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
43 #if $readtype.input_paired1.is_of_type("fastq", "fastqsanger"):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
44 -t sanger
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
45 #else if $readtype.input_paired1.is_of_type('fastqillumina'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
46 -t illumina
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
47 #else if $readtype.input_paired1.is_of_type('fastqsolexa'):
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
48 -t solexa
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
49 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
50 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
51
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
52 #if str($readtype.single_or_paired) == "pe_collection":
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
53 pe -f "${readtype.input_paired.forward}" -r "${readtype.input_paired.reverse}" -o "${output_paired_coll.forward}" -p "${output_paired_coll.reverse}" -s "$output_paired_coll_single"
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
54
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
55 #if $readtype.input_paired.forward.is_of_type("fastq", "fastqsanger"):
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
56 -t sanger
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
57 #else if $readtype.input_paired.forward.is_of_type('fastqillumina'):
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
58 -t illumina
3
89c9361b93da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 7fded35b9fb8ba9ebfb4b4ab44f39bb51e9bc125
iuc
parents: 2
diff changeset
59 #else if $readtype.input_paired.forward.is_of_type('fastqsolexa'):
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
60 -t solexa
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
61 #end if
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
62 #end if
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
63
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
64 #if str($qual_threshold) != "":
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
65 -q $qual_threshold
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
66 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
67
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
68 #if str($length_threshold) != "":
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
69 -l $length_threshold
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
70 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
71
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
72 #if $no_five_prime:
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
73 -x
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
74 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
75
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
76 #if $trunc_n:
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
77 -n
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
78 #end if
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
79 </command>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
80
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
81 <inputs>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
82 <conditional name="readtype">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
83 <param name="single_or_paired" type="select" label="Single-end or paired-end reads?" help="Note: Sickle will infer the quality type of the file from its datatype. I.e., if the datatype is fastqsanger, then the quality type is sanger. The default is fastqsanger.">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
84 <option value="se" selected="true">Single-end</option>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
85 <option value="pe_combo">Paired-end (one interleaved input file)</option>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
86 <option value="pe_sep">Paired-end (two separate input files)</option>
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
87 <option value="pe_collection">Paired-end (as collection)</option>
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
88 </param>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
89
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
90 <when value="se">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
91 <param format="fastq" name="input_single" type="data" label="Single-end FASTQ reads" help="(-f)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
92 </when>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
93
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
94 <when value="pe_combo">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
95 <param format="fastq" name="input_combo" type="data" label="Paired-end interleaved FASTQ reads" help="(-c)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
96 <param name="output_n" type="boolean" label="Output only one file with all reads" help="This will output only one file with all the reads, where the reads that did not pass filter will be replaced with a single 'N', rather than discarded."/>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
97 </when>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
98
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
99 <when value="pe_sep">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
100 <param format="fastq" name="input_paired1" type="data" label="Paired-end forward strand FASTQ reads" help="(-f)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
101 <param format="fastq" name="input_paired2" type="data" label="Paired-end reverse strand FASTQ reads" help="(-r)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
102 </when>
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
103
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
104 <when value="pe_collection">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
105 <param format="fastq" name="input_paired" type="data_collection" collection_type="paired" label="Paired-end FASTQ reads as paired collection" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
106 </when>
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
107 </conditional>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
108
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
109 <param name="qual_threshold" value="20" min="0" type="integer" optional="true" label="Quality threshold" help="Threshold for trimming based on average quality in a window (-q)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
110
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
111 <param name="length_threshold" value="20" min="0" type="integer" optional="true" label="Length threshold" help="Threshold to keep a read based on length after trimming (-l)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
112
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
113 <param name="no_five_prime" type="boolean" label="Don't do 5' trimming" help="(-x)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
114 <param name="trunc_n" type="boolean" label="Truncate sequences with Ns at first N position" help="(-n)" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
115 </inputs>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
116
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
117 <outputs>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
118 <data name="output_single" format_source="input_single" label="Single-end output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
119 <filter>readtype['single_or_paired'] == 'se'</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
120 </data>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
121
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
122 <data name="output_combo" format_source="input_combo" label="Paired-end interleaved output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
123 <filter>readtype['single_or_paired'] == 'pe_combo'</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
124 </data>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
125
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
126 <data name="output_combo_single" format_source="input_combo" label="Singletons from paired-end interleaved output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
127 <filter>readtype['single_or_paired'] == 'pe_combo' and not readtype['output_n']</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
128 </data>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
129
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
130 <data name="output_paired1" format_source="input_paired1" label="Paired-end forward strand output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
131 <filter>readtype['single_or_paired'] == 'pe_sep'</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
132 </data>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
133
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
134 <data name="output_paired2" format_source="input_paired2" label="Paired-end reverse strand output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
135 <filter>readtype['single_or_paired'] == 'pe_sep'</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
136 </data>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
137
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
138 <data name="output_paired_single" format_source="input_paired1" label="Singletons from paired-end output of ${tool.name} on ${on_string}">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
139 <filter>readtype['single_or_paired'] == 'pe_sep'</filter>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
140 </data>
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
141
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
142 <collection name="output_paired_coll" type="paired" structured_like="input_paired" inherit_format="true" label="Paired-end output of ${tool.name} on ${on_string}">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
143 <filter>readtype['single_or_paired'] == 'pe_collection'</filter>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
144 </collection>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
145
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
146 <data name="output_paired_coll_single" format_source="input_paired['forward']" label="Singletons from paired-end output of ${tool.name} on ${on_string}">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
147 <filter>readtype['single_or_paired'] == 'pe_collection'</filter>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
148 </data>
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
149 </outputs>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
150 <tests>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
151 <test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
152 <param name="single_or_paired" value="pe_combo" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
153 <param name="input_combo" ftype="fastqsanger" value="test.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
154 <param name="qual_threshold" value="34" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
155 <output name="output_combo" ftype="fastqsanger" file="output.c1.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
156 <output name="output_combo_single" ftype="fastqsanger" file="output.s.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
157 </test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
158 <test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
159 <param name="single_or_paired" value="pe_combo" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
160 <param name="input_combo" ftype="fastqsanger" value="test.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
161 <param name="qual_threshold" value="34" />
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
162 <param name="output_n" value="true" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
163 <output name="output_combo" ftype="fastqsanger" file="output.c2.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
164 </test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
165 <test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
166 <param name="single_or_paired" value="pe_sep" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
167 <param name="input_paired1" ftype="fastqsanger" value="test.f.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
168 <param name="input_paired2" ftype="fastqsanger" value="test.r.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
169 <param name="qual_threshold" value="34" />
1
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
170 <output name="output_paired1" ftype="fastqsanger" file="output.f.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
171 <output name="output_paired2" ftype="fastqsanger" file="output.r.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
172 <output name="output_paired_single" ftype="fastqsanger" file="output.s.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
173 </test>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
174 <test>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
175 <param name="single_or_paired" value="pe_collection" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
176 <param name="input_paired">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
177 <collection type="paired">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
178 <element name="forward" ftype="fastqsanger" value="test.f.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
179 <element name="reverse" ftype="fastqsanger" value="test.r.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
180 </collection>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
181 </param>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
182 <param name="qual_threshold" value="34" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
183 <output_collection name="output_paired_coll" type="paired">
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
184 <element name="forward" ftype="fastqsanger" file="output.f.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
185 <element name="reverse" ftype="fastqsanger" file="output.r.fastq" />
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
186 </output_collection>
43e081d32f90 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit dc69ff0ee8c53a78d1d378cbe14c604a019bf015
iuc
parents: 0
diff changeset
187 <output name="output_paired_coll_single" ftype="fastqsanger" file="output.s.fastq" />
0
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
188 </test>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
189 </tests>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
190 <help>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
191 **What it does**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
192
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
193 Most modern sequencing technologies produce reads that have
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
194 deteriorating quality towards the 3'-end and some towards the 5'-end
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
195 as well. Incorrectly called bases in both regions negatively impact
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
196 assembles, mapping, and downstream bioinformatics analyses.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
197
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
198 Sickle is a tool that uses sliding windows along with quality and
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
199 length thresholds to determine when quality is sufficiently low to
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
200 trim the 3'-end of reads and also determines when the quality is
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
201 sufficiently high enough to trim the 5'-end of reads. It will also
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
202 discard reads based upon the length threshold. It takes the quality
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
203 values and slides a window across them whose length is 0.1 times the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
204 length of the read. If this length is less than 1, then the window is
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
205 set to be equal to the length of the read. Otherwise, the window
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
206 slides along the quality values until the average quality in the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
207 window rises above the threshold, at which point the algorithm
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
208 determines where within the window the rise occurs and cuts the read
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
209 and quality there for the 5'-end cut. Then when the average quality
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
210 in the window drops below the threshold, the algorithm determines
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
211 where in the window the drop occurs and cuts both the read and quality
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
212 strings there for the 3'-end cut. However, if the length of the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
213 remaining sequence is less than the minimum length threshold, then the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
214 read is discarded entirely (or replaced with an "N" record). 5'-end
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
215 trimming can be disabled. Sickle also has an option to truncate reads
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
216 with Ns at the first N position.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
217
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
218 Sickle supports three types of quality values: Illumina, Solexa, and
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
219 Sanger. Note that the Solexa quality setting is an approximation (the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
220 actual conversion is a non-linear transformation). The end
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
221 approximation is close. Illumina quality refers to qualities encoded
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
222 with the CASAVA pipeline between versions 1.3 and 1.7. Illumina
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
223 quality using CASAVA >= 1.8 is Sanger encoded. The quality value will
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
224 be determined from the datatype of the data, i.e. a fastqsanger datatype
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
225 is assumed to be Sanger encoded.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
226
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
227 Note that Sickle will remove the 2nd FASTQ record header (on the "+"
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
228 line) and replace it with simply a "+". This is the default format for
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
229 CASAVA >= 1.8.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
230
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
231 -----
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
232
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
233 **Options**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
234
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
235 **Single-end**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
236
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
237 This option takes one single-end input file and outputs one single-end
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
238 output file of reads that passed the filters.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
239
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
240 **Paired-End (one interleaved input file)**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
241
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
242 This option takes as input one interleaved paired-end file. If you then
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
243 check the "Output only one file with all reads" checkbox, it will output
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
244 one interleaved file where any read that did not pass filter will be replaced
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
245 with a FASTQ record where the sequence is a single "N" and the quality is the
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
246 lowest quality possible for that quality type. This will preserve the paired
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
247 nature of the data. If you leave the checkbox unchecked, it will output two files,
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
248 one interleaved file with all the passed pairs and one singletons file where only
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
249 one of the pair passed filter.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
250
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
251 **Paired-End (two separate input files)**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
252
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
253 This option takes two separate (forward and reverse) paired-end files as input.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
254 The output is three files: Two paired-end files with pairs that passed filter and
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
255 a singletons file where only one of the pair passed filter.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
256
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
257 **Quality threshold**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
258
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
259 Input your desired quality threshold. This threshold is phred-scaled, which is typically
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
260 values between 0-41 for FASTQ data.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
261
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
262 **Length threshold**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
263
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
264 Input your desired length threshold. This is the threshold to determine if a read is kept
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
265 after all the trimming steps are done.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
266
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
267 **Disable 5-prime trimming**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
268
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
269 An option to disable trimming the read on the 5-prime end. This trimming trims the read
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
270 if the average quality values dip below the quality threshold at the 5-prime end.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
271
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
272 **Truncate sequences with Ns**
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
273
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
274 This option will trim a read at the first "N" base in the read after doing quality trimming.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
275 It is then still subject to the length threshold.
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
276
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
277 -----
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
278
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
279 Copyright: Nikhil Joshi
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
280
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
281 http://bioinformatics.ucdavis.edu
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
282
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
283 http://github.com/najoshi/sickle
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
284 </help>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
285 <citations>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
286 <citation type="bibtex">
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
287 @unpublished{sickle_link,
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
288 author = {Joshi, Nikhil A. and Fass, Joseph N.},
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
289 title = {Sickle: A windowed adaptive trimming tool for FASTQ files using quality},
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
290 year = 2011,
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
291 url = { https://github.com/najoshi/sickle }
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
292 }
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
293 </citation>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
294 </citations>
a5f56370e870 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle commit 128d3f255f00c47fa2b16d9b7432d48a089660c1
iuc
parents:
diff changeset
295 </tool>