annotate tools/sr_mapping/bowtie_wrapper.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="bowtie_wrapper" name="Map with Bowtie for Illumina" version="1.1.2">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <requirements><requirement type='package'>bowtie</requirement></requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <description></description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <parallelism method="basic"></parallelism>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 bowtie_wrapper.py
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 ## Hackish setting of number of threads
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 --threads="4"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 ## Outputs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 --output=$output
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 #if str( $singlePaired.sPaired ) == "single"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 #if $output_unmapped_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 --output_unmapped_reads=$output_unmapped_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 #if $output_suppressed_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 --output_suppressed_reads=$output_suppressed_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 --galaxy_input_format="${singlePaired.sInput1.ext}"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 #else
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 #if $output_unmapped_reads_l and $output_unmapped_reads_r
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 --output_unmapped_reads_l=$output_unmapped_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 --output_unmapped_reads_r=$output_unmapped_reads_r
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 #if $output_suppressed_reads_l and $output_suppressed_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 --output_suppressed_reads_l=$output_suppressed_reads_l
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 --output_suppressed_reads_r=$output_suppressed_reads_r
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 --galaxy_input_format="${singlePaired.pInput1.ext}"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 ## Inputs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 --dataType="solexa" ##this indicates that nucleotide base space is used in the wrapper
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 --suppressHeader=$suppressHeader
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 --genomeSource=$refGenomeSource.genomeSource
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 #if $refGenomeSource.genomeSource == "history":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 ##index already exists
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 #if $refGenomeSource.ownFile.extension.startswith( 'bowtie_' ):
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 ##user previously built
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 --ref="${refGenomeSource.ownFile.extra_files_path}/${refGenomeSource.ownFile.metadata.base_name}"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 --do_not_build_index
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 ##build index on the fly
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 --ref=$refGenomeSource.ownFile
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 --indexSettings=$refGenomeSource.indexParams.indexSettings
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 #if $refGenomeSource.indexParams.indexSettings == "indexFull":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 --iautoB=$refGenomeSource.indexParams.autoBehavior.autoB
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 #if $refGenomeSource.indexParams.autoBehavior.autoB == "set":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 --ipacked=$refGenomeSource.indexParams.autoBehavior.packed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 --ibmax=$refGenomeSource.indexParams.autoBehavior.bmax
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 --ibmaxdivn=$refGenomeSource.indexParams.autoBehavior.bmaxdivn
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 --idcv=$refGenomeSource.indexParams.autoBehavior.dcv
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 --inodc=$refGenomeSource.indexParams.nodc
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 --inoref=$refGenomeSource.indexParams.noref
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 --ioffrate=$refGenomeSource.indexParams.offrate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 --iftab=$refGenomeSource.indexParams.ftab
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 --intoa=$refGenomeSource.indexParams.ntoa
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 --iendian=$refGenomeSource.indexParams.endian
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 --iseed=$refGenomeSource.indexParams.seed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 --icutoff=$refGenomeSource.indexParams.cutoff
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 #else
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 ##use pre-built index
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 ##--ref="${ filter( lambda x: str( x[0] ) == str( $refGenomeSource.index ), $__app__.tool_data_tables[ 'bowtie_indexes' ].get_fields() )[0][-1] }"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 --ref="${ refGenomeSource.index.fields.path }"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 --paired=$singlePaired.sPaired
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 #if $singlePaired.sPaired == "single":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 --input1=$singlePaired.sInput1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 --params=$singlePaired.sParams.sSettingsType
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 #if $singlePaired.sParams.sSettingsType == "full":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 --skip=$singlePaired.sParams.sSkip
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 --alignLimit=$singlePaired.sParams.sAlignLimit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 --trimH=$singlePaired.sParams.sTrimH
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 --trimL=$singlePaired.sParams.sTrimL
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 --mismatchSeed=$singlePaired.sParams.sMismatchSeed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 --mismatchQual=$singlePaired.sParams.sMismatchQual
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 --seedLen=$singlePaired.sParams.sSeedLen
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 --rounding=$singlePaired.sParams.sRounding
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 --maqSoapAlign=$singlePaired.sParams.sMaqSoapAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 --tryHard=$singlePaired.sParams.sTryHard
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 --valAlign=$singlePaired.sParams.sValAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 --allValAligns=$singlePaired.sParams.sAllValAligns
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 --suppressAlign=$singlePaired.sParams.sSuppressAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 --best=$singlePaired.sParams.sBestOption.sBest
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 #if $singlePaired.sParams.sBestOption.sBest == "doBest":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 --maxBacktracks=$singlePaired.sParams.sBestOption.sdMaxBacktracks
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 --strata=$singlePaired.sParams.sBestOption.sdStrata
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 --maxBacktracks=$singlePaired.sParams.sBestOption.snMaxBacktracks
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 --offrate=$singlePaired.sParams.sOffrate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 --seed=$singlePaired.sParams.sSeed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 --input1=$singlePaired.pInput1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 --input2=$singlePaired.pInput2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 --maxInsert=$singlePaired.pMaxInsert
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 --mateOrient=$singlePaired.pMateOrient
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 --params=$singlePaired.pParams.pSettingsType
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 #if $singlePaired.pParams.pSettingsType == "full":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 --skip=$singlePaired.pParams.pSkip
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 --alignLimit=$singlePaired.pParams.pAlignLimit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 --trimH=$singlePaired.pParams.pTrimH
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 --trimL=$singlePaired.pParams.pTrimL
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 --mismatchSeed=$singlePaired.pParams.pMismatchSeed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 --mismatchQual=$singlePaired.pParams.pMismatchQual
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 --seedLen=$singlePaired.pParams.pSeedLen
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 --rounding=$singlePaired.pParams.pRounding
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 --maqSoapAlign=$singlePaired.pParams.pMaqSoapAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 --minInsert=$singlePaired.pParams.pMinInsert
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 --maxAlignAttempt=$singlePaired.pParams.pMaxAlignAttempt
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 --forwardAlign=$singlePaired.pParams.pForwardAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 --reverseAlign=$singlePaired.pParams.pReverseAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 --tryHard=$singlePaired.pParams.pTryHard
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 --valAlign=$singlePaired.pParams.pValAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117 --allValAligns=$singlePaired.pParams.pAllValAligns
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 --suppressAlign=$singlePaired.pParams.pSuppressAlign
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 --best=$singlePaired.pParams.pBestOption.pBest
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 #if $singlePaired.pParams.pBestOption.pBest == "doBest":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 --maxBacktracks=$singlePaired.pParams.pBestOption.pdMaxBacktracks
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 --strata=$singlePaired.pParams.pBestOption.pdStrata
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 --maxBacktracks=$singlePaired.pParams.pBestOption.pnMaxBacktracks
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 --offrate=$singlePaired.pParams.pOffrate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 --seed=$singlePaired.pParams.pSeed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 <conditional name="refGenomeSource">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 <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">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 <option value="indexed">Use a built-in index</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 <option value="history">Use one from the history</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137 <when value="indexed">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 <param name="index" type="select" label="Select a reference genome" help="if your genome of interest is not listed - contact Galaxy team">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139 <options from_data_table="bowtie_indexes">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 <filter type="sort_by" column="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141 <validator type="no_options" message="No indexes are available" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 </options>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145 <when value="history">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 <param name="ownFile" type="data" format="bowtie_base_index,fasta" metadata_name="dbkey" label="Select the reference genome" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147 <conditional name="indexParams">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 <param name="indexSettings" type="select" label="Choose whether to use Default options for building indices or to Set your own" help="These settings are ignored when using a prebuilt index">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149 <option value="indexPreSet">Default</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 <option value="indexFull">Set your own</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 <when value="indexPreSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153 <when value="indexFull">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 <conditional name="autoBehavior">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 <param name="autoB" type="select" label="Choose to use automatic or specified behavior for some parameters (-a)" help="Allows you to set --packed, --bmax, --bmaxdivn, and --dcv">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156 <option value="auto">Automatic behavior</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 <option value="set">Set values (sets --noauto and allows others to be set)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 <when value="auto" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160 <when value="set">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 <param name="packed" type="select" label="Whether or not to use a packed representation for DNA strings (--packed)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162 <option value="unpacked">Use regular representation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163 <option value="packed">Use packed representation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 <param name="bmax" type="integer" value="-1" label="Maximum number of suffixes allowed in a block (--bmax)" help="-1 for not specified. Must be at least 1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 <param name="bmaxdivn" type="integer" value="4" label="Maximum number of suffixes allowed in a block as a fraction of the length of the reference (--bmaxdivn)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 <param name="dcv" type="integer" value="1024" label="The period for the difference-cover sample (--dcv)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170 <param name="nodc" type="select" label="Whether or not to disable the use of the difference-cover sample (--nodc)" help="Suffix sorting becomes quadratic-time in the worst case (with a very repetitive reference)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171 <option value="dc">Use difference-cover sample</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 <option value="nodc">Disable difference-cover sample</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 <param name="noref" type="select" label="Whether or not to build the part of the reference index used only in paired-end alignment (-r)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175 <option value="ref">Build all index files</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 <option value="noref">Do not build paired-end alignment index files</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 <param name="offrate" type="integer" value="5" label="How many rows get marked during annotation of some or all of the Burrows-Wheeler rows (-o)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179 <param name="ftab" type="integer" value="10" label="The size of the lookup table used to calculate an initial Burrows-Wheeler range with respect to the first n characters of the query (-t)" help="ftab is 4^(n+1) bytes" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180 <param name="ntoa" type="select" label="Whether or not to convert Ns in the reference sequence to As (--ntoa)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 <option value="no">Do not convert Ns</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182 <option value="yes">Convert Ns to As</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184 <param name="endian" type="select" label="Endianness to use when serializing integers to the index file (--big/--little)" help="Little is most appropriate for Intel- and AMD-based architecture">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 <option value="little">Little</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 <option value="big">Big</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188 <param name="seed" type="integer" value="-1" label="Seed for the pseudorandom number generator (--seed)" help="Use -1 to use default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189 <param name="cutoff" type="integer" value="-1" label="Number of first bases of the reference sequence to index (--cutoff)" help="Use -1 to use default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190 </when> <!-- indexFull -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 </conditional> <!-- indexParams -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 </when> <!-- history -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193 </conditional> <!-- refGenomeSource -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194 <conditional name="singlePaired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195 <param name="sPaired" type="select" label="Is this library mate-paired?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 <option value="single">Single-end</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197 <option value="paired">Paired-end</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 <param name="sInput1" type="data" format="fastqsanger,fastqillumina,fastqsolexa" label="FASTQ file" help="Must have ASCII encoded quality scores"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201 <conditional name="sParams">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202 <param name="sSettingsType" type="select" label="Bowtie settings to use" help="For most mapping needs use Commonly used settings. If you want full control use Full parameter list">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203 <option value="preSet">Commonly used</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204 <option value="full">Full parameter list</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206 <when value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207 <when value="full">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208 <param name="sSkip" type="integer" value="0" label="Skip the first n reads (-s)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209 <param name="sAlignLimit" type="integer" value="-1" label="Only align the first n reads (-u)" help="-1 for off" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 <param name="sTrimH" type="integer" value="0" label="Trim n bases from high-quality (left) end of each read before alignment (-5)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211 <param name="sTrimL" type="integer" value="0" label="Trim n bases from low-quality (right) end of each read before alignment (-3)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212 <param name="sMismatchSeed" type="integer" value="2" label="Maximum number of mismatches permitted in the seed (-n)" help="May be 0, 1, 2, or 3" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213 <param name="sMismatchQual" type="integer" value="70" label="Maximum permitted total of quality values at mismatched read positions (-e)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
214 <param name="sSeedLen" type="integer" value="28" label="Seed length (-l)" help="Minimum value is 5" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
215 <param name="sRounding" type="select" label="Whether or not to round to the nearest 10 and saturating at 30 (--nomaqround)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
216 <option value="round">Round to nearest 10</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
217 <option value="noRound">Do not round to nearest 10</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
218 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
219 <param name="sMaqSoapAlign" type="integer" value="-1" label="Number of mismatches for SOAP-like alignment policy (-v)" help="-1 for default MAQ-like alignment policy" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
220 <param name="sTryHard" type="select" label="Whether or not to try as hard as possible to find valid alignments when they exist (-y)" help="Tryhard mode is much slower than regular mode">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
221 <option value="noTryHard">Do not try hard</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
222 <option value="doTryHard">Try hard</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
223 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
224 <param name="sValAlign" type="integer" value="1" label="Report up to n valid alignments per read (-k)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
225 <param name="sAllValAligns" type="select" label="Whether or not to report all valid alignments per read (-a)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
226 <option value="noAllValAligns">Do not report all valid alignments</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
227 <option value="doAllValAligns">Report all valid alignments</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
228 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
229 <param name="sSuppressAlign" type="integer" value="-1" label="Suppress all alignments for a read if more than n reportable alignments exist (-m)" help="-1 for no limit" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
230 <param name="sMaxFile" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write all reads with a number of valid alignments exceeding the limit set with the -m option to a file (--max)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
231 <param name="sUnmappedFile" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write all reads that could not be aligned to a file (--un)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
232 <conditional name="sBestOption">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
233 <param name="sBest" type="select" label="Whether or not to make Bowtie guarantee that reported singleton alignments are 'best' in terms of stratum and in terms of the quality values at the mismatched positions (--best)" help="Removes all strand bias. Only affects which alignments are reported by Bowtie. Runs slower with best option">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
234 <option value="noBest">Do not use best</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
235 <option value="doBest">Use best</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
236 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
237 <when value="noBest">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
238 <param name="snMaxBacktracks" type="integer" value="125" label="Maximum number of backtracks permitted when aligning a read (--maxbts)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
239 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
240 <when value="doBest">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
241 <param name="sdMaxBacktracks" type="integer" value="800" label="Maximum number of backtracks permitted when aligning a read (--maxbts)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
242 <param name="sdStrata" type="select" label="Whether or not to report only those alignments that fall in the best stratum if many valid alignments exist and are reportable (--strata)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
243 <option value="noStrata">Do not use strata option</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
244 <option value="doStrata">Use strata option</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
245 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
246 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
247 </conditional> <!-- bestOption -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
248 <param name="sOffrate" type="integer" value="-1" label="Override the offrate of the index to n (-o)" help="-1 for default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
249 <param name="sSeed" type="integer" value="-1" label="Seed for pseudo-random number generator (--seed)" help="-1 for default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
250 </when> <!-- full -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
251 </conditional> <!-- sParams -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
252 </when> <!-- single -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
253 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
254 <param name="pInput1" type="data" format="fastqsanger,fastqillumina,fastqsolexa" label="Forward FASTQ file" help="Must have ASCII encoded quality scores"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
255 <param name="pInput2" type="data" format="fastqsanger,fastqillumina,fastqsolexa" label="Reverse FASTQ file" help="File format must match the Forward FASTQ file">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
256 <options options_filter_attribute="ext" from_parameter="tool.app.datatypes_registry.datatypes_by_extension" transform_lines="obj.keys()">>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
257 <column name="name" index="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
258 <column name="value" index="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
259 <filter type="param_value" ref="pInput1" ref_attribute="ext" column="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
260 </options>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
261 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
262 <param name="pMaxInsert" type="integer" value="1000" label="Maximum insert size for valid paired-end alignments (-X)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
263 <param name="pMateOrient" type="select" label="The upstream/downstream mate orientation for valid paired-end alignment against the forward reference strand (--fr/--rf/--ff)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
264 <option value="fr">FR (for Illumina)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
265 <option value="rf">RF</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
266 <option value="ff">FF (for SOLiD)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
267 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
268 <conditional name="pParams">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
269 <param name="pSettingsType" type="select" label="Bowtie settings to use" help="For most mapping needs use Commonly used settings. If you want full control use Full parameter list">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
270 <option value="preSet">Commonly used</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
271 <option value="full">Full parameter list</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
272 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
273 <when value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
274 <when value="full">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
275 <param name="pSkip" type="integer" value="0" label="Skip the first n pairs (-s)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
276 <param name="pAlignLimit" type="integer" value="-1" label="Only align the first n pairs (-u)" help="-1 for off" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
277 <param name="pTrimH" type="integer" value="0" label="Trim n bases from high-quality (left) end of each read before alignment (-5)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
278 <param name="pTrimL" type="integer" value="0" label="Trim n bases from low-quality (right) end of each read before alignment (-3)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
279 <param name="pMismatchSeed" type="integer" value="2" label="Maximum number of mismatches permitted in the seed (-n)" help="May be 0, 1, 2, or 3" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
280 <param name="pMismatchQual" type="integer" value="70" label="Maximum permitted total of quality values at mismatched read positions (-e)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
281 <param name="pSeedLen" type="integer" value="28" label="Seed length (-l)" help="Minimum value is 5" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
282 <param name="pRounding" type="select" label="Whether or not to round to the nearest 10 and saturating at 30 (--nomaqround)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
283 <option value="round">Round to nearest 10</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
284 <option value="noRound">Do not round to nearest 10</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
285 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
286 <param name="pMaqSoapAlign" type="integer" value="-1" label="Number of mismatches for SOAP-like alignment policy (-v)" help="-1 for default MAQ-like alignment policy" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
287 <param name="pMinInsert" type="integer" value="0" label="Minimum insert size for valid paired-end alignments (-I)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
288 <param name="pMaxAlignAttempt" type="integer" value="100" label="Maximum number of attempts Bowtie will make to match an alignment for one mate with an alignment for the opposite mate (--pairtries)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
289 <param name="pForwardAlign" type="select" label="Choose whether or not to attempt to align the forward reference strand (--nofw)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
290 <option value="forward">Align against the forward reference strand</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
291 <option value="noForward">Do not align against the forward reference strand</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
292 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
293 <param name="pReverseAlign" type="select" label="Choose whether or not to align against the reverse-complement reference strand (--norc)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
294 <option value="reverse">Align against the reverse-complement reference strand</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
295 <option value="noReverse">Do not align against the reverse-complement reference strand</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
296 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
297 <param name="pTryHard" type="select" label="Whether or not to try as hard as possible to find valid alignments when they exist (-y)" help="Tryhard mode is much slower than regular mode">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
298 <option value="noTryHard">Do not try hard</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
299 <option value="doTryHard">Try hard</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
300 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
301 <param name="pValAlign" type="integer" value="1" label="Report up to n valid arguments per pair (-k)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
302 <param name="pAllValAligns" type="select" label="Whether or not to report all valid alignments per pair (-a)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
303 <option value="noAllValAligns">Do not report all valid alignments</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
304 <option value="doAllValAligns">Report all valid alignments</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
305 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
306 <param name="pSuppressAlign" type="integer" value="-1" label="Suppress all alignments for a pair if more than n reportable alignments exist (-m)" help="-1 for no limit" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
307 <param name="pMaxFile" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write all reads with a number of valid alignments exceeding the limit set with the -m option to a file (--max)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
308 <param name="pUnmappedFile" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Write all reads that could not be aligned to a file (--un)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
309 <conditional name="pBestOption">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
310 <param name="pBest" type="select" label="Whether or not to make Bowtie guarantee that reported singleton alignments are 'best' in terms of stratum and in terms of the quality values at the mismatched positions (--best)" help="Removes all strand bias. Only affects which alignments are reported by Bowtie. Runs slower with best option">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
311 <option value="noBest">Do not use best</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
312 <option value="doBest">Use best</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
313 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
314 <when value="noBest">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
315 <param name="pnMaxBacktracks" type="integer" value="125" label="Maximum number of backtracks permitted when aligning a read (--maxbts)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
316 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
317 <when value="doBest">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
318 <param name="pdMaxBacktracks" type="integer" value="800" label="Maximum number of backtracks permitted when aligning a read (--maxbts)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
319 <param name="pdStrata" type="select" label="Whether or not to report only those alignments that fall in the best stratum if many valid alignments exist and are reportable (--strata)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
320 <option value="noStrata">Do not use strata option</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
321 <option value="doStrata">Use strata option</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
322 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
323 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
324 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
325 <param name="pOffrate" type="integer" value="-1" label="Override the offrate of the index to n (-o)" help="-1 for default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
326 <param name="pSeed" type="integer" value="-1" label="Seed for pseudo-random number generator (--seed)" help="-1 for default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
327 </when> <!-- full -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
328 </conditional> <!-- pParams -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
329 </when> <!-- paired -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
330 </conditional> <!-- singlePaired -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
331 <param name="suppressHeader" type="boolean" truevalue="true" falsevalue="false" checked="False" label="Suppress the header in the output SAM file" help="Bowtie produces SAM with several lines of header information by default" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
332 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
333 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
334 <data format="sam" name="output" label="${tool.name} on ${on_string}: mapped reads">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
335 <actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
336 <conditional name="refGenomeSource.genomeSource">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
337 <when value="indexed">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
338 <action type="metadata" name="dbkey">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
339 <option type="from_data_table" name="bowtie_indexes" column="1" offset="0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
340 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
341 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
342 </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
343 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
344 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
345 <when value="history">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
346 <action type="metadata" name="dbkey">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
347 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
348 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
349 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
350 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
351 </actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
352 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
353 <data format="fastq" name="output_suppressed_reads_l" label="${tool.name} on ${on_string}: suppressed reads (L)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
354 <filter>((
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
355 singlePaired['sPaired'] == "single" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
356 singlePaired['sParams']['sSettingsType'] == "full" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
357 singlePaired['sParams']['sMaxFile'] is True
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
358 ) or (
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
359 singlePaired['sPaired'] == "paired" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
360 singlePaired['pParams']['pSettingsType'] == "full" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
361 singlePaired['pParams']['pMaxFile'] is True
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
362 ))
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
363 </filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
364 <actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
365 <conditional name="singlePaired.sPaired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
366 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
367 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
368 <option type="from_param" name="singlePaired.sInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
369 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
370 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
371 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
372 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
373 <option type="from_param" name="singlePaired.pInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
374 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
375 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
376 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
377 </actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
378 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
379 <data format="fastq" name="output_suppressed_reads_r" label="${tool.name} on ${on_string}: suppressed reads (R)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
380 <filter>singlePaired['sPaired'] == "paired"</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
381 <filter>singlePaired['pParams']['pSettingsType'] == "full"</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
382 <filter>singlePaired['pParams']['pMaxFile'] is True</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
383 <actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
384 <conditional name="singlePaired.sPaired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
385 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
386 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
387 <option type="from_param" name="singlePaired.sInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
388 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
389 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
390 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
391 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
392 <option type="from_param" name="singlePaired.pInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
393 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
394 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
395 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
396 </actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
397 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
398 <data format="fastq" name="output_unmapped_reads_l" label="${tool.name} on ${on_string}: unmapped reads (L)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
399 <filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
400 ((
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
401 singlePaired['sPaired'] == "single" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
402 singlePaired['sParams']['sSettingsType'] == "full" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
403 singlePaired['sParams']['sUnmappedFile'] is True
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
404 ) or (
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
405 singlePaired['sPaired'] == "paired" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
406 singlePaired['pParams']['pSettingsType'] == "full" and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
407 singlePaired['pParams']['pUnmappedFile'] is True
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
408 ))
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
409 </filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
410 <actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
411 <conditional name="singlePaired.sPaired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
412 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
413 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
414 <option type="from_param" name="singlePaired.sInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
415 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
416 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
417 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
418 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
419 <option type="from_param" name="singlePaired.pInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
420 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
421 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
422 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
423 </actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
424 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
425 <data format="fastq" name="output_unmapped_reads_r" label="${tool.name} on ${on_string}: unmapped reads (R)">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
426 <filter>singlePaired['sPaired'] == "paired"</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
427 <filter>singlePaired['pParams']['pSettingsType'] == "full"</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
428 <filter>singlePaired['pParams']['pUnmappedFile'] is True</filter>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
429 <actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
430 <conditional name="singlePaired.sPaired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
431 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
432 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
433 <option type="from_param" name="singlePaired.sInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
434 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
435 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
436 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
437 <action type="format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
438 <option type="from_param" name="singlePaired.pInput1" param_attribute="ext" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
439 </action>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
440 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
441 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
442 </actions>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
443 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
444 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
445 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
446 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
447 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
448 Bowtie command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
449 bowtie -q -p 4 -S +sam-nohead chrM_base test-data/bowtie_in2.fastqsanger > bowtie_out6_u.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
450 sort bowtie_out6_u.sam > bowtie_out6.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
451 -p is the number of threads, which is hardcoded above. You need to replace the + with 2 dashes.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
452 chrM_base needs to be the base location/name of the index files.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
453 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
454 <param name="genomeSource" value="indexed" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
455 <!-- this is the backwards-compatible "unique value" for this index, not an actual path -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
456 <param name="index" value="equCab2chrM" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
457 <param name="sPaired" value="single" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
458 <param name="sInput1" ftype="fastqsanger" value="bowtie_in2.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
459 <param name="sSettingsType" value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
460 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
461 <output name="output" ftype="sam" file="bowtie_out6.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
462 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
463 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
464 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
465 Bowtie command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
466 bowtie-build -f test-data/phiX.fasta phiX_base
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
467 bowtie -q -X 1000 +ff -p 4 -S +sam-nohead -n 2 -e 70 -l 28 +pairtries 100 +maxbts 800 +best +un bowtie_out8_u.fastq phiX_base -1 test-data/bowtie_in5.fastqsanger -2 test-data/bowtie_in6.fastqsanger > bowtie_out7_u.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
468 sort bowtie_out7_u.sam > bowtie_out7.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
469 sort bowtie_out8_u_1.sam > bowtie_out8_1.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
470 sort bowtie_out8_u_2.sam > bowtie_out8_2.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
471 Then also need to modify bowtie_out8_1.sam and bowtie_out8_2.sam so that all @ lines come before sequence lines.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
472 -p is the number of threads, hardcoded above. You need to replace the + with 2 dashes.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
473 The two unmapped output files will be named bowtie_out8_1.fastq and bowtie_out8_2.fastq.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
474 chrM_base is the index files' location/base name.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
475 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
476 <param name="genomeSource" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
477 <param name="ownFile" value="phiX.fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
478 <param name="indexSettings" value="indexPreSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
479 <param name="sPaired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
480 <param name="pInput1" ftype="fastqsanger" value="bowtie_in5.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
481 <param name="pInput2" ftype="fastqsanger" value="bowtie_in6.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
482 <param name="pMaxInsert" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
483 <param name="pMateOrient" value="ff" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
484 <param name="pSettingsType" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
485 <param name="pSkip" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
486 <param name="pAlignLimit" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
487 <param name="pTrimH" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
488 <param name="pTrimL" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
489 <param name="pMismatchSeed" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
490 <param name="pMismatchQual" value="70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
491 <param name="pSeedLen" value="28" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
492 <param name="pRounding" value="round" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
493 <param name="pMaqSoapAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
494 <param name="pMinInsert" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
495 <param name="pMaxAlignAttempt" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
496 <param name="pForwardAlign" value="forward" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
497 <param name="pReverseAlign" value="reverse" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
498 <param name="pTryHard" value="noTryHard" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
499 <param name="pValAlign" value="1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
500 <param name="pAllValAligns" value="noAllValAligns" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
501 <param name="pSuppressAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
502 <param name="pUnmappedFile" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
503 <param name="pMaxFile" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
504 <param name="pBest" value="doBest" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
505 <param name="pdMaxBacktracks" value="800" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
506 <param name="pdStrata" value="noStrata" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
507 <param name="pOffrate" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
508 <param name="pSeed" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
509 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
510 <output name="output" ftype="sam" file="bowtie_out7.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
511 <output name="output_unmapped_reads_l" ftype="fastqsanger" file="bowtie_out8_1.fastq" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
512 <output name="output_unmapped_reads_r" ftype="fastqsanger" file="bowtie_out8_2.fastq" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
513 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
514 <!-- start testing of non-sanger variant fastq reads -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
515 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
516 <param name="genomeSource" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
517 <param name="ownFile" value="phiX.fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
518 <param name="indexSettings" value="indexPreSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
519 <param name="sPaired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
520 <param name="pInput1" ftype="fastqillumina" value="bowtie_in5.fastqillumina" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
521 <param name="pInput2" ftype="fastqillumina" value="bowtie_in6.fastqillumina" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
522 <param name="pMaxInsert" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
523 <param name="pMateOrient" value="ff" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
524 <param name="pSettingsType" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
525 <param name="pSkip" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
526 <param name="pAlignLimit" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
527 <param name="pTrimH" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
528 <param name="pTrimL" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
529 <param name="pMismatchSeed" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
530 <param name="pMismatchQual" value="70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
531 <param name="pSeedLen" value="28" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
532 <param name="pRounding" value="round" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
533 <param name="pMaqSoapAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
534 <param name="pMinInsert" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
535 <param name="pMaxAlignAttempt" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
536 <param name="pForwardAlign" value="forward" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
537 <param name="pReverseAlign" value="reverse" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
538 <param name="pTryHard" value="noTryHard" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
539 <param name="pValAlign" value="1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
540 <param name="pAllValAligns" value="noAllValAligns" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
541 <param name="pSuppressAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
542 <param name="pUnmappedFile" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
543 <param name="pMaxFile" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
544 <param name="pBest" value="doBest" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
545 <param name="pdMaxBacktracks" value="800" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
546 <param name="pdStrata" value="noStrata" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
547 <param name="pOffrate" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
548 <param name="pSeed" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
549 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
550 <output name="output" ftype="sam" file="bowtie_out7.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
551 <output name="output_unmapped_reads_l" ftype="fastqillumna" file="bowtie_out8_1.fastqillumina.sorted" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
552 <output name="output_unmapped_reads_r" ftype="fastqillumna" file="bowtie_out8_2.fastqillumina.sorted" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
553 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
554 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
555 <param name="genomeSource" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
556 <param name="ownFile" value="phiX.fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
557 <param name="indexSettings" value="indexPreSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
558 <param name="sPaired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
559 <param name="pInput1" ftype="fastqsolexa" value="bowtie_in5.fastqsolexa" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
560 <param name="pInput2" ftype="fastqsolexa" value="bowtie_in6.fastqsolexa" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
561 <param name="pMaxInsert" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
562 <param name="pMateOrient" value="ff" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
563 <param name="pSettingsType" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
564 <param name="pSkip" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
565 <param name="pAlignLimit" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
566 <param name="pTrimH" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
567 <param name="pTrimL" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
568 <param name="pMismatchSeed" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
569 <param name="pMismatchQual" value="70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
570 <param name="pSeedLen" value="28" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
571 <param name="pRounding" value="round" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
572 <param name="pMaqSoapAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
573 <param name="pMinInsert" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
574 <param name="pMaxAlignAttempt" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
575 <param name="pForwardAlign" value="forward" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
576 <param name="pReverseAlign" value="reverse" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
577 <param name="pTryHard" value="noTryHard" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
578 <param name="pValAlign" value="1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
579 <param name="pAllValAligns" value="noAllValAligns" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
580 <param name="pSuppressAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
581 <param name="pUnmappedFile" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
582 <param name="pMaxFile" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
583 <param name="pBest" value="doBest" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
584 <param name="pdMaxBacktracks" value="800" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
585 <param name="pdStrata" value="noStrata" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
586 <param name="pOffrate" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
587 <param name="pSeed" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
588 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
589 <output name="output" ftype="sam" file="bowtie_out7.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
590 <output name="output_unmapped_reads_l" ftype="fastqsolexa" file="bowtie_out8_1.fastqsolexa.sorted" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
591 <output name="output_unmapped_reads_r" ftype="fastqsolexa" file="bowtie_out8_2.fastqsolexa.sorted" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
592 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
593 <!-- end testing of non-sanger variant fastq reads -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
594 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
595 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
596 Bowtie command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
597 bowtie -q -p 4 -S +sam-nohead -n 2 -e 70 -l 28 +maxbts 125 -y -k 1 chrM_base test-data/bowtie_in2.fastqsanger > bowtie_out9_u.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
598 sort bowtie_out9_u.sam > bowtie_out9.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
599 -p is the number of threads, hardcoded above. You need to replace the + with 2 dashes.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
600 chrM_base is the index files' location/base name.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
601 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
602 <param name="genomeSource" value="indexed" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
603 <!-- this is the backwards-compatible "unique value" for this index, not an actual path -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
604 <param name="index" value="equCab2chrM" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
605 <param name="sPaired" value="single" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
606 <param name="sInput1" ftype="fastqsanger" value="bowtie_in2.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
607 <param name="sSettingsType" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
608 <param name="sSkip" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
609 <param name="sAlignLimit" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
610 <param name="sTrimH" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
611 <param name="sTrimL" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
612 <param name="sMismatchSeed" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
613 <param name="sMismatchQual" value="70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
614 <param name="sSeedLen" value="28" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
615 <param name="sRounding" value="round" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
616 <param name="sMaqSoapAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
617 <param name="sTryHard" value="doTryHard" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
618 <param name="sValAlign" value="1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
619 <param name="sAllValAligns" value="noAllValAligns" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
620 <param name="sSuppressAlign" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
621 <param name="sUnmappedFile" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
622 <param name="sMaxFile" value="false" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
623 <param name="sBest" value="noBest" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
624 <param name="snMaxBacktracks" value="125" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
625 <param name="sOffrate" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
626 <param name="sSeed" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
627 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
628 <output name="output" ftype="sam" file="bowtie_out9.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
629 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
630 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
631 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
632 Bowtie command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
633 bowtie-build +offrate 5 +ftabchars 10 +little -f test-data/phiX.fasta phiX_base
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
634 bowtie -q -X 1000 +ff -p 4 -S +sam-nohead phiX_base -1 test-data/bowtie_in5.fastqsanger -2 test-data/bowtie_in6.fastqsanger > bowtie_out10_u.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
635 sort bowtie_out10_u.sam > bowtie_out10.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
636 -p is the number of threads, hardcoded above. You need to replace the + with 2 dashes.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
637 chrM_base is the index files' location/base name.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
638 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
639 <param name="genomeSource" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
640 <param name="ownFile" value="phiX.fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
641 <param name="indexSettings" value="indexFull" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
642 <param name="autoB" value="auto" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
643 <param name="nodc" value="dc" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
644 <param name="noref" value="ref" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
645 <param name="offrate" value="5" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
646 <param name="ftab" value="10" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
647 <param name="ntoa" value="no" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
648 <param name="endian" value="little" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
649 <param name="seed" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
650 <param name="cutoff" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
651 <param name="sPaired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
652 <param name="pInput1" ftype="fastqsanger" value="bowtie_in5.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
653 <param name="pInput2" ftype="fastqsanger" value="bowtie_in6.fastqsanger" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
654 <param name="pMaxInsert" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
655 <param name="pMateOrient" value="ff" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
656 <param name="pSettingsType" value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
657 <param name="suppressHeader" value="true" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
658 <output name="output" ftype="sam" file="bowtie_out10.sam" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
659 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
660 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
661
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
662 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
663
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
664 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
665
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
666 Bowtie_ is a short read aligner designed to be ultrafast and memory-efficient. It is developed by Ben Langmead and Cole Trapnell. Please cite: Langmead B, Trapnell C, Pop M, Salzberg SL. Ultrafast and memory-efficient alignment of short DNA sequences to the human genome. Genome Biology 10:R25.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
667
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
668 .. _Bowtie: http://bowtie-bio.sourceforge.net/index.shtml
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
669
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
670 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
671
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
672 **Know what you are doing**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
673
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
674 .. class:: warningmark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
675
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
676 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.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
677
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
678 .. __: http://bowtie-bio.sourceforge.net/index.shtml
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
679
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
680 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
681
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
682 **Input formats**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
683
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
684 Bowtie accepts files in Sanger FASTQ format. Use the FASTQ Groomer to prepare your files.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
685
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
686 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
687
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
688 **A Note on Built-in Reference Genomes**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
689
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
690 Some genomes have multiple variants. If only one "type" of genome is listed, it is the Full version, which means that everything that came in the original genome data download (possibly with mitochondrial and plasmid DNA added if it wasn't already included). The Full version is available for every genome. Some genomes also come in the Canonical variant, which contains only the "canonical" (well-defined) chromosomes or segments, such as chr1-chr22, chrX, chrY, and chrM for human. Other variations include gender. These will come in the canonical form only, so the general Canonical variant is actually Canonical Female and the other is Canonical Male (identical to female excluding chrX).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
691
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
692 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
693
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
694 **Outputs**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
695
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
696 The output is in SAM format, and has the following columns::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
697
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
698 Column Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
699 -------- --------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
700 1 QNAME Query (pair) NAME
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
701 2 FLAG bitwise FLAG
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
702 3 RNAME Reference sequence NAME
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
703 4 POS 1-based leftmost POSition/coordinate of clipped sequence
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
704 5 MAPQ MAPping Quality (Phred-scaled)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
705 6 CIGAR extended CIGAR string
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
706 7 MRNM Mate Reference sequence NaMe ('=' if same as RNAME)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
707 8 MPOS 1-based Mate POSition
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
708 9 ISIZE Inferred insert SIZE
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
709 10 SEQ query SEQuence on the same strand as the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
710 11 QUAL query QUALity (ASCII-33 gives the Phred base quality)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
711 12 OPT variable OPTional fields in the format TAG:VTYPE:VALUE
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
712
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
713 The flags are as follows::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
714
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
715 Flag Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
716 ------ -------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
717 0x0001 the read is paired in sequencing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
718 0x0002 the read is mapped in a proper pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
719 0x0004 the query sequence itself is unmapped
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
720 0x0008 the mate is unmapped
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
721 0x0010 strand of the query (1 for reverse)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
722 0x0020 strand of the mate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
723 0x0040 the read is the first read in a pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
724 0x0080 the read is the second read in a pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
725 0x0100 the alignment is not primary
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
726
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
727 It looks like this (scroll sideways to see the entire example)::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
728
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
729 QNAME FLAG RNAME POS MAPQ CIAGR MRNM MPOS ISIZE SEQ QUAL OPT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
730 HWI-EAS91_1_30788AAXX:1:1:1761:343 4 * 0 0 * * 0 0 AAAAAAANNAAAAAAAAAAAAAAAAAAAAAAAAAAACNNANNGAGTNGNNNNNNNGCTTCCCACAGNNCTGG hhhhhhh;;hhhhhhhhhhh^hOhhhhghhhfhhhgh;;h;;hhhh;h;;;;;;;hhhhhhghhhh;;Phhh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
731 HWI-EAS91_1_30788AAXX:1:1:1578:331 4 * 0 0 * * 0 0 GTATAGANNAATAAGAAAAAAAAAAATGAAGACTTTCNNANNTCTGNANNNNNNNTCTTTTTTCAGNNGTAG hhhhhhh;;hhhhhhhhhhhhhhhhhhhhhhhhhhhh;;h;;hhhh;h;;;;;;;hhhhhhhhhhh;;hhVh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
732
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
733 -------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
734
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
735 **Bowtie settings**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
736
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
737 All of the options have a default value. You can change any of them. Most of the options in Bowtie have been implemented here.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
738
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
739 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
740
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
741 **Bowtie parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
742
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
743 This is an exhaustive list of Bowtie options:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
744
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
745 For indexing (bowtie-build)::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
746
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
747 -a No auto behavior. Disable the default behavior where bowtie automatically
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
748 selects values for --bmax/--bmaxdivn/--dcv/--packed parameters according
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
749 to the memory available. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
750 --packed Packing. Use a packed representation for DNA strings. [auto]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
751 --bmax INT Suffix maximum. The maximum number of suffixes allowed in a block. [auto]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
752 --bmaxdivn INT Suffix maximum fraction. The maximum number of suffixes allowed in a block
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
753 expressed as a fraction of the length of the reference. [4]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
754 --dcv INT Difference-cover sample. Use INT as the period for the difference-cover
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
755 sample. [1024]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
756 --nodc INT No difference-cover sample. Disable the difference-cover sample. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
757 -r No reference indexes. Do not build the NAME.3.ebwt and NAME.4.ebwt portions
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
758 of the index. Used only for paired-end alignment. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
759 -o Offrate. How many Burrows-Wheeler rows get marked by the indexer. The
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
760 indexer will mark every 2^INT rows. The marked rows correspond to rows on
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
761 the genome. [5]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
762 -t INT Ftab. The lookup table used to calculate an initial Burrows-Wheeler range
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
763 with respect to the first INT characters of the query. Ftab is 4^INT+1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
764 bytes. [10]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
765 --ntoa N conversion. Convert Ns to As before building the index. Otherwise, Ns are
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
766 simply excluded from the index and Bowtie will not find alignments that
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
767 overlap them. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
768 --big Endianness. Endianness to use when serializing integers to the index file. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
769 --little Endianness. [--little]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
770 --seed INT Random seed. Use INT as the seed for the pseudo-random number generator. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
771 --cutoff INT Cutoff. Index only the first INT bases of the reference sequences (cumulative
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
772 across sequences) and ignore the rest. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
773
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
774 For aligning (bowtie)::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
775
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
776 -s INT Skip. Do not align the first INT reads or pairs in the input. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
777 -u INT Align limit. Only align the first INT reads/pairs from the input. [no limit]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
778 -5 INT High-quality trim. Trim INT bases from the high-quality (left) end of each
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
779 read before alignment. [0]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
780 -3 INT Low-quality trim. Trim INT bases from the low-quality (right) end of each
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
781 read before alignment. [0]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
782 -n INT Mismatch seed. Maximum number of mismatches permitted in the seed (defined
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
783 with seed length option). Can be 0, 1, 2, or 3. [2]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
784 -e INT Mismatch quality. Maximum permitted total of quality values at mismatched
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
785 read positions. Bowtie rounds quality values to the nearest 10 and saturates
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
786 at 30. [70]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
787 -l INT Seed length. The number of bases on the high-quality end of the read to
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
788 which the -n ceiling applies. Must be at least 5. [28]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
789 --nomaqround Suppress MAQ rounding. Values are internally rounded to the nearest 10 and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
790 saturate at 30. This options turns off that rounding. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
791 -v INT MAQ- or SOAP-like alignment policy. This option turns off the default
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
792 MAQ-like alignment policy in favor of a SOAP-like one. End-to-end alignments
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
793 with at most INT mismatches. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
794 -I INT Minimum insert. The minimum insert size for valid paired-end alignments.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
795 Does checking on untrimmed reads if -5 or -3 is used. [0]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
796 -X INT Maximum insert. The maximum insert size for valid paired-end alignments.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
797 Does checking on untrimmed reads if -5 or -3 is used. [250]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
798 --fr Mate orientation. The upstream/downstream mate orientations for a valid
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
799 paired-end alignment against the forward reference strand. [--fr]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
800 --rf Mate orientation. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
801 --ff Mate orientation. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
802 --pairtries INT Maximum alignment attempts for paired-end data. [100]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
803 --nofw No forward aligning. Choosing this option means that Bowtie will not attempt
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
804 to align against the forward reference strand. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
805 --norc No reverse-complement aligning. Setting this will mean that Bowtie will not
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
806 attempt to align against the reverse-complement reference strand. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
807 --un FILENAME Write all reads that could not be aligned to file [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
808 --max FILENAME Write all reads with a number of valid alignments exceeding the limit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
809 set with the -m option to file [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
810 --maxbts INT Maximum backtracks. The maximum number of backtracks permitted when aligning
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
811 a read in -n 2 or -n 3 mode. [125 without --best] [800 with --best]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
812 -y Try hard. Try as hard as possible to find valid alignments when they exist,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
813 including paired-end alignments. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
814 --chunkmbs INT Thread memory. The number of megabytes of memory a given thread is given to
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
815 store path descriptors in --best mode. [32]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
816 -k INT Valid alignments. The number of valid alignments per read or pair. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
817 -a All valid alignments. Choosing this means that all valid alignments per read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
818 or pair will be reported. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
819 -m INT Suppress alignments. Suppress all alignments for a particular read or pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
820 if more than INT reportable alignments exist for it. [no limit]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
821 --best Best mode. Make Bowtie guarantee that reported singleton alignments are
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
822 "best" in terms of stratum (the number of mismatches) and quality values at
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
823 mismatched position. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
824 --strata Best strata. When running in best mode, report alignments that fall into the
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
825 best stratum if there are ones falling into more than one. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
826 -o INT Offrate override. Override the offrate of the index with INT. Some row
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
827 markings are discarded when index read into memory. INT must be greater than
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
828 the value used to build the index (default: 5). [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
829 --seed INT Random seed. Use INT as the seed for the pseudo-random number generator. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
830 --snpphred INT Use INT as the SNP penalty for decoding colorspace alignments. True ratio of
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
831 SNPs per base in the subject genome. [see --snpfrac]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
832 --snpfrac DEC Use DEC as the estimated ratio of SNPs per base when decoding colorspace
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
833 alignments. [0.001]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
834 --col-keepends Keep the extreme-end nucleotides and qualities when decoding colorspace
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
835 alignments. [off]
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
836
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
837 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
838 </tool>