Mercurial > repos > devteam > bowtie2
annotate bowtie2_wrapper.xml @ 13:12450efac659 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit b22fc2e7243522b264f3d5d00706df8d18366405
author | devteam |
---|---|
date | Mon, 09 Jan 2017 04:31:00 -0500 |
parents | 781e3a3b9d31 |
children | 937aa69e715f |
rev | line source |
---|---|
12
781e3a3b9d31
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a326a3469adfd33babe792cf58544438582a56a1
devteam
parents:
11
diff
changeset
|
1 <tool id="bowtie2" name="Bowtie2" version="2.3.0"> |
2 | 2 <description>- map reads against reference genome</description> |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
3 <macros> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
4 <import>read_group_macros.xml</import> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
5 </macros> |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
6 <requirements> |
12
781e3a3b9d31
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a326a3469adfd33babe792cf58544438582a56a1
devteam
parents:
11
diff
changeset
|
7 <requirement type="package" version="2.3.0">bowtie2</requirement> |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
8 <requirement type="package" version="1.3.1">samtools</requirement> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
9 </requirements> |
0 | 10 <version_command>bowtie2 --version</version_command> |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
11 <command detect_errors="exit_code"><![CDATA[ |
0 | 12 ## prepare bowtie2 index |
13 #set index_path = '' | |
14 #if str($reference_genome.source) == "history": | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
15 bowtie2-build --threads \${GALAXY_SLOTS:-4} '$reference_genome.own_file' genome && |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
16 ln -s -f '$reference_genome.own_file' genome.fa && |
0 | 17 #set index_path = 'genome' |
18 #else: | |
13
12450efac659
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit b22fc2e7243522b264f3d5d00706df8d18366405
devteam
parents:
12
diff
changeset
|
19 #set index_path = $reference_genome.index.fields.path |
0 | 20 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
21 |
0 | 22 ## execute bowtie2 |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
23 |
0 | 24 bowtie2 |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
25 |
0 | 26 ## number of threads |
27 -p \${GALAXY_SLOTS:-4} | |
28 | |
29 ## index file path | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
30 -x '$index_path' |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
31 |
2 | 32 ## Fastq inputs |
33 #if str( $library.type ) == "single": | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
34 -U '${library.input_1}' |
2 | 35 #if str( $library.unaligned_file ) == "true": |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
36 --un '$output_unaligned_reads_l' |
0 | 37 #end if |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
38 #if str( $library.aligned_file ) == "true": |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
39 --al '$output_aligned_reads_l' |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
40 #end if |
2 | 41 #elif str( $library.type ) == "paired": |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
42 -1 '${library.input_1}' |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
43 -2 '${library.input_2}' |
2 | 44 #if str( $library.paired_options.paired_options_selector ) == "yes": |
45 -I "${library.paired_options.I}" | |
46 -X "${library.paired_options.X}" | |
47 ${library.paired_options.fr_rf_ff} | |
48 ${library.paired_options.no_mixed} | |
49 ${library.paired_options.no_discordant} | |
50 ${library.paired_options.dovetail} | |
51 ${library.paired_options.no_contain} | |
52 ${library.paired_options.no_overlap} | |
53 #end if | |
54 #if str( $library.unaligned_file ) == "true": | |
55 --un-conc $output_unaligned_reads_l | |
56 #end if | |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
57 #if str( $library.aligned_file ) == "true": |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
58 --al-conc $output_aligned_reads_l |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
59 #end if |
0 | 60 #else |
2 | 61 ## prepare collection |
62 -1 $library.input_1.forward | |
63 -2 $library.input_1.reverse | |
64 #if str( $library.paired_options.paired_options_selector ) == "yes": | |
65 -I "${library.paired_options.I}" | |
66 -X "${library.paired_options.X}" | |
67 ${library.paired_options.fr_rf_ff} | |
68 ${library.paired_options.no_mixed} | |
69 ${library.paired_options.no_discordant} | |
70 ${library.paired_options.dovetail} | |
71 ${library.paired_options.no_contain} | |
72 ${library.paired_options.no_overlap} | |
73 #end if | |
74 #if str( $library.unaligned_file ) == "true": | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
75 --un-conc '$output_unaligned_reads_l' |
0 | 76 #end if |
77 #end if | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
78 |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
79 ## Read group information. |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
80 @define_read_group_helpers@ |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
81 #if str( $library.type ) == "single": |
6
e23b0cdeeba6
planemo upload commit 5ad726dc73203a704666033cd3bf70b82575978f
devteam
parents:
5
diff
changeset
|
82 #set $rg_auto_name = $read_group_name_default($library.input_1) |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
83 #elif str( $library.type ) == "paired": |
6
e23b0cdeeba6
planemo upload commit 5ad726dc73203a704666033cd3bf70b82575978f
devteam
parents:
5
diff
changeset
|
84 #set $rg_auto_name = $read_group_name_default($library.input_1, $library.input_2) |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
85 #else |
6
e23b0cdeeba6
planemo upload commit 5ad726dc73203a704666033cd3bf70b82575978f
devteam
parents:
5
diff
changeset
|
86 #set $rg_auto_name = $read_group_name_default($library.input_1) |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
87 #end if |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
88 @set_use_rg_var@ |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
89 @set_read_group_vars@ |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
90 #if $use_rg |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
91 $format_read_group("", $rg_id, '"', arg='--rg-id ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
92 $format_read_group("SM:", $rg_sm, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
93 $format_read_group("PL:", $rg_pl, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
94 $format_read_group("LB:", $rg_lb, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
95 $format_read_group("CN:", $rg_cn, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
96 $format_read_group("DS:", $rg_ds, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
97 $format_read_group("DT:", $rg_dt, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
98 $format_read_group("FO:", $rg_fo, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
99 $format_read_group("KS:", $rg_ks, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
100 $format_read_group("PG:", $rg_pg, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
101 $format_read_group("PI:", $rg_pi, '"', arg='--rg ') |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
102 $format_read_group("PU:", $rg_pu, '"', arg='--rg ') |
2 | 103 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
104 |
2 | 105 ## Analysis type |
106 #if ( str( $analysis_type.analysis_type_selector ) == "simple" and str( $analysis_type.presets ) != "no_presets" ): | |
107 $analysis_type.presets | |
108 #elif str( $analysis_type.analysis_type_selector ) == "full": | |
109 #if str( $analysis_type.input_options.input_options_selector ) == "yes": | |
110 --skip "${analysis_type.input_options.skip}" | |
111 --qupto "${analysis_type.input_options.qupto}" | |
112 --trim5 "${analysis_type.input_options.trim5}" | |
113 --trim3 "${analysis_type.input_options.trim3}" | |
114 ${analysis_type.input_options.qv_encoding} | |
3 | 115 ${analysis_type.input_options.solexa_quals} |
116 ${analysis_type.input_options.int_quals} | |
0 | 117 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
118 |
2 | 119 #if str( $analysis_type.alignment_options.alignment_options_selector ) == "yes": |
3 | 120 -N "${analysis_type.alignment_options.N}" |
121 -L "${analysis_type.alignment_options.L}" | |
122 -i "${analysis_type.alignment_options.i}" | |
123 --n-ceil "${analysis_type.alignment_options.n_ceil}" | |
124 --dpad "${analysis_type.alignment_options.dpad}" | |
125 --gbar "${analysis_type.alignment_options.gbar}" | |
126 ${analysis_type.alignment_options.ignore_quals} | |
2 | 127 ${analysis_type.alignment_options.nofw} |
128 ${analysis_type.alignment_options.norc} | |
129 ${analysis_type.alignment_options.no_1mm_upfront} | |
130 #if str( $analysis_type.alignment_options.align_mode.align_mode_selector ) == "end-to-end": | |
131 --end-to-end | |
3 | 132 --score-min "${analysis_type.alignment_options.align_mode.score_min_ete}" |
2 | 133 #elif str( $analysis_type.alignment_options.align_mode.align_mode_selector ) == "local": |
134 --local | |
3 | 135 --score-min "${analysis_type.alignment_options.align_mode.score_min_loc}" |
2 | 136 #end if |
137 #end if | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
138 |
2 | 139 #if str( $analysis_type.scoring_options.scoring_options_selector ) == "yes": |
3 | 140 #if ( str( $analysis_type.alignment_options.alignment_options_selector ) == "yes" and str( $analysis_type.alignment_options.align_mode.align_mode_selector ) == "local" ): |
141 --ma "${analysis_type.scoring_options.ma}" | |
142 #end if | |
2 | 143 --mp "${analysis_type.scoring_options.mp}" |
144 --np "${analysis_type.scoring_options.np}" | |
145 --rdg "${analysis_type.scoring_options.rdg_read_open},${analysis_type.scoring_options.rdg_read_extend}" | |
146 --rfg "${analysis_type.scoring_options.rfg_ref_open},${analysis_type.scoring_options.rfg_ref_extend}" | |
147 #end if | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
148 |
2 | 149 #if str( $analysis_type.reporting_options.reporting_options_selector ) == "k": |
150 -k "${analysis_type.reporting_options.k}" | |
151 #elif str( $analysis_type.reporting_options.reporting_options_selector ) == "a": | |
152 -a | |
153 #end if | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
154 |
2 | 155 #if str( $analysis_type.effort_options.effort_options_selector ) == "yes": |
156 -D "${analysis_type.effort_options.D}" | |
157 -R "${analysis_type.effort_options.R}" | |
158 #end if | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
159 |
2 | 160 #if str( $analysis_type.sam_options.sam_options_selector ) == "yes": |
3 | 161 ${analysis_type.sam_options.no_unal} |
162 ${analysis_type.sam_options.omit_sec_seq} | |
2 | 163 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
164 |
2 | 165 #if str( $analysis_type.other_options.other_options_selector ) == "yes": |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
166 ${analysis_type.other_options.reorder} |
3 | 167 ${analysis_type.other_options.non_deterministic} |
2 | 168 --seed "${analysis_type.other_options.seed}" |
0 | 169 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
170 |
2 | 171 #elif str( $analysis_type.analysis_type_selector ) == "cline": |
172 ${analysis_type.cline} | |
4
1fc845afa3ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 32fe80982b5c59687eece667f0372002588566f8-dirty
devteam
parents:
3
diff
changeset
|
173 #end if |
1fc845afa3ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 32fe80982b5c59687eece667f0372002588566f8-dirty
devteam
parents:
3
diff
changeset
|
174 |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
175 ## mapping stats (i.e. stderr from bowtie2) |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
176 #if $save_mapping_stats |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
177 2> '$mapping_stats' |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
178 #end if |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
179 |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
180 ## output file |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
181 #if ( str( $analysis_type.analysis_type_selector ) != "full" or str( $analysis_type.sam_opt ) != "true" ): |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
182 | samtools sort -O bam -o '$output' |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
183 #else |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
184 > '$output_sam' |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
185 #end if |
3 | 186 |
0 | 187 ## rename unaligned sequence files |
188 #if $library.type == "paired" and $output_unaligned_reads_l and $output_unaligned_reads_r: | |
4
1fc845afa3ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 32fe80982b5c59687eece667f0372002588566f8-dirty
devteam
parents:
3
diff
changeset
|
189 #from os.path import splitext |
1fc845afa3ac
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 32fe80982b5c59687eece667f0372002588566f8-dirty
devteam
parents:
3
diff
changeset
|
190 #set _unaligned_root, _unaligned_ext = splitext( str( $output_unaligned_reads_l ) ) |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
191 && mv "${ _unaligned_root }.1${_unaligned_ext}" '$output_unaligned_reads_l' |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
192 && mv "${ _unaligned_root }.2${_unaligned_ext}" '$output_unaligned_reads_r' |
0 | 193 #end if |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
194 #if $library.type == "paired" and $output_aligned_reads_l and $output_aligned_reads_r: |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
195 #from os.path import splitext |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
196 #set _aligned_root, _aligned_ext = splitext( str( $output_aligned_reads_l ) ) |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
197 && mv "${ _aligned_root }.1${_aligned_ext}" '$output_aligned_reads_l' |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
198 && mv "${ _aligned_root }.2${_aligned_ext}" '$output_aligned_reads_r' |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
199 #end if |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
200 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
201 ]]></command> |
0 | 202 <inputs> |
203 <!-- single/paired --> | |
204 <conditional name="library"> | |
2 | 205 <param name="type" type="select" label="Is this single or paired library"> |
0 | 206 <option value="single">Single-end</option> |
207 <option value="paired">Paired-end</option> | |
2 | 208 <option value="paired_collection">Paired-end Dataset Collection</option> |
0 | 209 </param> |
2 | 210 |
0 | 211 <when value="single"> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
212 <param name="input_1" format="fastqsanger" type="data" label="FASTQ file" help="Must be of datatype "fastqsanger"" /> |
2 | 213 <param name="unaligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write unaligned reads (in fastq format) to separate file(s)" help="--un/--un-conc; This triggers --un parameter for single reads and --un-conc for paired reads" /> |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
214 <param name="aligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write aligned reads (in fastq format) to separate file(s)" help="--al/--al-conc; This triggers --al parameter for single reads and --al-conc for paired reads" /> |
0 | 215 </when> |
216 <when value="paired"> | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
217 <param name="input_1" format="fastqsanger" type="data" label="FASTQ file #1" help="Must be of datatype "fastqsanger"" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
218 <param name="input_2" format="fastqsanger" type="data" label="FASTQ file #2" help="Must be of datatype "fastqsanger"" /> |
2 | 219 <param name="unaligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write unaligned reads (in fastq format) to separate file(s)" help="--un/--un-conc; This triggers --un parameter for single reads and --un-conc for paired reads" /> |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
220 <param name="aligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write aligned reads (in fastq format) to separate file(s)" help="--al/--al-conc; This triggers --al parameter for single reads and --al-conc for paired reads" /> |
2 | 221 <conditional name="paired_options"> |
222 <param name="paired_options_selector" type="select" label="Do you want to set paired-end options?" help="See "Alignment Options" section of Help below for information"> | |
223 <option value="no" selected="True">No</option> | |
224 <option value="yes">Yes</option> | |
225 </param> | |
226 <when value="yes"> | |
227 <param name="I" type="integer" value="0" min="0" label="Set the minimum fragment length for valid paired-end alignments" help="-I/--minins; E.g. if `-I 60` is specified and a paired-end alignment consists of two 20-bp alignments in the appropriate orientation with a 20-bp gap between them, that alignment is considered valid (as long as `-X` is also satisfied). A 19-bp gap would not be valid in that case. If trimming options `-3` or `-5` are also used, the `-I` constraint is applied with respect to the untrimmed mates. The larger the difference between `-I` and `-X`, the slower Bowtie 2 will run. This is because larger differences bewteen `-I` and `-X` require that Bowtie 2 scan a larger window to determine if a concordant alignment exists. For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very efficient. Default=0"/> | |
3 | 228 <param name="X" type="integer" value="500" min="0" label="Set the maximum fragment length for valid paired-end alignments" help="-X/--maxins; E.g. if `-X 100` is specified and a paired-end alignment consists of two 20-bp alignments in the proper orientation with a 60-bp gap between them, that alignment is considered valid (as long as `-I` is also satisfied). A 61-bp gap would not be valid in that case. If trimming options `-3` or `-5` are also used, the `-X` constraint is applied with respect to the untrimmed mates, not the trimmed mates; Default=500"/> |
229 <param name="fr_rf_ff" type="select" display="radio" label="Select the upstream/downstream mate orientations for a valid paired-end alignment against the forward reference strand" help="--fr, --rf, or --ff; E.g., if `--fr` is specified and there is a candidate paired-end alignment where mate 1 appears upstream of the reverse complement of mate 2 and the fragment length constraints (`-I` and `-X`) are met, that alignment is valid. Also, if mate 2 appears upstream of the reverse complement of mate 1 and all other constraints are met, that too is valid. `--rf` likewise requires that an upstream mate1 be reverse-complemented and a downstream mate2 be forward-oriented. `--ff` requires both an upstream mate 1 and a downstream mate 2 to be forward-oriented; Default=--fr (appropriate for Illumina's Paired-end Sequencing Assay)"> | |
2 | 230 <option value="--fr" selected="True">--fr</option> |
3 | 231 <option value="--rf">--rf</option> |
2 | 232 <option value="--ff">--ff</option> |
233 </param> | |
234 <param name="no_mixed" type="boolean" truevalue="--no-mixed" falsevalue="" checked="False" label="Disable no-mixed behavior" help="--no-mixed; By default, when `bowtie2` cannot find a concordant or discordant alignment for a pair, it then tries to find alignments for the individual mates; default=False"/> | |
235 <param name="no_discordant" type="boolean" truevalue="--no-discordant" falsevalue="" checked="False" label="Disable no-discordant behavior" help="--no-discordant; By default, `bowtie2` looks for discordant alignments if it cannot find any concordant alignments. A discordant alignment is an alignment where both mates align uniquely, but that does not satisfy the paired-end constraints (`--fr`/`--rf`/`--ff`, `-I`, `-X`); default=False"/> | |
3 | 236 <param name="dovetail" type="boolean" truevalue="--dovetail" falsevalue="" checked="False" label="Allow mate dovetailing" help="--dovetail; If the mates `dovetail`, that is if one mate alignment extends past the beginning of the other such that the wrong mate begins upstream, consider that to be concordant. Default=False"/> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
237 <param name="no_contain" type="boolean" truevalue="--no-contain" falsevalue="" checked="False" label="Disallow one mate alignment to contain another" help="--no-contain; If one mate alignment contains the other, consider that to be non-concordant. Default=False"/> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
238 <param name="no_overlap" type="boolean" truevalue="--no-overlap" falsevalue="" checked="False" label="Disallow mate alignments to overlap" help="--no-overlap; If one mate alignment overlaps the other at all, consider that to be non-concordant. Default=False"/> |
2 | 239 </when> |
240 <when value="no"> | |
241 <!-- do nothing --> | |
242 </when> | |
243 </conditional> | |
244 </when> | |
245 <when value="paired_collection"> | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
246 <param name="input_1" format="fastqsanger" type="data_collection" collection_type="paired" label="FASTQ Paired Dataset" help="Must be of datatype "fastqsanger"" /> |
2 | 247 <param name="unaligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write unaligned reads (in fastq format) to separate file(s)" help="--un/--un-conc; This triggers --un parameter for single reads and --un-conc for paired reads" /> |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
248 <param name="aligned_file" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write aligned reads (in fastq format) to separate file(s)" help="--al/--al-conc; This triggers --al parameter for single reads and --al-conc for paired reads" /> |
2 | 249 <conditional name="paired_options"> |
250 <param name="paired_options_selector" type="select" label="Do you want to set paired-end options?" help="See "Alignment Options" section of Help below for information"> | |
251 <option value="no" selected="True">No</option> | |
252 <option value="yes">Yes</option> | |
253 </param> | |
254 <when value="yes"> | |
255 <param name="I" type="integer" value="0" min="0" label="Set the minimum fragment length for valid paired-end alignments" help="-I/--minins; E.g. if `-I 60` is specified and a paired-end alignment consists of two 20-bp alignments in the appropriate orientation with a 20-bp gap between them, that alignment is considered valid (as long as `-X` is also satisfied). A 19-bp gap would not be valid in that case. If trimming options `-3` or `-5` are also used, the `-I` constraint is applied with respect to the untrimmed mates. The larger the difference between `-I` and `-X`, the slower Bowtie 2 will run. This is because larger differences bewteen `-I` and `-X` require that Bowtie 2 scan a larger window to determine if a concordant alignment exists. For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very efficient. Default=0"/> | |
3 | 256 <param name="X" type="integer" value="500" min="0" label="Set the maximum fragment length for valid paired-end alignments" help="-X/--maxins; E.g. if `-X 100` is specified and a paired-end alignment consists of two 20-bp alignments in the proper orientation with a 60-bp gap between them, that alignment is considered valid (as long as `-I` is also satisfied). A 61-bp gap would not be valid in that case. If trimming options `-3` or `-5` are also used, the `-X` constraint is applied with respect to the untrimmed mates, not the trimmed mates; Default=500"/> |
257 <param name="fr_rf_ff" type="select" display="radio" label="Select the upstream/downstream mate orientations for a valid paired-end alignment against the forward reference strand" help="--fr, --rf, or --ff; E.g., if `--fr` is specified and there is a candidate paired-end alignment where mate 1 appears upstream of the reverse complement of mate 2 and the fragment length constraints (`-I` and `-X`) are met, that alignment is valid. Also, if mate 2 appears upstream of the reverse complement of mate 1 and all other constraints are met, that too is valid. `--rf` likewise requires that an upstream mate1 be reverse-complemented and a downstream mate2 be forward-oriented. `--ff` requires both an upstream mate 1 and a downstream mate 2 to be forward-oriented; Default=--fr (appropriate for Illumina's Paired-end Sequencing Assay)"> | |
2 | 258 <option value="--fr" selected="True">--fr</option> |
3 | 259 <option value="--rf">--rf</option> |
2 | 260 <option value="--ff">--ff</option> |
261 </param> | |
262 <param name="no_mixed" type="boolean" truevalue="--no-mixed" falsevalue="" checked="False" label="Disable no-mixed behavior" help="--no-mixed; By default, when `bowtie2` cannot find a concordant or discordant alignment for a pair, it then tries to find alignments for the individual mates; default=False"/> | |
263 <param name="no_discordant" type="boolean" truevalue="--no-discordant" falsevalue="" checked="False" label="Disable no-discordant behavior" help="--no-discordant; By default, `bowtie2` looks for discordant alignments if it cannot find any concordant alignments. A discordant alignment is an alignment where both mates align uniquely, but that does not satisfy the paired-end constraints (`--fr`/`--rf`/`--ff`, `-I`, `-X`); default=False"/> | |
3 | 264 <param name="dovetail" type="boolean" truevalue="--dovetail" falsevalue="" checked="False" label="Allow mate dovetailing" help="--dovetail; If the mates `dovetail`, that is if one mate alignment extends past the beginning of the other such that the wrong mate begins upstream, consider that to be concordant. Default=False"/> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
265 <param name="no_contain" type="boolean" truevalue="--no-contain" falsevalue="" checked="False" label="Disallow one mate alignment to contain another" help="--no-contain; If one mate alignment contains the other, consider that to be non-concordant. Default=False"/> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
266 <param name="no_overlap" type="boolean" truevalue="--no-overlap" falsevalue="" checked="False" label="Disallow mate alignments to overlap" help="--no-overlap; If one mate alignment overlaps the other at all, consider that to be non-concordant. Default=False"/> |
2 | 267 </when> |
268 <when value="no"> | |
269 <!-- do nothing --> | |
270 </when> | |
271 </conditional> | |
0 | 272 </when> |
273 </conditional> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
274 |
0 | 275 <!-- reference genome --> |
276 <conditional name="reference_genome"> | |
2 | 277 <param name="source" type="select" label="Will you select a reference genome from your history or use a built-in index?" help="Built-ins were indexed using default options. See `Indexes` section of help below"> |
278 <option value="indexed">Use a built-in genome index</option> | |
279 <option value="history">Use a genome from the history and build index</option> | |
0 | 280 </param> |
281 <when value="indexed"> | |
2 | 282 <param name="index" type="select" label="Select reference genome" help="If your genome of interest is not listed, contact the Galaxy team"> |
0 | 283 <options from_data_table="bowtie2_indexes"> |
284 <filter type="sort_by" column="2"/> | |
285 <validator type="no_options" message="No indexes are available for the selected input dataset"/> | |
286 </options> | |
287 </param> | |
288 </when> | |
289 <when value="history"> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
290 <param name="own_file" type="data" format="fasta" label="Select reference genome" /> |
0 | 291 </when> |
292 </conditional> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
293 |
2 | 294 <!-- read group settings --> |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
295 <expand macro="read_group_conditional" /> |
2 | 296 <conditional name="analysis_type"> |
297 <param name="analysis_type_selector" type="select" label="Select analysis mode"> | |
298 <option value="simple">1: Default setting only</option> | |
299 <option value="full">2: Full parameter list</option> | |
0 | 300 </param> |
2 | 301 <when value="simple"> |
302 <param name="presets" type="select" display="radio" label="Do you want to use presets?" help="Allow selecting among several preset parameter settings. Choosing between these will result in dramatic changes in runtime. See help below to understand effects of these presets."> | |
303 <option value="no_presets" selected="True">No, just use defaults</option> | |
304 <option value="--very-fast">Very fast end-to-end (--very-fast)</option> | |
305 <option value="--fast">Fast end-to-end (--fast)</option> | |
306 <option value="--sensitive">Sensitive end-to-end (--sensitive)</option> | |
307 <option value="--very-sensitive">Very sensitive end-to-end (--very-sensitive)</option> | |
308 <option value="--very-fast-local">Very fast local (--very-fast-local)</option> | |
309 <option value="--fast-local">Fast local (--fast-local)</option> | |
310 <option value="--sensitive-local">Sensitive local (--sensitive-local)</option> | |
311 <option value="--very-sensitive-local">Very sensitive local (--very-sensitive-local)</option> | |
0 | 312 </param> |
2 | 313 </when> |
314 <when value="full"> | |
315 <conditional name="input_options"> | |
316 <param name="input_options_selector" type="select" label="Do you want to tweak input options?" help="See "Input Options" section of Help below for information"> | |
317 <option value="yes">Yes</option> | |
318 <option value="no" selected="true">No</option> | |
319 </param> | |
320 <when value="yes"> | |
3 | 321 <param name="skip" type="integer" min="0" value="0" label="Skip (i.e. do not align) the first that many reads or pairs in the input" help="-s/--skip; default=0"/> |
322 <param name="qupto" type="integer" min="1" value="100000000" label="Align the first that many reads or read pairs from the input (after the -s/--skip reads or pairs have been skipped), then stop" help="-u/--qupto; for default behavior (no limit) leave this value very large"/> | |
2 | 323 <param name="trim5" type="integer" min="0" value="0" label="Trim that many bases from 5' (left) end of each read before alignment" help="-5/--trim5; default=0"/> |
324 <param name="trim3" type="integer" min="0" value="0" label="Trim that many bases from 3' (right) end of each read before alignment" help="-3/--trim3; default=0"/> | |
325 <param name="qv_encoding" type="select" display="radio" label="Select quality score encoding" help="See help below for more details"> | |
3 | 326 <option value="--phred33" selected="True">Input qualities are ASCII chars equal to the Phred quality plus 33. This is also called the "Phred+33" encoding, which is used by the very latest Illumina pipelines (--phred33)</option> |
327 <option value="--phred64">Input qualities are ASCII chars equal to the Phred quality plus 64. This is also called the "Phred+64" encoding (--phred64)</option> | |
2 | 328 </param> |
3 | 329 <param name="solexa_quals" type="boolean" truevalue="--solexa-quals" falsevalue="" checked="False" label="Convert input qualities from Solexa (which can be negative) to Phred (which can't). This scheme was used in older Illumina GA Pipeline versions (prior to 1.3)" help="--solexa-quals; default=False"/> |
330 <param name="int_quals" type="boolean" truevalue="--int-quals" falsevalue="" checked="False" label="Quality values are represented in the read input file as space-separated ASCII integers, e.g., 40 40 30 40..., rather than ASCII characters, e.g., II?I.... Integers are treated as being on the Phred quality scale unless --solexa-quals is also specified" help="--int-quals; default=False"/> | |
2 | 331 </when> |
332 <when value="no"> | |
333 <!-- do nothing --> | |
334 </when> | |
335 </conditional> | |
336 <conditional name="alignment_options"> | |
337 <param name="alignment_options_selector" type="select" label="Do you want to tweak alignment options?" help="See "Alignment Options" section of Help below for information"> | |
338 <option value="yes">Yes</option> | |
339 <option value="no" selected="true">No</option> | |
340 </param> | |
341 <when value="yes"> | |
342 <param name="N" type="integer" min="0" max="1" value="0" label="Set the number of mismatches to be allowed in a seed alignment during multiseed alignment (see `Multiseed alignment` section of help below)" help="-N; Can be set to 0 or 1. Setting this higher makes alignment slower (often much slower) but increases sensitivity; default=0"/> | |
3 | 343 <param name="L" type="integer" min="0" max="32" value="22" label="Sets the length of the seed substrings to align during multiseed alignment (see `Multiseed alignment` section of help below)" help="-L; Smaller values make alignment slower but more sensitive. Default=22"/> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
344 <param name="i" type="text" value="S,1,1.15" label="Set a function governing the interval between seed substrings to use during multiseed alignment (see `Multiseed alignment` section of help below). Also see description of this option below in the help section" help="-i; Since it's best to use longer intervals for longer reads, this parameter sets the interval as a function of the read length, rather than a single one-size-fits-all number. For instance, specifying `-i S,1,2.5` sets the interval function `f` to `f(x) = 1 + 2.5 * sqrt(x)`, where x is the read length. If the function returns a result less than 1, it is rounded up to 1. Default=`S,1,1.15`"/> |
3 | 345 <param name="n_ceil" type="text" value="L,0,0.15" label="Set a function governing the maximum number of ambiguous characters (usually `N`s and/or `.`s) allowed in a read as a function of read length" help="--n-ceil; For instance, specifying `L,0,0.15` sets the N-ceiling function `f` to `f(x) = 0 + 0.15 * x`, where x is the read length. Reads exceeding this ceiling are filtered out. Default=`L,0,0.15`"/> |
346 <param name="dpad" type="integer" min="0" value="15" label="Pad dynamic programming problems by that many columns on either side to allow gaps" help="--dpad; default=15"/> | |
2 | 347 <param name="gbar" type="integer" min="0" value="4" label="Disallow gaps within that many positions of the beginning or end of the read" help="--gbar; default=4"/> |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
348 <param name="ignore_quals" type="boolean" truevalue="--ignore-quals" falsevalue="" label="When calculating a mismatch penalty, always consider the quality value at the mismatched position to be the highest possible, regardless of the actual value" help="--ignore-quals; input is treated as though all quality values are high; default=False"/> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
349 <param name="nofw" type="boolean" truevalue="--nofw" falsevalue="" label="Do not attempt to align unpaired reads to the forward (Watson) reference strand" help="In paired-end mode, `--nofw` and `--norc` pertain to the fragments; i.e. specifying `--nofw` causes `bowtie2` to explore only those paired-end configurations corresponding to fragments from the reverse-complement (Crick) strand. Default=False"/> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
350 <param name="norc" type="boolean" truevalue="--norc" falsevalue="" label="Do not attempt to align unpaired reads to the reverse (Crick) reference strand" help="In paired-end mode, `--nofw` and `--norc` pertain to the fragments; i.e. specifying `--nofw` causes `bowtie2` to explore only those paired-end configurations corresponding to fragments from the reverse-complement (Crick) strand. Default=False"/> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
351 <param name="no_1mm_upfront" type="boolean" truevalue="--no-1mm-upfront" falsevalue="" label="Prevent searching for 1-mismatch end-to-end alignments before using the multiseed heuristic (see `Multiseed alignment` section of help below)" help="--no-1mm-upfront; By default, Bowtie 2 will attempt to find either an exact or a 1-mismatch end-to-end alignment for the read *before* trying the multiseed heuristic. Such alignments can be found very quickly, and many short read alignments have exact or near-exact end-to-end alignments. However, this can lead to unexpected alignments when the user also sets options governing the multiseed heuristic, like `-L` and `-N`. For instance, if the user specifies `-N 0` and `-L` equal to the length of the read, the user will be surprised to find 1-mismatch alignments reported. This option prevents Bowtie 2 from searching for 1-mismatch end-to-end alignments before using the multiseed heuristic, which leads to the expected behavior when combined with options such as `-L` and `-N`. This comes at the expense of speed; Default=False"/> |
2 | 352 <conditional name="align_mode"> |
353 <param name="align_mode_selector" type="select" display="radio" label="Select between `--local` and `--end-to-end` alignment modes" help="--local and --end-to-end; see help below for detailed explanation; default=--end-to-end"> | |
354 <option value="end-to-end" selected="True">End to End (--end-to-end)</option> | |
355 <option value="local">Local (--local)</option> | |
356 </param> | |
357 <when value="end-to-end"> | |
3 | 358 <param name="score_min_ete" type="text" value="L,-0.6,-0.6" label="Set a function governing the minimum alignment score needed for an alignment to be considered `valid` (i.e. good enough to report)" help="--score-min; This is a function of read length. For instance, specifying `L,0,-0.6` sets the minimum-score function `f` to `f(x) = 0 + -0.6 * x`, where `x` is the read length. The default in `--end-to-end` mode is `L,-0.6,-0.6` and the default in `--local` mode is `G,20,8`"/> |
2 | 359 </when> |
360 <when value="local"> | |
3 | 361 <param name="score_min_loc" type="text" value="G,20,8" label="Set a function governing the minimum alignment score needed for an alignment to be considered `valid` (i.e. good enough to report)" help="--score-min; This is a function of read length. For instance, specifying `L,0,-0.6` sets the minimum-score function `f` to `f(x) = 0 + -0.6 * x`, where `x` is the read length. The default in `--end-to-end` mode is `L,-0.6,-0.6` and the default in `--local` mode is `G,20,8`"/> |
2 | 362 </when> |
363 </conditional> | |
364 </when> | |
365 <when value="no"> | |
366 <!-- do nothing --> | |
367 </when> | |
368 </conditional> | |
369 <conditional name="scoring_options"> | |
370 <param name="scoring_options_selector" type="select" label="Do you want to tweak scoring options?" help="See "Scoring Options" section of Help below for information"> | |
371 <option value="yes">Yes</option> | |
372 <option value="no" selected="true">No</option> | |
373 </param> | |
374 <when value="yes"> | |
375 <param name="ma" type="integer" value="2" label="Set the match bonus" help="--ma; In `--local` mode match bonus is added to the alignment score for each position where a read character aligns to a reference character and the characters match. Not used in `--end-to-end` mode; Default=2"/> | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
376 <param name="mp" type="text" value="6,2" label="Set the maximum (`MX`) and minimum (`MN`) mismatch penalties, both integers" help="--mp; A number less than or equal to `MX` and greater than or equal to `MN` is subtracted from the alignment score for each position where a read character aligns to a reference character, the characters do not match, and neither is an `N`. If `--ignore-quals` is specified, the number subtracted quals `MX`. Otherwise, the number subtracted is `MN + floor( (MX-MN)(MIN(Q, 40.0)/40.0) )` where Q is the Phred quality value; Default=6,2"/> |
2 | 377 <param name="np" type="integer" value="1" label="Sets penalty for positions where the read, reference, or both, contain an ambiguous character such as `N`" help="--np; Default=1"/> |
378 <param name="rdg_read_open" type="integer" value="5" label="Set the read gap opening penalty" help="--rdg; this is the first component of --rdg flag - opening penalty; Default=5"/> | |
379 <param name="rdg_read_extend" type="integer" value="3" label="Set the read gap extension penalty" help="--rdg; this is the second component of --rdg flag - extension penalty; Default=3"/> | |
380 <param name="rfg_ref_open" type="integer" value="5" label="Set the reference gap opening penalty" help="--rfg; this is the first component of --rfg flag - opening penalty; Default=5"/> | |
381 <param name="rfg_ref_extend" type="integer" value="3" label="Set the reference gap extension penalty" help="--rfg; this is the second component of --rfg flag - extension penalty; Default=3"/> | |
382 </when> | |
383 <when value="no"> | |
384 <!-- do nothing --> | |
385 </when> | |
386 </conditional> | |
387 <conditional name="reporting_options"> | |
388 <param name="reporting_options_selector" type="select" label="Do you want to use -a or -k options" help="Make sure you understand implications of setting -k and -a. See "Reporting Options" section of Help below for information on -k and -a options"> | |
389 <option value="no" selected="true">No, do not set</option> | |
390 <option value="k">Set -k option and enter -k value</option> | |
391 <option value="a">Set -a option</option> | |
392 </param> | |
393 <when value="no"> | |
394 <!-- do nothing --> | |
395 </when> | |
3 | 396 <when value="k"> |
397 <param name="k" type="integer" min="1" value="1" label="Searches for at most that many distinct, valid alignments for each read" help="-k; see detailed description of this option in the help section below. Note: Bowtie 2 is not designed with large values for `-k` in mind, and when aligning reads to long, repetitive genomes large `-k` can be very, very slow"/> | |
2 | 398 </when> |
3 | 399 <when value="a"> |
2 | 400 <!-- do nothing here; set -a flag on the command line--> |
401 </when> | |
402 </conditional> | |
403 <conditional name="effort_options"> | |
404 <param name="effort_options_selector" type="select" label="Do you want to tweak effort options?" help="See "Effort Options" section of Help below for information"> | |
405 <option value="yes">Yes</option> | |
406 <option value="no" selected="true">No</option> | |
407 </param> | |
408 <when value="yes"> | |
3 | 409 <param name="D" type="integer" value="15" min="0" label="Attempt that many consecutive seed extension attempts to `fail` before Bowtie 2 moves on, using the alignments found so far" help="-D; A seed extension `fails` if it does not yield a new best or a new second-best alignment. This limit is automatically adjusted up when -k or -a are specified. Default=15"/> |
2 | 410 <param name="R" type="integer" value="2" min="0" label="Set the maximum number of times Bowtie 2 will `re-seed` reads with repetitive seeds" help="When `re-seeding`, Bowtie 2 simply chooses a new set of reads (same length, same number of mismatches allowed) at different offsets and searches for more alignments. A read is considered to have repetitive seeds if the total number of seed hits divided by the number of seeds that aligned at least once is greater than 300. Default=2"/> |
411 </when> | |
412 <when value="no"> | |
413 <!-- do nothing --> | |
414 </when> | |
415 </conditional> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
416 |
2 | 417 <conditional name="sam_options"> |
418 <param name="sam_options_selector" type="select" label="Do you want to tweak SAM/BAM Options?" help="See "Output Options" section of Help below for information"> | |
419 <option value="yes">Yes</option> | |
420 <option value="no" selected="true">No</option> | |
421 </param> | |
422 <when value="yes"> | |
3 | 423 <param name="no_unal" type="boolean" truevalue="--no-unal" falsevalue="" label="Suppress SAM records for reads that failed to align" help="--no-unal; Default=False"/> |
424 <param name="omit_sec_seq" type="boolean" truevalue="--omit-sec-seq" falsevalue="" label="Suppress SEQ and QUAL strings for secondary alignments" help="--omit-sec-seq; Default=False"/> | |
2 | 425 </when> |
426 <when value="no"> | |
427 <!-- do nothing --> | |
428 </when> | |
429 </conditional> | |
430 <conditional name="other_options"> | |
431 <param name="other_options_selector" type="select" label="Do you want to tweak Other Options?" help="See "Other Options" section of Help below for information"> | |
432 <option value="yes">Yes</option> | |
433 <option value="no" selected="true">No</option> | |
434 </param> | |
435 <when value="yes"> | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
436 <param name="reorder" type="boolean" truevalue="--reorder" falsevalue="" label="Guarantee that output SAM records are printed in an order corresponding to the order of the reads in the original input file" help="--reorder; Default=False"/> |
2 | 437 <param name="seed" type="integer" value="0" min="0" label="Use this number as the seed for pseudo-random number generator" help="--seed; Default=0"/> |
3 | 438 <param name="non_deterministic" type="boolean" truevalue="--non-deterministic" falsevalue="" label="Re-initialize the pseudo-random generator for each read using the current time" help="--non-deterministic; see Help below for explanation of this option; default=False"/> |
2 | 439 </when> |
440 <when value="no"> | |
441 <!-- do nothing --> | |
442 </when> | |
443 </conditional> | |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
444 <param name="sam_opt" type="boolean" truevalue="true" falsevalue="false" label="Would you like the output to be a SAM file" help="By default, the output from this Bowtie2 wrapper is a sorted BAM file."/> |
0 | 445 </when> |
446 </conditional> | |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
447 <param name="save_mapping_stats" type="boolean" checked="False" label="Save the bowtie2 mapping statistics to the history" /> |
0 | 448 </inputs> |
449 | |
450 <!-- define outputs --> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
451 |
0 | 452 <outputs> |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
453 |
0 | 454 <data format="fastqsanger" name="output_unaligned_reads_l" label="${tool.name} on ${on_string}: unaligned reads (L)" > |
2 | 455 <filter>library['unaligned_file'] is True</filter> |
0 | 456 <actions> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
457 <conditional name="library.type"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
458 <when value="single"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
459 <action type="format"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
460 <option type="from_param" name="library.input_1" param_attribute="ext" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
461 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
462 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
463 <when value="paired"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
464 <action type="format"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
465 <option type="from_param" name="library.input_1" param_attribute="ext" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
466 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
467 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
468 <when value="paired_collection"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
469 <action type="format"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
470 <option type="from_param" name="library.input_1" param_attribute="forward.ext" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
471 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
472 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
473 </conditional> |
0 | 474 </actions> |
475 </data> | |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
476 <data format="fastqsanger" name="output_aligned_reads_l" label="${tool.name} on ${on_string}: aligned reads (L)" > |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
477 <filter>library['aligned_file'] is True</filter> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
478 <actions> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
479 <conditional name="library.type"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
480 <when value="single"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
481 <action type="format"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
482 <option type="from_param" name="library.input_1" param_attribute="ext" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
483 </action> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
484 </when> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
485 <when value="paired"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
486 <action type="format"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
487 <option type="from_param" name="library.input_1" param_attribute="ext" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
488 </action> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
489 </when> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
490 <when value="paired_collection"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
491 <action type="format"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
492 <option type="from_param" name="library.input_1" param_attribute="forward.ext" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
493 </action> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
494 </when> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
495 </conditional> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
496 </actions> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
497 </data> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
498 <data format="fastqsanger" name="output_aligned_reads_r" label="${tool.name} on ${on_string}: aligned reads (R)"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
499 <filter>( library['type'] == "paired" or library['type'] == "paired_collection" ) and library['aligned_file'] is True</filter> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
500 <actions> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
501 <conditional name="library.type"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
502 <when value="paired"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
503 <action type="format"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
504 <option type="from_param" name="library.input_2" param_attribute="ext" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
505 </action> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
506 </when> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
507 <when value="paired_collection"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
508 <action type="format"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
509 <option type="from_param" name="library.input_1" param_attribute="reverse.ext" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
510 </action> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
511 </when> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
512 </conditional> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
513 </actions> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
514 </data> |
0 | 515 <data format="fastqsanger" name="output_unaligned_reads_r" label="${tool.name} on ${on_string}: unaligned reads (R)"> |
2 | 516 <filter>( library['type'] == "paired" or library['type'] == "paired_collection" ) and library['unaligned_file'] is True</filter> |
0 | 517 <actions> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
518 <conditional name="library.type"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
519 <when value="paired"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
520 <action type="format"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
521 <option type="from_param" name="library.input_2" param_attribute="ext" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
522 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
523 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
524 <when value="paired_collection"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
525 <action type="format"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
526 <option type="from_param" name="library.input_1" param_attribute="reverse.ext" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
527 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
528 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
529 </conditional> |
0 | 530 </actions> |
531 </data> | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
532 |
3 | 533 <data format="bam" name="output" label="${tool.name} on ${on_string}: aligned reads (sorted BAM)"> |
7
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
534 <filter>analysis_type['analysis_type_selector'] == "simple" or analysis_type['sam_opt'] is False</filter> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
535 <actions> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
536 <conditional name="reference_genome.source"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
537 <when value="indexed"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
538 <action type="metadata" name="dbkey"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
539 <option type="from_data_table" name="bowtie2_indexes" column="1" offset="0"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
540 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
541 <filter type="param_value" ref="reference_genome.index" column="0"/> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
542 </option> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
543 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
544 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
545 <when value="history"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
546 <action type="metadata" name="dbkey"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
547 <option type="from_param" name="reference_genome.own_file" param_attribute="dbkey" /> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
548 </action> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
549 </when> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
550 </conditional> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
551 </actions> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
552 </data> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
553 |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
554 <data format="sam" name="output_sam" label="${tool.name} on ${on_string}: aligned reads (SAM)"> |
4f92dccc808a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
6
diff
changeset
|
555 <filter>analysis_type['analysis_type_selector'] == "full" and analysis_type['sam_opt'] is True</filter> |
0 | 556 <actions> |
557 <conditional name="reference_genome.source"> | |
558 <when value="indexed"> | |
559 <action type="metadata" name="dbkey"> | |
560 <option type="from_data_table" name="bowtie2_indexes" column="1" offset="0"> | |
561 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/> | |
562 <filter type="param_value" ref="reference_genome.index" column="0"/> | |
563 </option> | |
564 </action> | |
565 </when> | |
566 <when value="history"> | |
567 <action type="metadata" name="dbkey"> | |
568 <option type="from_param" name="reference_genome.own_file" param_attribute="dbkey" /> | |
569 </action> | |
570 </when> | |
571 </conditional> | |
572 </actions> | |
573 </data> | |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
574 <data format="txt" name="mapping_stats" label="${tool.name} on ${on_string}: mapping stats"> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
575 <filter>save_mapping_stats is True</filter> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
576 </data> |
3 | 577 |
0 | 578 </outputs> |
579 | |
580 <tests> | |
581 <test> | |
582 <!-- basic test on single paired default run --> | |
2 | 583 <param name="type" value="paired"/> |
0 | 584 <param name="selection" value="no"/> |
2 | 585 <param name="paired_options_selector" value="no"/> |
0 | 586 <param name="unaligned_file" value="false"/> |
2 | 587 <param name="analysis_type_selector" value="simple"/> |
0 | 588 <param name="source" value="history" /> |
2 | 589 <param name="input_1" value="bowtie2-fq1.fq" ftype="fastqsanger"/> |
590 <param name="input_2" value="bowtie2-fq2.fq" ftype="fastqsanger"/> | |
591 <param name="own_file" value="bowtie2-ref.fasta" /> | |
592 <output name="output" file="bowtie2-test1.bam" ftype="bam" lines_diff="2"/> | |
0 | 593 </test> |
5
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
594 <test> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
595 <!-- basic test on single paired default run --> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
596 <param name="type" value="paired"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
597 <param name="selection" value="no"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
598 <param name="paired_options_selector" value="no"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
599 <param name="unaligned_file" value="false"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
600 <param name="analysis_type_selector" value="simple"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
601 <param name="rg_selector" value="set"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
602 <param name="ID" value="rg1"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
603 <param name="PL" value="CAPILLARY"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
604 <param name="source" value="history" /> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
605 <param name="input_1" value="bowtie2-fq1.fq" ftype="fastqsanger"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
606 <param name="input_2" value="bowtie2-fq2.fq" ftype="fastqsanger"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
607 <param name="own_file" value="bowtie2-ref.fasta" /> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
608 <output name="output" file="bowtie2-test2.bam" ftype="bam" lines_diff="2"/> |
42bb952b4e3c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e3412c58bd3bdc1a483a1e2f7f9c2aa5c87a1f-dirty
devteam
parents:
4
diff
changeset
|
609 </test> |
10
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
610 <test> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
611 <!-- basic test on single paired default run with stats--> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
612 <param name="type" value="paired"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
613 <param name="selection" value="no"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
614 <param name="paired_options_selector" value="no"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
615 <param name="unaligned_file" value="false"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
616 <param name="analysis_type_selector" value="simple"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
617 <param name="source" value="history" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
618 <param name="input_1" value="bowtie2-fq1.fq" ftype="fastqsanger"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
619 <param name="input_2" value="bowtie2-fq2.fq" ftype="fastqsanger"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
620 <param name="own_file" value="bowtie2-ref.fasta" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
621 <param name="save_mapping_stats" value="true" /> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
622 <output name="output" file="bowtie2-test1.bam" ftype="bam" lines_diff="2"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
623 <output name="mapping_stats" file="bowtie2-stats.out" ftype="txt"/> |
a9d4f71dbfb0
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit 320f7fb84d2fda19f6cccdb38b4ef49edec4169d
devteam
parents:
8
diff
changeset
|
624 </test> |
0 | 625 </tests> |
626 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
627 <help><![CDATA[ |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
628 |
0 | 629 **Bowtie2 Overview** |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
630 |
2 | 631 Bowtie2_ is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters to relatively long (e.g. mammalian) genomes. Bowtie 2 supports gapped, local, and paired-end alignment modes. Galaxy wrapper for Bowtie 2 outputs alignments in `BAM format`_, enabling interoperation with a large number of other tools available at this site. |
632 Majority of information in this page is derived from an excellent `Bowtie2 manual`_ written by Ben Langmead. | |
633 | |
634 .. _Bowtie2: http://bowtie-bio.sourceforge.net/bowtie2/ | |
635 .. _`Bowtie2 manual`: http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml | |
636 .. _`BAM format`: http://samtools.github.io/hts-specs/SAMv1.pdf | |
637 | |
638 ----- | |
0 | 639 |
2 | 640 **Selecting reference genomes for Bowtie2** |
641 | |
642 Galaxy wrapper for Bowtie2 allows you select between precomputed and user-defined indices for reference genomes using **Will you select a reference genome from your history or use a built-in index?** flag. This flag has two options: | |
0 | 643 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
644 1. **Use a built-in genome index** - when selected (this is default), Galaxy provides the user with **Select reference genome index** dropdown. Genomes listed in this dropdown have been pre-indexed with bowtie2-build utility and are ready to be mapped against. |
2 | 645 2. **Use a genome from the history and build index** - when selected, Galaxy provides the user with **Select reference genome sequence** dropdown. This dropdown is populated by all FASTA formatted files listed in your current history. If your genome of interest is uploaded into history it will be shown there. Selecting a genome from this dropdown will cause Galaxy to first transparently index it using bowtie2-build command, and then run mapping with bowtie2. |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
646 |
2 | 647 If your genome of interest is not listed here you have two choices: |
648 | |
649 1. Contact galaxy team using **Help->Support** link at the top of the interface and let us know that an index needs to be added | |
650 2. Upload your genome of interest as a FASTA file to Galaxy history and selected **Use a genome from the history and build index** option. | |
0 | 651 |
652 ------ | |
653 | |
2 | 654 .. class:: infomark |
655 | |
656 **Bowtie2 options** | |
657 | |
658 Galaxy wrapper for Bowtie2 implements most but not all options available through the command line. Supported options are described below. | |
659 | |
660 ----- | |
661 | |
0 | 662 **Inputs** |
663 | |
664 Bowtie 2 accepts files in Sanger FASTQ format (single or pair-end). Use the FASTQ Groomer to prepare your files. | |
665 | |
666 ------ | |
667 | |
2 | 668 **Input options**:: |
669 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
670 -s/--skip <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
671 Skip (i.e. do not align) the first `<int>` reads or pairs in the input. |
2 | 672 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
673 -u/--qupto <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
674 Align the first `<int>` reads or read pairs from the input (after the |
2 | 675 `-s`/`--skip` reads or pairs have been skipped), then stop. Default: no limit. |
676 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
677 -5/--trim5 <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
678 Trim `<int>` bases from 5' (left) end of each read before alignment (default: 0). |
0 | 679 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
680 -3/--trim3 <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
681 Trim `<int>` bases from 3' (right) end of each read before alignment (default: 0). |
2 | 682 |
683 --phred33 | |
684 Input qualities are ASCII chars equal to the Phred quality plus 33. This is | |
685 also called the "Phred+33" encoding, which is used by the very latest Illumina | |
686 pipelines. | |
687 | |
688 --phred64 | |
3 | 689 Input qualities are ASCII chars equal to the Phred quality plus 64. This is |
2 | 690 also called the "Phred+64" encoding. |
0 | 691 |
2 | 692 --solexa-quals |
693 Convert input qualities from Solexa Phred quality (which can be negative) to | |
694 Phred Phred quality (which can't). This scheme was used in older Illumina GA | |
695 Pipeline versions (prior to 1.3). Default: off. | |
696 | |
697 --int-quals | |
698 Quality values are represented in the read input file as space-separated ASCII integers, e.g., `40 40 30 40`..., rather than ASCII characters, e.g., `II?I`.... | |
3 | 699 Integers are treated as being on the Phred quality scale unless |
2 | 700 `--solexa-quals` is also specified. Default: off. |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
701 |
2 | 702 ------ |
703 | |
704 **Presets in `--end-to-end` mode**:: | |
705 | |
706 --very-fast | |
707 Same as: `-D 5 -R 1 -N 0 -L 22 -i S,0,2.50` | |
708 | |
709 --fast | |
710 Same as: `-D 10 -R 2 -N 0 -L 22 -i S,0,2.50` | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
711 |
2 | 712 --sensitive |
713 Same as: `-D 15 -R 2 -L 22 -i S,1,1.15` (default in `--end-to-end` mode) | |
714 | |
715 --very-sensitive | |
716 Same as: `-D 20 -R 3 -N 0 -L 20 -i S,1,0.50` | |
0 | 717 |
718 ------ | |
719 | |
2 | 720 **Presets options in `--local` mode**:: |
0 | 721 |
2 | 722 --very-fast-local |
723 Same as: `-D 5 -R 1 -N 0 -L 25 -i S,1,2.00` | |
0 | 724 |
2 | 725 --fast-local |
726 Same as: `-D 10 -R 2 -N 0 -L 22 -i S,1,1.75` | |
0 | 727 |
2 | 728 --sensitive-local |
729 Same as: `-D 15 -R 2 -N 0 -L 20 -i S,1,0.75` (default in `--local` mode) | |
0 | 730 |
2 | 731 --very-sensitive-local |
732 Same as: `-D 20 -R 3 -N 0 -L 20 -i S,1,0.50` | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
733 |
0 | 734 ------ |
735 | |
2 | 736 **Alignment options**:: |
737 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
738 -N <int> |
3 | 739 Sets the number of mismatches to allowed in a seed alignment during multiseed |
740 alignment. Can be set to 0 or 1. Setting this higher makes alignment slower | |
2 | 741 (often much slower) but increases sensitivity. Default: 0. |
742 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
743 -L <int> |
3 | 744 Sets the length of the seed substrings to align during multiseed alignment. |
745 Smaller values make alignment slower but more sensitive. Default: the | |
746 `--sensitive` preset is used by default, which sets `-L` to 22 in | |
747 `--end-to-end` mode and to 20 in `--local` mode. | |
2 | 748 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
749 -i <func> |
2 | 750 Sets a function governing the interval between seed substrings to use during |
3 | 751 multiseed alignment. For instance, if the read has 30 characers, and seed |
2 | 752 length is 10, and the seed interval is 6, the seeds extracted will be: |
753 | |
754 Read: TAGCTACGCTCTACGCTATCATGCATAAAC | |
755 Seed 1 fw: TAGCTACGCT | |
756 Seed 1 rc: AGCGTAGCTA | |
757 Seed 2 fw: CGCTCTACGC | |
758 Seed 2 rc: GCGTAGAGCG | |
759 Seed 3 fw: ACGCTATCAT | |
760 Seed 3 rc: ATGATAGCGT | |
761 Seed 4 fw: TCATGCATAA | |
762 Seed 4 rc: TTATGCATGA | |
763 | |
764 Since it's best to use longer intervals for longer reads, this parameter sets | |
765 the interval as a function of the read length, rather than a single | |
766 one-size-fits-all number. For instance, specifying `-i S,1,2.5` sets the | |
767 interval function `f` to `f(x) = 1 + 2.5 * sqrt(x)`, where x is the read length. | |
3 | 768 If the function returns a result less than |
2 | 769 1, it is rounded up to 1. Default: the `--sensitive` preset is used by |
770 default, which sets `-i` to `S,1,1.15` in `--end-to-end` mode to `-i S,1,0.75` | |
771 in `--local` mode. | |
772 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
773 --n-ceil <func> |
2 | 774 Sets a function governing the maximum number of ambiguous characters (usually |
775 `N`s and/or `.`s) allowed in a read as a function of read length. For instance, | |
776 specifying `-L,0,0.15` sets the N-ceiling function `f` to `f(x) = 0 + 0.15 * x`, | |
3 | 777 where x is the read length. Reads exceeding this ceiling are filtered out. |
778 Default: `L,0,0.15`. | |
2 | 779 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
780 --dpad <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
781 "Pads" dynamic programming problems by `<int>` columns on either side to allow |
2 | 782 gaps. Default: 15. |
783 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
784 --gbar <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
785 Disallow gaps within `<int>` positions of the beginning or end of the read. |
2 | 786 Default: 4. |
787 | |
788 --ignore-quals | |
789 When calculating a mismatch penalty, always consider the quality value at the | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
790 mismatched position to be the highest possible, regardless of the actual value. |
2 | 791 I.e. input is treated as though all quality values are high. This is also the |
792 default behavior when the input doesn't specify quality values (e.g. in `-f`, | |
793 `-r`, or `-c` modes). | |
0 | 794 |
2 | 795 --nofw/--norc |
796 If `--nofw` is specified, `bowtie2` will not attempt to align unpaired reads to | |
797 the forward (Watson) reference strand. If `--norc` is specified, `bowtie2` will | |
798 not attempt to align unpaired reads against the reverse-complement (Crick) | |
799 reference strand. In paired-end mode, `--nofw` and `--norc` pertain to the | |
800 fragments; i.e. specifying `--nofw` causes `bowtie2` to explore only those | |
801 paired-end configurations corresponding to fragments from the reverse-complement | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
802 (Crick) strand. Default: both strands enabled. |
2 | 803 |
804 --no-1mm-upfront | |
805 By default, Bowtie 2 will attempt to find either an exact or a 1-mismatch | |
3 | 806 end-to-end alignment for the read *before* trying the multiseed heuristic. Such |
2 | 807 alignments can be found very quickly, and many short read alignments have exact or |
808 near-exact end-to-end alignments. However, this can lead to unexpected | |
3 | 809 alignments when the user also sets options governing the multiseed heuristic, |
2 | 810 like `-L` and `-N`. For instance, if the user specifies `-N 0` and `-L` equal |
811 to the length of the read, the user will be surprised to find 1-mismatch alignments | |
812 reported. This option prevents Bowtie 2 from searching for 1-mismatch end-to-end | |
3 | 813 alignments before using the multiseed heuristic, which leads to the expected |
2 | 814 behavior when combined with options such as `-L` and `-N`. This comes at the |
815 expense of speed. | |
816 | |
817 --end-to-end | |
818 In this mode, Bowtie 2 requires that the entire read align from one end to the | |
819 other, without any trimming (or "soft clipping") of characters from either end. | |
820 The match bonus `--ma` always equals 0 in this mode, so all alignment scores | |
821 are less than or equal to 0, and the greatest possible alignment score is 0. | |
822 This is mutually exclusive with `--local`. `--end-to-end` is the default mode. | |
0 | 823 |
2 | 824 --local |
825 In this mode, Bowtie 2 does not require that the entire read align from one end | |
826 to the other. Rather, some characters may be omitted ("soft clipped") from the | |
827 ends in order to achieve the greatest possible alignment score. The match bonus | |
828 `--ma` is used in this mode, and the best possible alignment score is equal to | |
829 the match bonus (`--ma`) times the length of the read. Specifying `--local` | |
830 and one of the presets (e.g. `--local --very-fast`) is equivalent to specifying | |
831 the local version of the preset (`--very-fast-local`). This is mutually | |
832 exclusive with `--end-to-end`. `--end-to-end` is the default mode. | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
833 |
2 | 834 ----- |
835 | |
836 **Scoring options**:: | |
837 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
838 --ma <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
839 Sets the match bonus. In `--local` mode `<int>` is added to the alignment |
2 | 840 score for each position where a read character aligns to a reference character |
841 and the characters match. Not used in `--end-to-end` mode. Default: 2. | |
842 | |
843 --mp MX,MN | |
844 Sets the maximum (`MX`) and minimum (`MN`) mismatch penalties, both integers. A | |
845 number less than or equal to `MX` and greater than or equal to `MN` is | |
846 subtracted from the alignment score for each position where a read character | |
847 aligns to a reference character, the characters do not match, and neither is an | |
848 `N`. If `--ignore-quals` is specified, the number subtracted quals `MX`. | |
849 Otherwise, the number subtracted is `MN + floor( (MX-MN)(MIN(Q, 40.0)/40.0) )` | |
850 where Q is the Phred quality value. Default: `MX` = 6, `MN` = 2. | |
851 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
852 --np <int> |
2 | 853 Sets penalty for positions where the read, reference, or both, contain an |
854 ambiguous character such as `N`. Default: 1. | |
855 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
856 --rdg <int1>,<int2> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
857 Sets the read gap open (`<int1>`) and extend (`<int2>`) penalties. A read gap of |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
858 length N gets a penalty of `<int1>` + N * `<int2>`. Default: 5, 3. |
2 | 859 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
860 --rfg <int1>,<int2> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
861 Sets the reference gap open (`<int1>`) and extend (`<int2>`) penalties. A |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
862 reference gap of length N gets a penalty of `<int1>` + N * `<int2>`. Default: |
2 | 863 5, 3. |
0 | 864 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
865 --score-min <func> |
2 | 866 Sets a function governing the minimum alignment score needed for an alignment to |
867 be considered "valid" (i.e. good enough to report). This is a function of read | |
868 length. For instance, specifying `L,0,-0.6` sets the minimum-score function `f` | |
3 | 869 to `f(x) = 0 + -0.6 * x`, where `x` is the read length. The default in `--end-to-end` mode is `L,-0.6,-0.6` and |
2 | 870 the default in `--local` mode is `G,20,8`. |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
871 |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
872 ----- |
2 | 873 |
874 **Reporting options**:: | |
875 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
876 -k <int> |
2 | 877 By default, `bowtie2` searches for distinct, valid alignments for each read. |
878 When it finds a valid alignment, it continues looking for alignments that are | |
879 nearly as good or better. The best alignment found is reported (randomly | |
880 selected from among best if tied). Information about the best alignments is | |
881 used to estimate mapping quality and to set SAM optional fields, such as | |
882 `AS:i` and `XS:i`. | |
883 | |
884 When `-k` is specified, however, `bowtie2` behaves differently. Instead, it | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
885 searches for at most `<int>` distinct, valid alignments for each read. The |
2 | 886 search terminates when it can't find more distinct valid alignments, or when it |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
887 finds `<int>`, whichever happens first. All alignments found are reported in |
2 | 888 descending order by alignment score. The alignment score for a paired-end |
889 alignment equals the sum of the alignment scores of the individual mates. Each | |
890 reported read or pair alignment beyond the first has the SAM 'secondary' bit | |
891 (which equals 256) set in its FLAGS field. For reads that have more than | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
892 `<int>` distinct, valid alignments, `bowtie2` does not guarantee that the |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
893 `<int>` alignments reported are the best possible in terms of alignment score. |
2 | 894 `-k` is mutually exclusive with `-a`. |
0 | 895 |
2 | 896 Note: Bowtie 2 is not designed with large values for `-k` in mind, and when |
897 aligning reads to long, repetitive genomes large `-k` can be very, very slow. | |
898 | |
899 -a | |
900 Like `-k` but with no upper limit on number of alignments to search for. `-a` | |
901 is mutually exclusive with `-k`. | |
902 | |
903 Note: Bowtie 2 is not designed with `-a` mode in mind, and when | |
904 aligning reads to long, repetitive genomes this mode can be very, very slow. | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
905 |
2 | 906 ----- |
907 | |
908 **Effort options**:: | |
909 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
910 -D <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
911 Up to `<int>` consecutive seed extension attempts can "fail" before Bowtie 2 |
2 | 912 moves on, using the alignments found so far. A seed extension "fails" if it |
913 does not yield a new best or a new second-best alignment. This limit is | |
914 automatically adjusted up when -k or -a are specified. Default: 15. | |
915 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
916 -R <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
917 `<int>` is the maximum number of times Bowtie 2 will "re-seed" reads with |
2 | 918 repetitive seeds. When "re-seeding," Bowtie 2 simply chooses a new set of reads |
919 (same length, same number of mismatches allowed) at different offsets and | |
920 searches for more alignments. A read is considered to have repetitive seeds if | |
921 the total number of seed hits divided by the number of seeds that aligned at | |
922 least once is greater than 300. Default: 2. | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
923 |
2 | 924 ----- |
925 | |
926 **Paired-end options**:: | |
0 | 927 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
928 -I/--minins <int> |
2 | 929 The minimum fragment length for valid paired-end alignments. E.g. if `-I 60` is |
930 specified and a paired-end alignment consists of two 20-bp alignments in the | |
931 appropriate orientation with a 20-bp gap between them, that alignment is | |
932 considered valid (as long as `-X` is also satisfied). A 19-bp gap would not | |
933 be valid in that case. If trimming options `-3` or `-5` are also used, the | |
934 `-I` constraint is applied with respect to the untrimmed mates. | |
935 | |
936 The larger the difference between `-I` and `-X`, the slower Bowtie 2 will | |
937 run. This is because larger differences bewteen `-I` and `-X` require that | |
938 Bowtie 2 scan a larger window to determine if a concordant alignment exists. | |
939 For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very | |
940 efficient. | |
941 | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
942 Default: 0 (essentially imposing no minimum) |
2 | 943 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
944 -X/--maxins <int> |
2 | 945 The maximum fragment length for valid paired-end alignments. E.g. if `-X 100` |
946 is specified and a paired-end alignment consists of two 20-bp alignments in the | |
947 proper orientation with a 60-bp gap between them, that alignment is considered | |
948 valid (as long as `-I` is also satisfied). A 61-bp gap would not be valid in | |
949 that case. If trimming options `-3` or `-5` are also used, the `-X` | |
950 constraint is applied with respect to the untrimmed mates, not the trimmed | |
951 mates. | |
952 | |
953 The larger the difference between `-I` and `-X`, the slower Bowtie 2 will | |
954 run. This is because larger differences bewteen `-I` and `-X` require that | |
955 Bowtie 2 scan a larger window to determine if a concordant alignment exists. | |
956 For typical fragment length ranges (200 to 400 nucleotides), Bowtie 2 is very | |
957 efficient. | |
958 | |
959 Default: 500. | |
0 | 960 |
2 | 961 --fr/--rf/--ff |
962 The upstream/downstream mate orientations for a valid paired-end alignment | |
963 against the forward reference strand. E.g., if `--fr` is specified and there is | |
964 a candidate paired-end alignment where mate 1 appears upstream of the reverse | |
965 complement of mate 2 and the fragment length constraints (`-I` and `-X`) are | |
966 met, that alignment is valid. Also, if mate 2 appears upstream of the reverse | |
967 complement of mate 1 and all other constraints are met, that too is valid. | |
968 `--rf` likewise requires that an upstream mate1 be reverse-complemented and a | |
969 downstream mate2 be forward-oriented. ` --ff` requires both an upstream mate 1 | |
970 and a downstream mate 2 to be forward-oriented. Default: `--fr` (appropriate | |
971 for Illumina's Paired-end Sequencing Assay). | |
972 | |
973 --no-mixed | |
974 By default, when `bowtie2` cannot find a concordant or discordant alignment for | |
975 a pair, it then tries to find alignments for the individual mates. This option | |
976 disables that behavior. | |
0 | 977 |
2 | 978 --no-discordant |
979 By default, `bowtie2` looks for discordant alignments if it cannot find any | |
980 concordant alignments. A discordant alignment is an alignment where both mates | |
981 align uniquely, but that does not satisfy the paired-end constraints | |
982 (`--fr`/`--rf`/`--ff`, `-I`, `-X`). This option disables that behavior. | |
983 | |
984 --dovetail | |
985 If the mates "dovetail", that is if one mate alignment extends past the | |
986 beginning of the other such that the wrong mate begins upstream, consider that | |
3 | 987 to be concordant. Default: mates cannot dovetail in a concordant alignment. |
2 | 988 |
989 --no-contain | |
990 If one mate alignment contains the other, consider that to be non-concordant. | |
3 | 991 Default: a mate can contain the other in a concordant alignment. |
2 | 992 |
993 --no-overlap | |
994 If one mate alignment overlaps the other at all, consider that to be | |
3 | 995 non-concordant. Default: mates can overlap in a concordant alignment. |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
996 |
0 | 997 ------ |
998 | |
2 | 999 **SAM options**:: |
0 | 1000 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1001 --rg-id <text> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1002 Set the read group ID to `<text>`. This causes the SAM `@RG` header line to be |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1003 printed, with `<text>` as the value associated with the `ID:` tag. It also |
2 | 1004 causes the `RG:Z:` extra field to be attached to each SAM output record, with |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1005 value set to `<text>`. |
0 | 1006 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1007 --rg <text> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1008 Add `<text>` (usually of the form `TAG:VAL`, e.g. `SM:Pool1`) as a field on the |
2 | 1009 `@RG` header line. Note: in order for the `@RG` line to appear, `--rg-id` |
3 | 1010 must also be specified. This is because the `ID` tag is required by the SAM |
1011 Specification. Specify `--rg` multiple times to set multiple fields. See the | |
1012 SAM Specification for details about what fields are legal. | |
0 | 1013 |
2 | 1014 --omit-sec-seq |
1015 When printing secondary alignments, Bowtie 2 by default will write out the `SEQ` | |
1016 and `QUAL` strings. Specifying this option causes Bowtie 2 to print an asterix | |
1017 in those fields instead. | |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1018 |
2 | 1019 ----- |
0 | 1020 |
2 | 1021 **Other options**:: |
0 | 1022 |
2 | 1023 --reorder |
1024 Guarantees that output SAM records are printed in an order corresponding to the | |
1025 order of the reads in the original input file, even when `-p` is set greater | |
1026 than 1. Specifying `--reorder` and setting `-p` greater than 1 causes Bowtie | |
1027 2 to run somewhat slower and use somewhat more memory then if `--reorder` were | |
1028 not specified. Has no effect if `-p` is set to 1, since output order will | |
1029 naturally correspond to input order in that case. | |
0 | 1030 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1031 --seed <int> |
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1032 Use `<int>` as the seed for pseudo-random number generator. Default: 0. |
0 | 1033 |
2 | 1034 --non-deterministic |
1035 Normally, Bowtie 2 re-initializes its pseudo-random generator for each read. It | |
1036 seeds the generator with a number derived from (a) the read name, (b) the | |
1037 nucleotide sequence, (c) the quality sequence, (d) the value of the `--seed` | |
1038 option. This means that if two reads are identical (same name, same | |
1039 nucleotides, same qualities) Bowtie 2 will find and report the same alignment(s) | |
1040 for both, even if there was ambiguity. When `--non-deterministic` is specified, | |
1041 Bowtie 2 re-initializes its pseudo-random generator for each read using the | |
1042 current time. This means that Bowtie 2 will not necessarily report the same | |
1043 alignment for two identical reads. This is counter-intuitive for some users, | |
1044 but might be more appropriate in situations where the input consists of many | |
1045 identical reads. | |
0 | 1046 |
11
b4e9cf5f2ae8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie2 commit d0e857ba2691ca15b6239890baf98dbe7bc3ccbd
devteam
parents:
10
diff
changeset
|
1047 ]]></help> |
2 | 1048 <citations> |
1049 <citation type="doi">10.1186/gb-2009-10-3-r25</citation> | |
1050 <citation type="doi">10.1038/nmeth.1923</citation> | |
1051 </citations> | |
0 | 1052 </tool> |