Mercurial > repos > iuc > sickle
comparison 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 |
comparison
equal
deleted
inserted
replaced
2:013275060443 | 3:89c9361b93da |
---|---|
10 sickle | 10 sickle |
11 | 11 |
12 #if str($readtype.single_or_paired) == "se": | 12 #if str($readtype.single_or_paired) == "se": |
13 se -f "${readtype.input_single}" -o "$output_single" | 13 se -f "${readtype.input_single}" -o "$output_single" |
14 | 14 |
15 #if $readtype.input_single.ext in ("fastq", "fastqsanger"): | 15 #if $readtype.is_of_type("fastq", "fastqsanger"): |
16 -t sanger | 16 -t sanger |
17 #else if $readtype.input_single.ext == "fastqillumina": | 17 #else if $readtype.input_single.is_of_type('fastqillumina'): |
18 -t illumina | 18 -t illumina |
19 #else if $readtype.input_single.ext == "fastqsolexa": | 19 #else if $readtype.input_single.is_of_type('fastqsolexa'): |
20 -t solexa | 20 -t solexa |
21 #end if | 21 #end if |
22 #end if | 22 #end if |
23 | 23 |
24 #if str($readtype.single_or_paired) == "pe_combo": | 24 #if str($readtype.single_or_paired) == "pe_combo": |
26 pe -c "${readtype.input_combo}" -M "$output_combo" | 26 pe -c "${readtype.input_combo}" -M "$output_combo" |
27 #else | 27 #else |
28 pe -c "${readtype.input_combo}" -m "$output_combo" -s "$output_combo_single" | 28 pe -c "${readtype.input_combo}" -m "$output_combo" -s "$output_combo_single" |
29 #end if | 29 #end if |
30 | 30 |
31 #if $readtype.input_combo.ext in ("fastq", "fastqsanger"): | 31 #if $readtype.input_combo.is_of_type("fastq", "fastqsanger"): |
32 -t sanger | 32 -t sanger |
33 #else if $readtype.input_combo.ext == "fastqillumina": | 33 #else if $readtype.input_combo.is_of_type('fastqillumina'): |
34 -t illumina | 34 -t illumina |
35 #else if $readtype.input_combo.ext == "fastqsolexa": | 35 #else if $readtype.input_combo.is_of_type('fastqsolexa'): |
36 -t solexa | 36 -t solexa |
37 #end if | 37 #end if |
38 #end if | 38 #end if |
39 | 39 |
40 #if str($readtype.single_or_paired) == "pe_sep": | 40 #if str($readtype.single_or_paired) == "pe_sep": |
41 pe -f "${readtype.input_paired1}" -r "${readtype.input_paired2}" -o "$output_paired1" -p "$output_paired2" -s "$output_paired_single" | 41 pe -f "${readtype.input_paired1}" -r "${readtype.input_paired2}" -o "$output_paired1" -p "$output_paired2" -s "$output_paired_single" |
42 | 42 |
43 #if $readtype.input_paired1.ext in ("fastq", "fastqsanger"): | 43 #if $readtype.input_paired1.is_of_type("fastq", "fastqsanger"): |
44 -t sanger | 44 -t sanger |
45 #else if $readtype.input_paired1.ext == "fastqillumina": | 45 #else if $readtype.input_paired1.is_of_type('fastqillumina'): |
46 -t illumina | 46 -t illumina |
47 #else if $readtype.input_paired1.ext == "fastqsolexa": | 47 #else if $readtype.input_paired1.is_of_type('fastqsolexa'): |
48 -t solexa | 48 -t solexa |
49 #end if | 49 #end if |
50 #end if | 50 #end if |
51 | 51 |
52 #if str($readtype.single_or_paired) == "pe_collection": | 52 #if str($readtype.single_or_paired) == "pe_collection": |
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" | 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" |
54 | 54 |
55 #if $readtype.input_paired.forward.ext in ("fastq", "fastqsanger"): | 55 #if $readtype.input_paired.forward.is_of_type("fastq", "fastqsanger"): |
56 -t sanger | 56 -t sanger |
57 #else if $readtype.input_paired.forward.ext == "fastqillumina": | 57 #else if $readtype.input_paired.forward.is_of_type('fastqillumina'): |
58 -t illumina | 58 -t illumina |
59 #else if $readtype.input_paired.forward.ext == "fastqsolexa": | 59 #else if $readtype.input_paired.forward.is_of_type('fastqsolexa'): |
60 -t solexa | 60 -t solexa |
61 #end if | 61 #end if |
62 #end if | 62 #end if |
63 | 63 |
64 #if str($qual_threshold) != "": | 64 #if str($qual_threshold) != "": |