3
|
1 <tool id="bismark_bowtie2" name="Bismark" version="0.10.1">
|
|
2 <!-- Wrapper compatible with Bismark version 0.10 -->
|
0
|
3 <description>bisulfite mapper (bowtie2)</description>
|
|
4 <!--<version_command>bismark version</version_command>-->
|
|
5 <requirements>
|
|
6 <requirement type="set_environment">SCRIPT_PATH</requirement>
|
2
|
7 <requirement type="package" version="0.1.19">samtools</requirement>
|
0
|
8 <requirement type="package" version="2.1.0">bowtie2</requirement>
|
|
9 </requirements>
|
|
10 <parallelism method="basic"></parallelism>
|
|
11 <command interpreter="python">
|
|
12 bismark_wrapper.py
|
|
13
|
|
14 ## Change this to accommodate the number of threads you have available.
|
3
|
15 --num-threads "\${GALAXY_SLOTS:-24}"
|
0
|
16
|
|
17 --bismark_path \$SCRIPT_PATH
|
|
18
|
|
19 --bowtie2
|
|
20
|
|
21 ##
|
|
22 ## Bismark Genome Preparation, if desired.
|
|
23 ##
|
|
24
|
|
25 ## Handle reference file.
|
|
26 #if $refGenomeSource.genomeSource == "history":
|
|
27 --own-file=$refGenomeSource.ownFile
|
|
28 #else:
|
|
29 --indexes-path ${refGenomeSource.index.fields.path}
|
|
30 #end if
|
|
31
|
|
32
|
|
33 ##
|
|
34 ## Input parameters
|
|
35 ##
|
|
36
|
|
37
|
|
38 #if $singlePaired.sPaired == "single":
|
|
39 --single-paired $singlePaired.input_singles
|
|
40
|
|
41 #if $singlePaired.input_singles.ext == "fastqillumina":
|
|
42 --phred64-quals
|
|
43 --fastq
|
|
44 #elif $singlePaired.input_singles.ext == "fastqsanger":
|
|
45 --fastq
|
|
46 #elif $singlePaired.input_singles.ext == "fasta":
|
|
47 --fasta
|
|
48 #end if
|
|
49 #else:
|
|
50 --mate-paired
|
|
51 #set $mate1 = list()
|
|
52 #set $mate2 = list()
|
|
53 #for $mate_pair in $singlePaired.mate_list
|
|
54 $mate1.append( str($mate_pair.input_mate1) )
|
|
55 $mate2.append( str($mate_pair.input_mate2) )
|
|
56 #end for
|
|
57
|
|
58 --mate1 #echo ','.join($mate1)
|
|
59 --mate2 #echo ','.join($mate2)
|
|
60
|
|
61 #if $singlePaired.mate_list[0].input_mate1.ext == "fastqillumina":
|
|
62 --phred64-quals
|
|
63 --fastq
|
|
64 #elif $singlePaired.mate_list[0].input_mate1.ext == "fastqsanger":
|
|
65 --fastq
|
|
66 #elif $singlePaired.mate_list[0].input_mate1.ext == "fasta":
|
|
67 --fasta
|
|
68 #end if
|
|
69
|
|
70 -I $singlePaired.minInsert
|
|
71 -X $singlePaired.maxInsert
|
|
72 #end if
|
|
73
|
3
|
74 #if $sort_bam:
|
|
75 --sort-bam
|
|
76 #end if
|
0
|
77
|
|
78 ## for now hardcode the value for the required memory per thread in --best mode
|
|
79 --chunkmbs 512
|
|
80
|
|
81
|
|
82 #if $params.settingsType == "custom":
|
|
83
|
|
84 ## default 20
|
|
85 --seed-len $params.seed_len
|
|
86 ## default 0
|
|
87 --seed-mismatches $params.seed_mismatches
|
|
88 ## default 15
|
|
89 --seed-extention-attempts $params.seed_extention_attempts
|
|
90 ## default 2
|
|
91 --max-reseed $params.max_reseed
|
|
92
|
|
93 ## default 70
|
|
94 ##--maqerr $params.maqerr
|
|
95
|
|
96 ## default unlimited
|
|
97 #if $params.qupto != 0:
|
|
98 --qupto $params.qupto
|
|
99 #end if
|
|
100 #if $params.skip_reads != 0:
|
|
101 --skip-reads $params.skip_reads
|
|
102 #end if
|
|
103
|
|
104 ## if set, disable the original behaviour
|
|
105 $params.no_mixed
|
|
106 ## if set, disable the original behaviour
|
|
107 $params.no_discordant
|
|
108
|
|
109 #if $params.bismark_stdout:
|
|
110 --stdout $output_stdout
|
|
111 #end if
|
|
112
|
|
113 #if $params.isReportOutput:
|
|
114 --output-report-file $report_file
|
|
115 #end if
|
|
116
|
|
117 #end if
|
|
118
|
|
119 ##
|
|
120 ## Output parameters.
|
|
121 ##
|
|
122 --output $output
|
|
123 ##$suppress_header
|
|
124
|
|
125 #if str( $singlePaired.sPaired ) == "single"
|
|
126 #if $output_unmapped_reads_l
|
|
127 --output-unmapped-reads $output_unmapped_reads_l
|
|
128 #end if
|
|
129 #if $output_suppressed_reads_l
|
|
130 --output-suppressed-reads $output_suppressed_reads_l
|
|
131 #end if
|
|
132 #else
|
|
133 #if $output_unmapped_reads_l and $output_unmapped_reads_r
|
|
134 --output-unmapped-reads-l $output_unmapped_reads_l
|
|
135 --output-unmapped-reads-r $output_unmapped_reads_r
|
|
136 #end if
|
|
137 #if $output_suppressed_reads_l and $output_suppressed_reads_l
|
|
138 --output-suppressed-reads-l $output_suppressed_reads_l
|
|
139 --output-suppressed-reads-r $output_suppressed_reads_r
|
|
140 #end if
|
|
141 #end if
|
|
142
|
|
143 </command>
|
|
144 <inputs>
|
|
145 <conditional name="refGenomeSource">
|
|
146 <param name="genomeSource" 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">
|
|
147 <option value="indexed">Use a built-in index</option>
|
|
148 <option value="history">Use one from the history</option>
|
|
149 </param>
|
|
150 <when value="indexed">
|
|
151 <param name="index" type="select" label="Select a reference genome" help="If your genome of interest is not listed, contact your Galaxy admin">
|
|
152 <options from_data_table="bowtie2_indexes">
|
|
153 <filter type="sort_by" column="2"/>
|
|
154 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
|
|
155 </options>
|
|
156 </param>
|
|
157 </when> <!-- build-in -->
|
|
158 <when value="history">
|
|
159 <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select the reference genome" />
|
|
160 </when> <!-- history -->
|
|
161 </conditional> <!-- refGenomeSource -->
|
|
162
|
|
163 <!-- Input Parameters -->
|
|
164 <conditional name="singlePaired">
|
|
165 <param name="sPaired" type="select" label="Is this library mate-paired?">
|
|
166 <option value="single">Single-end</option>
|
|
167 <option value="paired">Paired-end</option>
|
|
168 </param>
|
|
169 <when value="single">
|
|
170 <param name="input_singles" type="data" format="fastqsanger,fastqillumina,fastq,fasta" label="FASTQ/FASTA file" help="FASTQ or FASTA files." />
|
|
171 </when>
|
|
172 <when value="paired">
|
|
173 <repeat name="mate_list" title="Paired End Pairs" min="1">
|
|
174 <param name="input_mate1" type="data" format="fastqsanger,fastqillumina,fastq,fasta" label="Mate pair 1" help="FASTQ or FASTA files." />
|
|
175 <param name="input_mate2" type="data" format="fastqsanger,fastqillumina,fastq,fasta" label="Mate pair 2" help="FASTQ or FASTA files." />
|
|
176 </repeat>
|
|
177 <param name="minInsert" type="integer" value="0" label="Minimum insert size for valid paired-end alignments" />
|
|
178 <param name="maxInsert" type="integer" value="500" label="Maximum insert size for valid paired-end alignments" />
|
|
179 </when>
|
|
180 </conditional>
|
|
181
|
3
|
182 <param name="sort_bam" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Sort BAM file by chromosomal position (not compatibile with methylation extractor)"/>
|
0
|
183
|
|
184 <conditional name="params">
|
|
185 <param name="settingsType" type="select" label="Bismark settings to use" help="You can use the default settings or set custom values for any of Bismark's parameters.">
|
|
186 <option value="default">Use Defaults</option>
|
|
187 <option value="custom">Full parameter list</option>
|
|
188 </param>
|
|
189 <when value="default" />
|
|
190 <!-- Full/advanced params. -->
|
|
191 <when value="custom">
|
|
192 <!-- -N -->
|
|
193 <param name="seed_mismatches" type="integer" value="0" label="Number of mismatches to be allowed in a seed alignment during multiseed alignment" />
|
|
194 <!-- -L -->
|
|
195 <param name="seed_len" type="integer" value="20" label="Length of the seed substrings to align during multiseed alignment" />
|
|
196 <!--
|
|
197 <param name="maqerr" type="integer" value="70" label="Maximum permitted total of quality values at all mismatched read positions throughout the entire alignment, not just in the 'seed'." />
|
|
198 -->
|
|
199 <!-- -D -->
|
|
200 <param name="seed_extention_attempts" type="integer" value="15" label="How many consecutive seed extension attempts can fail before Bowtie 2 moves on" />
|
|
201 <!-- -R -->
|
|
202 <param name="max_reseed" type="integer" value="2" label="Maximum number of times Bowtie 2 will re-seed reads with repetitive seeds" />
|
|
203
|
|
204 <param name="qupto" type="integer" value="0" label="Only aligns the first N reads or read pairs from the input" help="Default is 0 and means 'no-limit'." />
|
|
205 <param name="skip_reads" type="integer" value="0" label="Skip (i.e. do not align) the first N reads or read pairs from the input" />
|
|
206
|
|
207 <param name="no_discordant" type="boolean" truevalue="--no-discordant" falsevalue="" checked="false" label="Disable looking for discordant alignments if it cannot find any concordant alignments" help="" />
|
|
208 <param name="no_mixed" type="boolean" truevalue="--no-mixed" falsevalue="" checked="false" label="Disable Bowtie 2's behaviour to try to find alignments for the individual mates" help="" />
|
|
209
|
|
210 <param name="suppressed_read_file" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write ambiguous reads to an extra output file" help="Write all reads which produce more than one valid alignment with the same number of lowest mismatches or other reads that fail to align uniquely." />
|
|
211 <param name="unmapped_read_file" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write all reads that could not be aligned to a file" />
|
|
212 <!-- output Options -->
|
|
213 <param name="bismark_stdout" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Write the bismark output and summary information to an extra file" />
|
|
214 <param name="isReportOutput" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Offer all report files concatenated in one file" />
|
|
215
|
|
216 <!--end output options -->
|
|
217 </when> <!-- full -->
|
|
218 </conditional> <!-- params -->
|
|
219 <!--
|
|
220 <param name="suppress_header" type="boolean" truevalue="..suppress-header" falsevalue="" checked="false" label="Suppress the header in the output SAM file" help="Bowtie produces SAM with several lines of header information by default." />
|
|
221 -->
|
|
222 </inputs>
|
|
223
|
|
224
|
|
225 <outputs>
|
|
226 <data format="txt" name="report_file" label="${tool.name} on ${on_string}: Report">
|
|
227 <filter>
|
|
228 ((
|
|
229 params['settingsType'] == "custom" and
|
|
230 params['isReportOutput'] is True
|
|
231 ))
|
|
232 </filter>
|
|
233 </data>
|
|
234 <data format="txt" name="output_stdout" label="${tool.name} on ${on_string}: Summary">
|
|
235 <filter>
|
|
236 ((
|
|
237 params['settingsType'] == "custom" and
|
|
238 params['bismark_stdout'] is True
|
|
239 ))
|
|
240 </filter>
|
|
241 </data>
|
|
242
|
|
243 <data format="bam" name="output" label="${tool.name} on ${on_string}: mapped reads">
|
|
244 <actions>
|
|
245 <conditional name="refGenomeSource.genomeSource">
|
|
246 <when value="indexed">
|
|
247 <action type="metadata" name="dbkey">
|
|
248 <option type="from_data_table" name="bowtie2_indexes" column="1" offset="0">
|
|
249 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
|
|
250 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
|
|
251 </option>
|
|
252 </action>
|
|
253 </when>
|
|
254 <when value="history">
|
|
255 <action type="metadata" name="dbkey">
|
|
256 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
|
|
257 </action>
|
|
258 </when>
|
|
259 </conditional>
|
|
260 </actions>
|
|
261 </data>
|
|
262
|
|
263 <data format="fastq" name="output_suppressed_reads_l" label="${tool.name} on ${on_string}: suppressed reads (L)">
|
|
264 <filter>
|
|
265 ((
|
|
266 params['settingsType'] == "custom" and
|
|
267 params['suppressed_read_file'] is True
|
|
268 ))
|
|
269 </filter>
|
|
270 <actions>
|
|
271 <conditional name="singlePaired.sPaired">
|
|
272 <when value="single">
|
|
273 <action type="format">
|
|
274 <option type="from_param" name="singlePaired.input_singles" param_attribute="ext" />
|
|
275 </action>
|
|
276 </when>
|
|
277 <when value="paired">
|
|
278 <action type="format">
|
|
279 <option type="from_param" name="singlePaired.mate_list[0].input_mate1" param_attribute="ext" />
|
|
280 </action>
|
|
281 </when>
|
|
282 </conditional>
|
|
283 </actions>
|
|
284 </data>
|
|
285
|
|
286 <data format="fastq" name="output_suppressed_reads_r" label="${tool.name} on ${on_string}: suppressed reads (R)">
|
|
287 <filter>singlePaired['sPaired'] == "paired"</filter>
|
|
288 <filter>params['settingsType'] == "custom"</filter>
|
|
289 <filter>params['supressed_read_file'] is True</filter>
|
|
290 <actions>
|
|
291 <conditional name="singlePaired.sPaired">
|
|
292 <when value="single">
|
|
293 <action type="format">
|
|
294 <option type="from_param" name="singlePaired.input_singles" param_attribute="ext" />
|
|
295 </action>
|
|
296 </when>
|
|
297 <when value="paired">
|
|
298 <action type="format">
|
|
299 <option type="from_param" name="singlePaired.mate_list[0].input_mate1" param_attribute="ext" />
|
|
300 </action>
|
|
301 </when>
|
|
302 </conditional>
|
|
303 </actions>
|
|
304 </data>
|
|
305
|
|
306 <!-- Outout unmapped reads -->
|
|
307 <data format="fastq" name="output_unmapped_reads_l" label="${tool.name} on ${on_string}: unmapped reads (L)">
|
|
308 <filter>
|
|
309 ((
|
|
310 params['settingsType'] == "custom" and
|
|
311 params['unmapped_read_file'] is True
|
|
312 ))
|
|
313 </filter>
|
|
314 <actions>
|
|
315 <conditional name="singlePaired.sPaired">
|
|
316 <when value="single">
|
|
317 <action type="format">
|
|
318 <option type="from_param" name="singlePaired.input_singles" param_attribute="ext" />
|
|
319 </action>
|
|
320 </when>
|
|
321 <when value="paired">
|
|
322 <action type="format">
|
|
323 <option type="from_param" name="singlePaired.mate_list[0].input_mate1" param_attribute="ext" />
|
|
324 </action>
|
|
325 </when>
|
|
326 </conditional>
|
|
327 </actions>
|
|
328 </data>
|
|
329
|
|
330 <data format="fastq" name="output_unmapped_reads_r" label="${tool.name} on ${on_string}: unmapped reads (R)">
|
|
331 <filter>singlePaired['sPaired'] == "paired"</filter>
|
|
332 <filter>params['settingsType'] == "custom"</filter>
|
|
333 <filter>params['unmapped_read_file'] is True</filter>
|
|
334 <actions>
|
|
335 <conditional name="singlePaired.sPaired">
|
|
336 <when value="single">
|
|
337 <action type="format">
|
|
338 <option type="from_param" name="singlePaired.input_singles" param_attribute="ext" />
|
|
339 </action>
|
|
340 </when>
|
|
341 <when value="paired">
|
|
342 <action type="format">
|
|
343 <option type="from_param" name="singlePaired.mate_list[0].input_mate1" param_attribute="ext" />
|
|
344 </action>
|
|
345 </when>
|
|
346 </conditional>
|
|
347 </actions>
|
|
348 </data>
|
|
349 </outputs>
|
|
350
|
|
351 <tests>
|
|
352 </tests>
|
|
353
|
|
354 <help>
|
|
355
|
|
356 **What it does**
|
|
357
|
|
358 Bismark_ is a bisulfite mapper and methylation caller. Bismark takes in FastA or FastQ files and aligns the
|
|
359 reads to a specified bisulfite genome. Sequence reads are transformed into a bisulfite converted forward strand
|
|
360 version (C->T conversion) or into a bisulfite treated reverse strand (G->A conversion of the forward strand).
|
|
361 Each of these reads are then aligned to bisulfite treated forward strand index of a reference genome
|
|
362 (C->T converted) and a bisulfite treated reverse strand index of the genome (G->A conversion of the
|
|
363 forward strand, by doing this alignments will produce the same positions). These instances of Bowtie 2
|
|
364 are run in parallel. The sequence file(s) are then read in again sequence by sequence to pull out the original
|
|
365 sequence from the genome and determine if there were any protected C's present or not.
|
|
366
|
|
367 .. _Bismark: http://www.bioinformatics.babraham.ac.uk/projects/bismark/
|
|
368
|
|
369 As of version 0.7.0 Bismark will only run 2 alignment threads for OT and OB in parallel, the 4 strand mode can be
|
|
370 re-enabled by using non_directional mode.
|
|
371
|
|
372 It is developed by Krueger F and Andrews SR. at the Babraham Institute. Krueger F, Andrews SR. (2011) Bismark: a flexible aligner and methylation caller for Bisulfite-Seq applications. Bioinformatics, 27, 1571-2.
|
|
373
|
|
374 ------
|
|
375
|
|
376 **Know what you are doing**
|
|
377
|
|
378 .. class:: warningmark
|
|
379
|
|
380 There is no such thing (yet) as an automated gearshift in short read mapping. It is all like stick-shift driving in San Francisco. In other words = running this tool with default parameters will probably not give you meaningful results. A way to deal with this is to **understand** the parameters by carefully reading the `documentation`__ and experimenting. Fortunately, Galaxy makes experimenting easy.
|
|
381
|
|
382 .. __: http://www.bioinformatics.babraham.ac.uk/projects/bismark/
|
|
383
|
|
384
|
|
385 .. class:: warningmark
|
|
386
|
|
387 Make sure all your input reads are in the correct and same format. If thats not the case please adjust/convert the filetype with galaxy's build-in converters.
|
|
388
|
|
389 ------
|
|
390
|
|
391 **Input formats**
|
|
392
|
|
393 Bismark accepts files in either Sanger FASTQ format (galaxy type *fastqsanger*), Illumina FASTQ format (galaxy type *fastqillumina*) or FASTA format (galaxy type *fasta*). Use the FASTQ Groomer to prepare your files.
|
|
394
|
|
395 ------
|
|
396
|
|
397 **A Note on Built-in Reference Genomes**
|
|
398
|
|
399 The default variant for all genomes is "Full", defined as all primary chromosomes (or scaffolds/contigs) including mitochondrial plus associated unmapped, plasmid, and other segments. When only one version of a genome is available in this tool, it represents the default "Full" variant. Some genomes will have more than one variant available. The "Canonical Male" or sometimes simply "Canonical" variant contains the primary chromosomes for a genome. For example a human "Canonical" variant contains chr1-chr22, chrX, chrY, and chrM. The "Canonical Female" variant contains the primary chromosomes excluding chrY.
|
|
400
|
|
401 ------
|
|
402
|
|
403 The final output of Bismark is in SAM format by default.
|
|
404
|
|
405 **Outputs**
|
|
406
|
|
407 The output is in SAM format, and has the following columns::
|
|
408
|
|
409 Column Description
|
|
410 -------- --------------------------------------------------------
|
|
411 1 QNAME seq-ID
|
|
412 2 FLAG this flag tries to take the strand a bisulfite read
|
|
413 originated from into account
|
|
414 (this is different from ordinary DNA alignment flags!)
|
|
415 3 RNAME chromosome
|
|
416 4 POS start position
|
|
417 5 MAPQ always 255
|
|
418 6 CIGAR extended CIGAR string
|
|
419 7 MRNM Mate Reference sequence NaMe ('=' if same as RNAME)
|
|
420 8 MPOS 1-based Mate POSition
|
|
421 9 ISIZE Inferred insert SIZE
|
|
422 10 SEQ query SEQuence on the same strand as the reference
|
|
423 11 QUAL Phred33 scale
|
|
424 12 NM-tag edit distance to the reference)
|
|
425 13 XX-tag base-by-base mismatches to the reference.
|
|
426 This does not include indels.
|
|
427 14 XM-tag methylation call string
|
|
428 15 XR-tag read conversion state for the alignment
|
|
429 16 XG-tag genome conversion state for the alignment
|
|
430
|
|
431
|
|
432 Each read of paired-end alignments is written out in a separate line in the above format.
|
|
433
|
|
434
|
|
435 It looks like this (scroll sideways to see the entire example)::
|
|
436
|
|
437 QNAME FLAG RNAME POS MAPQ CIAGR MRNM MPOS ISIZE SEQ QUAL OPT
|
|
438 HWI-EAS91_1_30788AAXX:1:1:1761:343 4 * 0 0 * * 0 0 AAAAAAANNAAAAAAAAAAAAAAAAAAAAAAAAAAACNNANNGAGTNGNNNNNNNGCTTCCCACAGNNCTGG hhhhhhh;;hhhhhhhhhhh^hOhhhhghhhfhhhgh;;h;;hhhh;h;;;;;;;hhhhhhghhhh;;Phhh
|
|
439 HWI-EAS91_1_30788AAXX:1:1:1578:331 4 * 0 0 * * 0 0 GTATAGANNAATAAGAAAAAAAAAAATGAAGACTTTCNNANNTCTGNANNNNNNNTCTTTTTTCAGNNGTAG hhhhhhh;;hhhhhhhhhhhhhhhhhhhhhhhhhhhh;;h;;hhhh;h;;;;;;;hhhhhhhhhhh;;hhVh
|
|
440
|
|
441 -------
|
|
442
|
|
443 **Bismark settings**
|
|
444
|
|
445 All of the options have a default value. You can change any of them. If any Bismark function is missing please contact the tool author or your Galaxy admin.
|
|
446
|
|
447 ------
|
|
448
|
|
449 **Bismark parameter list**
|
|
450
|
|
451 This is an exhaustive list of Bismark options.
|
|
452
|
|
453 Input::
|
|
454
|
|
455 --singles A comma- or space-separated list of files containing the reads to be aligned (e.g.
|
|
456 lane1.fq,lane2.fq lane3.fq). Reads may be a mix of different lengths. Bismark will
|
|
457 produce one mapping result and one report file per input file.
|
|
458
|
|
459 -1 mates1 Comma-separated list of files containing the #1 mates (filename usually includes
|
|
460 "_1"), e.g. flyA_1.fq,flyB_1.fq). Sequences specified with this option must
|
|
461 correspond file-for-file and read-for-read with those specified in mates2.
|
|
462 Reads may be a mix of different lengths. Bismark will produce one mapping result
|
|
463 and one report file per paired-end input file pair.
|
|
464
|
|
465 -2 mates2 Comma-separated list of files containing the #2 mates (filename usually includes
|
|
466 "_2"), e.g. flyA_1.fq,flyB_1.fq). Sequences specified with this option must
|
|
467 correspond file-for-file and read-for-read with those specified in mates1.
|
|
468 Reads may be a mix of different lengths.
|
|
469
|
|
470 -q/--fastq The query input files (specified as mate1,mate2 or singles are FASTQ
|
|
471 files (usually having extension .fg or .fastq). This is the default. See also
|
|
472 --solexa-quals.
|
|
473
|
|
474 -f/--fasta The query input files (specified as mate1,mate2 or singles are FASTA
|
|
475 files (usually havin extension .fa, .mfa, .fna or similar). All quality values
|
|
476 are assumed to be 40 on the Phred scale.
|
|
477
|
|
478 -s/--skip INT Skip (i.e. do not align) the first INT reads or read pairs from the input.
|
|
479
|
|
480 -u/--upto INT Only aligns the first INT reads or read pairs from the input. Default: no limit.
|
|
481
|
|
482 --phred33-quals FASTQ qualities are ASCII chars equal to the Phred quality plus 33. Default: on.
|
|
483
|
|
484 --phred64-quals FASTQ qualities are ASCII chars equal to the Phred quality plus 64. Default: off.
|
|
485
|
|
486 --solexa-quals Convert FASTQ qualities from solexa-scaled (which can be negative) to phred-scaled
|
|
487 (which can't). The formula for conversion is:
|
|
488 phred-qual = 10 * log(1 + 10 ** (solexa-qual/10.0)) / log(10). Used with -q. This
|
|
489 is usually the right option for use with (unconverted) reads emitted by the GA
|
|
490 Pipeline versions prior to 1.3. Works only for Bowtie 1. Default: off.
|
|
491
|
|
492 --solexa1.3-quals Same as --phred64-quals. This is usually the right option for use with (unconverted)
|
|
493 reads emitted by GA Pipeline version 1.3 or later. Default: off.
|
|
494
|
|
495
|
|
496 Alignment::
|
|
497
|
|
498 -n/--seedmms INT The maximum number of mismatches permitted in the "seed", i.e. the first L base pairs
|
|
499 of the read (where L is set with -l/--seedlen). This may be 0, 1, 2 or 3 and the
|
|
500 default is 1. This option is only available for Bowtie 1 (for Bowtie 2 see -N).
|
|
501
|
|
502 -l/--seedlen The "seed length"; i.e., the number of bases of the high quality end of the read to
|
|
503 which the -n ceiling applies. The default is 28. Bowtie (and thus Bismark) is faster for
|
|
504 larger values of -l. This option is only available for Bowtie 1 (for Bowtie 2 see -L).
|
|
505
|
|
506 -e/--maqerr INT Maximum permitted total of quality values at all mismatched read positions throughout
|
|
507 the entire alignment, not just in the "seed". The default is 70. Like Maq, bowtie rounds
|
|
508 quality values to the nearest 10 and saturates at 30. This value is not relevant for
|
|
509 Bowtie 2.
|
|
510
|
|
511 --chunkmbs INT The number of megabytes of memory a given thread is given to store path descriptors in
|
|
512 --best mode. Best-first search must keep track of many paths at once to ensure it is
|
|
513 always extending the path with the lowest cumulative cost. Bowtie tries to minimize the
|
|
514 memory impact of the descriptors, but they can still grow very large in some cases. If
|
|
515 you receive an error message saying that chunk memory has been exhausted in --best mode,
|
|
516 try adjusting this parameter up to dedicate more memory to the descriptors. This value
|
|
517 is not relevant for Bowtie 2. Default: 512.
|
|
518
|
|
519 -I/--minins INT The minimum insert size for valid paired-end alignments. E.g. if -I 60 is specified and
|
|
520 a paired-end alignment consists of two 20-bp alignments in the appropriate orientation
|
|
521 with a 20-bp gap between them, that alignment is considered valid (as long as -X is also
|
|
522 satisfied). A 19-bp gap would not be valid in that case. Default: 0.
|
|
523
|
|
524 -X/--maxins INT The maximum insert size for valid paired-end alignments. E.g. if -X 100 is specified and
|
|
525 a paired-end alignment consists of two 20-bp alignments in the proper orientation with a
|
|
526 60-bp gap between them, that alignment is considered valid (as long as -I is also satisfied).
|
|
527 A 61-bp gap would not be valid in that case. Default: 500.
|
|
528
|
|
529
|
|
530
|
|
531 Output::
|
|
532
|
|
533 --non_directional The sequencing library was constructed in a non strand-specific manner, alignments to all four
|
|
534 bisulfite strands will be reported. Default: OFF.
|
|
535
|
|
536 (The current Illumina protocol for BS-Seq is directional, in which case the strands complementary
|
|
537 to the original strands are merely theoretical and should not exist in reality. Specifying directional
|
|
538 alignments (which is the default) will only run 2 alignment threads to the original top (OT)
|
|
539 or bottom (OB) strands in parallel and report these alignments. This is the recommended option
|
|
540 for sprand-specific libraries).
|
|
541
|
|
542 --sam-no-hd Suppress SAM header lines (starting with @). This might be useful when very large input files are
|
|
543 split up into several smaller files to run concurrently and the output files are to be merged.
|
|
544
|
|
545 --quiet Print nothing besides alignments.
|
|
546
|
|
547 --vanilla Performs bisulfite mapping with Bowtie 1 and prints the 'old' output (as in Bismark 0.5.X) instead
|
|
548 of SAM format output.
|
|
549
|
|
550 -un/--unmapped Write all reads that could not be aligned to a file in the output directory. Written reads will
|
|
551 appear as they did in the input, without any translation of quality values that may have
|
|
552 taken place within Bowtie or Bismark. Paired-end reads will be written to two parallel files with _1
|
|
553 and _2 inserted in their filenames, i.e. _unmapped_reads_1.txt and unmapped_reads_2.txt. Reads
|
|
554 with more than one valid alignment with the same number of lowest mismatches (ambiguous mapping)
|
|
555 are also written to _unmapped_reads.txt unless the option --ambiguous is specified as well.
|
|
556
|
|
557 --ambiguous Write all reads which produce more than one valid alignment with the same number of lowest
|
|
558 mismatches or other reads that fail to align uniquely to a file in the output directory.
|
|
559 Written reads will appear as they did in the input, without any of the translation of quality
|
|
560 values that may have taken place within Bowtie or Bismark. Paired-end reads will be written to two
|
|
561 parallel files with _1 and _2 inserted in theit filenames, i.e. _ambiguous_reads_1.txt and
|
|
562 _ambiguous_reads_2.txt. These reads are not written to the file specified with --un.
|
|
563
|
|
564 -o/--output_dir DIR Write all output files into this directory. By default the output files will be written into
|
|
565 the same folder as the input file(s). If the specified folder does not exist, Bismark will attempt
|
|
566 to create it first. The path to the output folder can be either relative or absolute.
|
|
567
|
|
568 --temp_dir DIR Write temporary files to this directory instead of into the same directory as the input files. If
|
|
569 the specified folder does not exist, Bismark will attempt to create it first. The path to the
|
|
570 temporary folder can be either relative or absolute.
|
|
571
|
|
572 ------
|
|
573
|
|
574 Bowtie 2 alignment options::
|
|
575
|
|
576 -N INT Sets the number of mismatches to allowed in a seed alignment during multiseed alignment.
|
|
577 Can be set to 0 or 1. Setting this higher makes alignment slower (often much slower)
|
|
578 but increases sensitivity. Default: 0. This option is only available for Bowtie 2 (for
|
|
579 Bowtie 1 see -n).
|
|
580
|
|
581 -L INT Sets the length of the seed substrings to align during multiseed alignment. Smaller values
|
|
582 make alignment slower but more senstive. Default: the --sensitive preset of Bowtie 2 is
|
|
583 used by default, which sets -L to 20. This option is only available for Bowtie 2 (for
|
|
584 Bowtie 1 see -l).
|
|
585
|
|
586 --ignore-quals When calculating a mismatch penalty, always consider the quality value at the mismatched
|
|
587 position to be the highest possible, regardless of the actual value. I.e. input is treated
|
|
588 as though all quality values are high. This is also the default behavior when the input
|
|
589 doesn't specify quality values (e.g. in -f mode). This option is invariable and on by default.
|
|
590
|
|
591
|
|
592 Bowtie 2 paired-end options::
|
|
593
|
|
594 --no-mixed This option disables Bowtie 2's behavior to try to find alignments for the individual mates if
|
|
595 it cannot find a concordant or discordant alignment for a pair. This option is invariable and
|
|
596 and on by default.
|
|
597
|
|
598 --no-discordant Normally, Bowtie 2 looks for discordant alignments if it cannot find any concordant alignments.
|
|
599 A discordant alignment is an alignment where both mates align uniquely, but that does not
|
|
600 satisfy the paired-end constraints (--fr/--rf/--ff, -I, -X). This option disables that behavior
|
|
601 and it is on by default.
|
|
602
|
|
603
|
|
604 Bowtie 2 effort options::
|
|
605
|
|
606 -D INT Up to INT consecutive seed extension attempts can "fail" before Bowtie 2 moves on, using
|
|
607 the alignments found so far. A seed extension "fails" if it does not yield a new best or a
|
|
608 new second-best alignment. Default: 15.
|
|
609
|
|
610 -R INT INT is the maximum number of times Bowtie 2 will "re-seed" reads with repetitive seeds.
|
|
611 When "re-seeding," Bowtie 2 simply chooses a new set of reads (same length, same number of
|
|
612 mismatches allowed) at different offsets and searches for more alignments. A read is considered
|
|
613 to have repetitive seeds if the total number of seed hits divided by the number of seeds
|
|
614 that aligned at least once is greater than 300. Default: 2.
|
|
615
|
|
616
|
|
617 Bowtie 2 Scoring options::
|
|
618
|
|
619 --score_min "func" Sets a function governing the minimum alignment score needed for an alignment to be considered
|
|
620 "valid" (i.e. good enough to report). This is a function of read length. For instance, specifying
|
|
621 L,0,-0.2 sets the minimum-score function f to f(x) = 0 + -0.2 * x, where x is the read length.
|
|
622 See also: setting function options at http://bowtie-bio.sourceforge.net/bowtie2. The default is
|
|
623 L,0,-0.2.
|
|
624
|
|
625
|
|
626 Bowtie 2 Reporting options::
|
|
627
|
|
628 --most_valid_alignments INT This used to be the Bowtie 2 parameter -M. As of Bowtie 2 version 2.0.0 beta7 the option -M is
|
|
629 deprecated. It will be removed in subsequent versions. What used to be called -M mode is still the
|
|
630 default mode, but adjusting the -M setting is deprecated. Use the -D and -R options to adjust the
|
|
631 effort expended to find valid alignments.
|
|
632
|
|
633 For reference, this used to be the old (now deprecated) description of -M:
|
|
634 Bowtie 2 searches for at most INT+1 distinct, valid alignments for each read. The search terminates when it
|
|
635 can't find more distinct valid alignments, or when it finds INT+1 distinct alignments, whichever
|
|
636 happens first. Only the best alignment is reported. Information from the other alignments is used to
|
|
637 estimate mapping quality and to set SAM optional fields, such as AS:i and XS:i. Increasing -M makes
|
|
638 Bowtie 2 slower, but increases the likelihood that it will pick the correct alignment for a read that
|
|
639 aligns many places. For reads that have more than INT+1 distinct, valid alignments, Bowtie 2 does not
|
|
640 guarantee that the alignment reported is the best possible in terms of alignment score. -M is
|
|
641 always used and its default value is set to 10.
|
|
642
|
|
643 </help>
|
|
644 </tool>
|