annotate tools/sr_mapping/lastz_wrapper.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="lastz_wrapper_2" name="Lastz" version="1.2.2">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description> map short reads against reference sequence</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">lastz_wrapper.py
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 #if $seq_name.how_to_name=="yes":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 --ref_name=$seq_name.ref_name
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 --ref_source=$source.ref_source
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 --source_select=$params.source_select
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 --out_format=$out_format
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 --input2=$input2
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 #if $source.ref_source=="history":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 --input1=$source.input1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 --ref_sequences=$input1.metadata.sequences
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 --input1="${ filter( lambda x: str( x[0] ) == str( $source.input1_2bit ), $__app__.tool_data_tables[ 'lastz_seqs' ].get_fields() )[0][-1] }"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 --ref_sequences="None"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 #if $params.source_select=="pre_set":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 --pre_set_options=${params.pre_set_options}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 #else:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 --strand=$params.strand
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 --seed=$params.seed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 --gfextend=$params.gfextend
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 --chain=$params.chain
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 --transition="$params.transition"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 --O=$params.O
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 --E=$params.E
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 --X=$params.X
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 --Y=$params.Y
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 --K=$params.K
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 --L=$params.L
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 --entropy=$params.entropy
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 --identity_min=$min_ident
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 --identity_max=$max_ident
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 --coverage=$min_cvrg
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 --output=$output1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 --unmask=$unmask
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 --lastzSeqsFileDir=${GALAXY_DATA_INDEX_DIR}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <param name="input2" format="fasta" type="data" label="Align sequencing reads in" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <conditional name="source">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <param name="ref_source" type="select" label="Against reference sequences that are">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 <option value="cached">locally cached</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <option value="history">in your history</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <when value="cached">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 <param name="input1_2bit" type="select" label="Using reference genome" help="If your genome of interest is not listed, contact the Galaxy team">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 <options from_data_table="lastz_seqs" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 <when value="history">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 <param name="input1" type="data" format="fasta" label="Select a reference dataset" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 <param name="out_format" type="select" label="Output format">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 <option value="sam">SAM</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 <option value="diffs">Polymorphisms</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 <option value="tabular">Tabular</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 <conditional name="params">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 <param name="source_select" type="select" label="Lastz settings to use" help="For most mapping needs use Commonly used settings. If you want full control use Full List">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 <option value="pre_set">Commonly used</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 <option value="full">Full Parameter List</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 <when value="pre_set">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 <param name="pre_set_options" type="select" label="Select mapping mode">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 <option value="yasra98">Roche-454 98% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 <option value="yasra95">Roche-454 95% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 <option value="yasra90">Roche-454 90% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 <option value="yasra85">Roche-454 85% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 <option value="yasra75">Roche-454 75% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 <option value="yasra95short">Illumina 95% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 <option value="yasra85short">Illumina 85% identity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 <when value="full">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 <param name="strand" type="select" label="Which strand to search?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 <option value="both">Both</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 <option value="plus">Search forward strand only (the one in the reference)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 <option value="minus">Search the reverse complement strand only (opposite of the reference)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 <param name="seed" type="select" label="Select seeding settings" help="allows you set word size and number of mismatches">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 <option value="12of19">Seed hits require a 19 bp word with matches in 12 specific positions</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 <option value="14of22">Seed hits require a 22 bp word with matches in 14 specific positions</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 <param name="transition" type="select" label="Select transition settings" help="affects the number of allowed transition substitutions">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 <option value="transition">Allow one transition in each seed hit</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 <option value="transition=2">Allow two transitions in a seed hit </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 <option value="notransition">Don't allow any transitions in seed hits</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 <param name="gfextend" type="select" label="Perform gap-free extension of seed hits to HSPs (high scoring segment pairs)?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 <option value="nogfextend">No</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 <option value="gfextend">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 <param name="chain" type="select" label="Perform chaining of HSPs?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 <option value="nochain">No</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 <option value="chain">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 <param name="O" type="integer" size="5" value="400" label="Gap opening penalty"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 <param name="E" type="integer" size="5" value="30" label="Gap extension penalty"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 <param name="X" type="integer" size="5" value="910" label="X-drop threshold"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 <param name="Y" type="integer" size="5" value="9370" label="Y-drop threshold"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 <param name="K" type="integer" size="5" value="3000" label="Set the threshold for HSPs (ungapped extensions scoring lower are discarded)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 <param name="L" type="integer" size="5" value="3000" label="Set the threshold for gapped alignments (gapped extensions scoring lower are discarded)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 <param name="entropy" type="select" label="Involve entropy when filtering HSPs?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 <option value="noentropy">No</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 <option value="entropy">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 <conditional name="seq_name">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 <param name="how_to_name" type="select" label="Do you want to modify the reference name?">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 <option value="no">No</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 <option value="yes">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 <when value="yes">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 <param name="ref_name" type="text" size="25" value="Type sequence name here" label="Enter name for the Reference sequence"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 <when value="no" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 <param name="min_ident" type="integer" size="3" value="0" label="Do not report matches below this identity (%)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 <param name="max_ident" type="integer" size="3" value="100" label="Do not report matches above this identity (%)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 <param name="min_cvrg" type="integer" size="3" value="0" label="Do not report matches that cover less than this percentage of each read"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 <param name="unmask" type="select" label="Convert lowercase bases to uppercase">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 <option value="yes">Yes</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 <option value="no">No</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 <data format="tabular" name="output1" label="${tool.name} on ${on_string}: mapped reads">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 <change_format>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 <when input="out_format" value="sam" format="sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 </change_format>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 <requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139 <requirement type="package">lastz</requirement>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 </requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 Lastz command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145 lastz phiX.2bit/phiX174[nickname=Ref] test-data/b1.fasta +nogfextend +nochain +gapped +strand=both +seed=12of19 +transition O=400 E=30 X=910 Y=9370 K=3000 L=3000 +noentropy +ambiguousn +nolaj +identity=0..100 +coverage=0 +format=sam- > lastz_wrapper_out2.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 You need to point to phiX.2bit somewhere on your system. b1.fasta is located in galaxy's test-data. You will have to replace all the pluses before the
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147 commands with 2 dashes, as double-dash can't appear in an XML comment.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149 <param name="input2" value="b1.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 <param name="ref_source" value="cached" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151 <!-- this is the backwards-compatible "unique value" for this file, not an actual path -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 <param name="input1_2bit" value="/galaxy/data/phiX/seq/phiX.2bit" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153 <param name="out_format" value="sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 <param name="source_select" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 <param name="strand" value="both" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156 <param name="seed" value="12of19" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 <param name="transition" value="transition" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158 <param name="gfextend" value="nogfextend" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 <param name="chain" value="nochain" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160 <param name="O" value="400" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 <param name="E" value="30" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162 <param name="X" value="910" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163 <param name="Y" value="9370" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164 <param name="K" value="3000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 <param name="L" value="3000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 <param name="entropy" value="noentropy" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 how_to_name is not the default. It is changed to modify
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 input1_2bit by adding the ref_name as a nickname
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171 <param name="how_to_name" value="yes" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 <param name="ref_name" value="Ref" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173 <param name="min_ident" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 <param name="max_ident" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175 <param name="min_cvrg" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 <param name="unmask" value="yes" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177 <output name="output1" file="lastz_wrapper_out2.sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 Lastz command:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182 lastz test-data/phiX.fasta test-data/b1.fasta[fullnames] +yasra95short +ambiguousn +nolaj +identity=0..100 +coverage=0 +format=diffs > lastz_wrapper_out3.tabular
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 phiX.fasta and b1.fasta are located in galaxy's test-data. You will have to replace all the pluses before the commands with 2 dashes,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184 as double-dash can't appear in an XML comment.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 <param name="input2" value="b1.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 <param name="ref_source" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188 <param name="input1" value="phiX.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189 <param name="out_format" value="diffs" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190 <param name="source_select" value="pre_set" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 <param name="pre_set_options" value="yasra95short" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 <param name="how_to_name" value="no" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193 <param name="min_ident" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194 <param name="max_ident" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195 <param name="min_cvrg" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 <param name="unmask" value="yes" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197 <output name="output1" file="lastz_wrapper_out3.tabular" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201 Lastz command: first you will need to split the file phiX_split.fasta into two files,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202 phiX1.fasta and phiX2.fasta, each with 1 sequence (phiX1 and phiX2, respectively). Then:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203 lastz phiX1.fasta test-data/b1.fasta *yasra95short *ambiguousn *nolaj *identity=0..100 *coverage=0 *format=general-:score,name1,strand1,size1,start1,zstart1,end1,length1,text1,name2,strand2,size2,start2,zstart2,end2,start2+,zstart2+,end2+,length2,text2,diff,cigar,identity,coverage,gaprate,diagonal,shingle > lastz_wrapper_out4.tabular
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204 lastz phiX2.fasta test-data/b1.fasta *yasra95short *ambiguousn *nolaj *identity=0..100 *coverage=0 *format=general-:score,name1,strand1,size1,start1,zstart1,end1,length1,text1,name2,strand2,size2,start2,zstart2,end2,start2+,zstart2+,end2+,length2,text2,diff,cigar,identity,coverage,gaprate,diagonal,shingle >> lastz_wrapper_out4.tabular
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205 You need to point to phiX1.fasta and phiX2.fasta somewhere on your system.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206 phiX_split.fasta and b1.fasta are located in galaxy's test-data
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207 You will have to replace all the asterisks before the commands with 2 dashes,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208 as double-dash can't appear in an XML comment
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 NOTE: since the input file include more than 1 sequence, the output must be sorted in
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211 order for functional test to pass. This is done using the sort="True" attribute on the output.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213 <param name="input2" value="b1.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
214 <param name="ref_source" value="history" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
215 <param name="input1" value="phiX_split.fasta" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
216 <param name="out_format" value="tabular" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
217 <param name="source_select" value="pre_set" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
218 <param name="pre_set_options" value="yasra95short" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
219 <param name="how_to_name" value="no" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
220 <param name="min_ident" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
221 <param name="max_ident" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
222 <param name="min_cvrg" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
223 <param name="unmask" value="yes" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
224 <output name="output1" file="lastz_wrapper_out4.tabular" sort="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
225 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
226 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
227 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
228
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
229 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
230
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
231 **LASTZ** is a high performance pairwise sequence aligner derived from BLASTZ. It is written by Bob Harris in Webb Miller's laboratory at Penn State University. Special scoring sets were derived to improve runtime performance and quality. This Galaxy version of LASTZ is geared towards aligning short (Illumina/Solexa, AB/SOLiD) and medium (Roche/454) reads against a reference sequence. There is excellent, extensive documentation on LASTZ available here_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
232
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
233 .. _here: http://www.bx.psu.edu/miller_lab/dist/README.lastz-1.02.00/README.lastz-1.02.00.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
234
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
235 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
236
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
237 **Input formats**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
238
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
239 LASTZ accepts reference and reads in FASTA format. However, because Galaxy supports implicit format conversion the tool will recognize fastq and other method specific formats.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
240
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
241 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
242
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
243 **Outputs**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
244
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
245 LASTZ generates one output. Depending on the choice you make in the *Select output format* drop-down, LASTZ will produce a SAM file showing sequence alignments, a list of differences between the reads and reference (Polymorphisms), or a general table with one line per alignment block (Tabular). Examples of these outputs are shown below.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
246
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
247 **SAM output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
248
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
249 SAM has 12 columns::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
250
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
251 1 2 3 4 5 6 7 8 9 10 11 12
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
252 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
253 HWI-EAS91_1_30788AAXX:1:2:1670:915 99 chr9 58119878 60 36M = 58120234 392 GACCCCTACCCCACCGTGCTCTGGATCTCAGTGTTT IIIIIIIIIIIIIIIIEIIIIIII7IIIIIIIIIII XT:A:U NM:i:0 SM:i:37 AM:i:37 X0:i:1 X1:i:0 XM:i:0 XO:i:0 XG:i:0 MD:Z:36
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
254 HWI-EAS91_1_30788AAXX:1:2:1670:915 147 chr9 58120234 60 36M = 58119878 -392 ATGAGTCGAATTCTATTTTCCAAACTGTTAACAAAA IFIIDI;IIICIIIIIIIIIIIIIIIIIIIIIIIII XT:A:U NM:i:0 SM:i:37 AM:i:37 X0:i:1 X1:i:0 XM:i:0 XO:i:0 XG:i:0 MD:Z:36
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
255
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
256
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
257 where::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
258
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
259 Column Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
260 --------- ---------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
261 1. QNAME Query (pair) NAME
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
262 2. FLAG bitwise FLAG
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
263 3. RNAME Reference sequence NAME
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
264 4. POS 1-based leftmost POSition/coordinate of clipped sequence
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
265 5. MAPQ MAPping Quality (Phred-scaled)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
266 6. CIGAR extended CIGAR string
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
267 7. MRNM Mate Reference sequence NaMe ('=' if same as RNAME)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
268 8. MPOS 1-based Mate POSition
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
269 9. ISIZE Inferred insert SIZE
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
270 10. SEQ query SEQuence on the same strand as the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
271 11. QUAL query QUALity (ASCII-33 gives the Phred base quality)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
272 12. OPT variable OPTional fields in the format TAG:VTYPE:VALUE, tab-separated
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
273
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
274 The flags are as follows::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
275
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
276 Flag Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
277 ------ -------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
278 0x0001 the read is paired in sequencing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
279 0x0002 the read is mapped in a proper pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
280 0x0004 the query sequence itself is unmapped
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
281 0x0008 the mate is unmapped
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
282 0x0010 strand of the query (1 for reverse)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
283 0x0020 strand of the mate
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
284 0x0040 the read is the first read in a pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
285 0x0080 the read is the second read in a pair
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
286 0x0100 the alignment is not primary
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
287
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
288 **Polymorphism (SNP or differences) output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
289
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
290 Polymorphism output contains 14 columns::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
291
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
292 1 2 3 4 5 6 7 8 9 10 11 12 13 14
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
293 --------------------------------------------------------------------------------------------------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
294 chrM 2490 2491 + 5386 HWI-EAS91_1_306UPAAXX:6:1:486:822 10 11 - 36 C A ACCTGTTTTACAGACACCTAAAGCTACATCGTCAAC ACCTGTTTTAAAGACACCTAAAGCTACATCGTCAAC
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
295 chrM 2173 2174 + 5386 HWI-EAS91_1_306UPAAXX:6:1:259:1389 26 27 + 36 G T GCGTACTTATTCGCCACCATGATTATGACCAGTGTT GCGTACTTATTCGCCACCATGATTATTACCAGTGTT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
296
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
297 where::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
298
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
299 1. (chrM) - Reference sequence id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
300 2. (2490) - Start position of the difference in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
301 3. (2491) - End position of the difference in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
302 4. (+) - Strand of the reference (always plus)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
303 5. (5386) - Length of the reference sequence
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
304 6. (HWI...) - read id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
305 7. (10) - Start position of the difference in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
306 8. (11) - End position of the difference in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
307 9. (+) - Strand of the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
308 10. (36) - Length of the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
309 11. (C) - Nucleotide in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
310 12. (A) - Nucleotide in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
311 13. (ACC...) - Reference side os the alignment
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
312 14. (ACC...) - Read side of the alignment
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
313
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
314 **Tabular output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
315
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
316 Tabular output is a tab-separated format with 30 columns::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
317
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
318 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
319 -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
320 14 PHIX174 + 5386 4648 4647 4661 14 ATTTTCGTGATATT EYKX4VC01BV8HS + 204 154 153 167 154 153 167 14 ATTTTCGTGATATT .............. 14M 14/14 100.0% 14/204 6.9% 0/14 0.0% 4494 NA
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
321 16 PHIX174 + 5386 3363 3362 3378 16 GACGCCGGATTTGAGA EYKX4VC01AWJ88 - 259 36 35 51 209 208 224 16 GACGCCGGATTTGAGA ................ 16M 16/16 100.0% 16/259 6.2% 0/16 0.0% 3327 NA
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
322
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
323 The following columns are present::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
324
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
325 Field Meaning
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
326 ---------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
327 1. score Score of the alignment block. The scale and meaning of this number will vary, depending on the final stage performed and other command-line options.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
328 2. name1 Name of the target sequence.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
329 3. strand1 Target sequence strand, either "+" or "−".
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
330 4. size1 Size of the entire target sequence.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
331 5. start1 Starting position of the alignment block in the target, origin-one.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
332 6. zstart1 Starting position of the alignment block in the target, origin-zero.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
333 7. end1 Ending position of the alignment block in the target, expressed either as origin-one closed or origin-zero half-open (the ending value is the same in both systems).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
334 8. length1 Length of the alignment block in the target (excluding gaps).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
335 9. text1 Aligned characters in the target, including gap characters.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
336 10. name2 Name of the query sequence.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
337 11. strand2 Query sequence strand, either "+" or "−".
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
338 12. size2 Size of the entire query sequence.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
339 13. start2 Starting position of the alignment block in the query, origin-one.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
340 14. zstart2 Starting position of the alignment block in the query, origin-zero.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
341 15. end2 Ending position of the alignment block in the query, expressed either as origin-one closed or origin-zero half-open (the ending value is the same in both systems).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
342 16. start2+ Starting position of the alignment block in the query, counting along the query sequence's positive strand (regardless of which query strand was aligned), origin-one. Note that if strand2 is "−", then this is the other end of the block from start2.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
343 17. zstart2+ Starting position of the alignment block in the query, counting along the query sequence's positive strand (regardless of which query strand was aligned), origin-zero. Note that if strand2 is "−", then this is the other end of the block from zstart2.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
344 18. end2+ Ending position of the alignment block in the query, counting along the query sequence's positive strand (regardless of which query strand was aligned), expressed either as origin-one closed or origin-zero half-open (the ending value is the same in both systems). Note that if strand2 is "−", then this is the other end of the block from end2.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
345 19. length2 Length of the alignment block in the query (excluding gaps).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
346 20. text2 Aligned characters in the query, including gap characters.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
347 21. diff Differences between what would be written for text1 and text2. Matches are written as . (period), transitions as : (colon), transversions as X, and gaps as - (hyphen).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
348 22. cigar A CIGAR-like representation of the alignment's path through the Dynamic Programming matrix. This is the short representation, without spaces, described in the Ensembl CIGAR specification.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
349 23./24. identity Fraction of aligned bases in the block that are matches (see Identity). This is written as two fields. The first field is a fraction, written as &lt;n&gt;/&lt;d&gt;. The second field contains the same value, computed as a percentage.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
350 25./26. coverage Fraction of the entire input sequence (target or query, whichever is shorter) that is covered by the alignment block (see Coverage). This is written as two fields. The first field is a fraction, written as &lt;n&gt;/&lt;d&gt;. The second field contains the same value, computed as a percentage.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
351 27./28. gaprate Rate of gaps (also called indels) in the alignment block. This is written as two fields. The first field is a fraction, written as &lt;n&gt;/&lt;d&gt;, with the numerator being the number of alignment columns containing gaps and the denominator being the number without gaps. The second field contains the same value, computed as a percentage.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
352 29. diagonal The diagonal of the start of the alignment block in the dynamic programming matrix, expressed as an identifying number start1-start2.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
353 30. shingle A measurement of the shingle overlap between the target and the query. This is intended for the case where both the target and query are relatively short, and their ends are expected to overlap.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
354
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
355 -------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
356
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
357 **LASTZ Settings**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
358
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
359 There are two setting modes: (1) **Commonly used settings** and (2) **Full Parameter List**.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
360
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
361 **Commonly used settings**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
362
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
363 There are seven modes::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
364
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
365 Illumina-Solexa/AB-SOLiD 95% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
366 Illumina-Solexa/AB-SOLiD 85% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
367 Roche-454 98% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
368 Roche-454 95% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
369 Roche-454 90% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
370 Roche-454 85% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
371 Roche-454 75% identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
372
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
373 When deciding which one to use, consider the following: a 36 bp read with two differences will be 34/36 = 94% identical to the reference.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
374
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
375 **Full Parameter List**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
376
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
377 This mode gives you fuller control over lastz. The description of these and other parameters is found at the end of this page. Note that not all parameters are included in this interface. If you would like to make additional options available through Galaxy, e-mail us at galaxy-bugs@bx.psu.edu.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
378
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
379 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
380
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
381 **Do you want to modify the reference name?**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
382
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
383 This option allows you to set the name of the reference sequence manually. This is helpful when, for example, you would like to make the reference name compatible with the UCSC naming conventions to be able to display your lastz results as a custom track at the UCSC Genome Browser.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
384
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
385 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
386
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
387 **LASTZ parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
388
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
389 This is an exhaustive list of LASTZ options. Once again, please note that not all options are included in this interface. If you would like to make additional options available through Galaxy, e-mail us at galaxy-bugs@bx.psu.edu::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
390
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
391 target[[s..e]][-] spec/file containing target sequence (fasta or nib)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
392 [s..e] defines a subrange of the file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
393 - indicates reverse-complement
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
394 (use --help=files for more details)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
395 query[[s..e]][-] spec/file containing query sequences (fasta or nib)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
396 if absent, queries come from stdin (unless they
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
397 aren't needed, as for --self or --tableonly)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
398 (use --help=files for more details)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
399 --self the target sequence is also the query
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
400 --quantum the query sequence contains quantum DNA
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
401 --seed=match&lt;length&gt; use a word with no gaps instead of a seed pattern
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
402 --seed=half&lt;length&gt; use space-free half-weight word instead of seed pattern
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
403 --match=&lt;reward&gt;[,&lt;penalty&gt;] set the score values for a match (+&lt;reward&gt;)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
404 and mismatch (-&lt;penalty&gt;)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
405 --[no]trans[ition][=2] allow one or two transitions in a seed hit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
406 (by default a transition is allowed)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
407 --word=&lt;bits&gt; set max bits for word hash; use this to trade time for
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
408 memory, eliminating thrashing for heavy seeds
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
409 (default is 28 bits)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
410 --[no]filter=[&lt;T&gt;:]&lt;M&gt; filter half-weight seed hits, requiring at least M
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
411 matches and allowing no more than T transversions
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
412 (default is no filtering)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
413 --notwins require just one seed hit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
414 --twins=[&lt;min&gt;:]&lt;maxgap&gt; require two nearby seed hits on the same diagonal
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
415 (default is twins aren't required)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
416 --notwins allow single, isolated seeds
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
417 --[no]recoverseeds avoid losing seeds in hash collisions. Cannot be used with --twins
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
418 --seedqueue=&lt;entries&gt; set number of entries in seed hit queue
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
419 (default is 262144)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
420 --anchors=&lt;file&gt; read anchors from a file, instead of discovering anchors
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
421 via seeding
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
422 --recoverhits recover hash-collision seed hits
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
423 (default is not to recover seed hits)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
424 --step=&lt;length&gt; set step length (default is 1)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
425 --maxwordcount=&lt;limit&gt; words occurring more often than &lt;limit&gt; in the target
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
426 are not eligible for seeds
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
427 --strand=both search both strands
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
428 --strand=plus search + strand only (matching strand of query spec)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
429 --strand=minus search - strand only (opposite strand of query spec)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
430 (by default both strands are searched)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
431 --ambiguousn treat N as an ambiguous nucleotide
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
432 (by default N is treated as a sequence splicing character)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
433 --[no]gfextend perform gap-free extension of seed hits to HSPs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
434 (by default no extension is performed)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
435 --[no]chain perform chaining
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
436 --chain=&lt;diag,anti&gt; perform chaining with given penalties for diagonal and
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
437 anti-diagonal
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
438 (by default no chaining is performed)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
439 --[no]gapped perform gapped alignment (instead of gap-free)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
440 (by default gapped alignment is performed)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
441 --score[s]=&lt;file&gt; read substitution scores from a file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
442 (default is HOXD70)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
443 --unitscore[s] scores are +1/-1 for match/mismatch
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
444 --gap=&lt;[open,]extend&gt; set gap open and extend penalties (default is 400,30)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
445 --xdrop=&lt;score&gt; set x-drop threshold (default is 10*sub[A][A])
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
446 --ydrop=&lt;score&gt; set y-drop threshold (default is open+300extend)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
447 --infer[=&lt;control&gt;] infer scores from the sequences, then use them
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
448 --inferonly[=&lt;control&gt;] infer scores, but don't use them (requires --infscores)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
449 all inference options are read from the control file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
450 --infscores[=&lt;file&gt;] write inferred scores to a file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
451 --hspthresh=&lt;score&gt; set threshold for high scoring pairs (default is 3000)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
452 ungapped extensions scoring lower are discarded
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
453 &lt;score&gt; can also be a percentage or base count
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
454 --entropy adjust for entropy when qualifying HSPs in the x-drop extension
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
455 method
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
456 --noentropy don't adjust for entropy when qualifying HSPs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
457 --exact=&lt;length&gt; set threshold for exact matches
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
458 if specified, exact matches are found rather than high
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
459 scoring pairs (replaces --hspthresh)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
460 --inner=&lt;score&gt; set threshold for HSPs during interpolation
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
461 (default is no interpolation)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
462 --gappedthresh=&lt;score&gt; set threshold for gapped alignments
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
463 gapped extensions scoring lower are discarded
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
464 &lt;score&gt; can also be a percentage or base count
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
465 (default is to use same value as --hspthresh)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
466 --ball=&lt;score&gt; set minimum score required of words 'in' a quantum ball
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
467 --[no]entropy involve entropy in filtering high scoring pairs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
468 (default is "entropy")
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
469 --[no]mirror report/use mirror image of all gap-free alignments
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
470 (default is "mirror" for self-alignments only)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
471 --traceback=&lt;bytes&gt; space for trace-back information
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
472 (default is 80.0M)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
473 --masking=&lt;count&gt; mask any position in target hit this many times
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
474 zero indicates no masking
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
475 (default is no masking)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
476 --targetcapsule=&lt;capsule_file&gt; the target seed word position table and seed
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
477 (as well as the target sequence)are read from specified file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
478 --segments=&lt;segment_file&gt; read segments from a file, instead of discovering
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
479 them via seeding. Replaces other seeding or gap-free extension
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
480 options
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
481 --[no]census[=&lt;file&gt;] count/report how many times each target base aligns
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
482 (default is to not report census)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
483 --identity=&lt;min&gt;[..&lt;max&gt;] filter alignments by percent identity
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
484 0&lt;=min&lt;=max&lt;=100; blocks (or HSPs) outside min..max
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
485 are discarded
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
486 (default is no identity filtering)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
487 --coverage=&lt;min&gt;[..&lt;max&gt;] filter alignments by percentage pf query covered
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
488 0&lt;=min&lt;=max&lt;=100; blocks (or HSPs) outside min..max
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
489 are discarded
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
490 (default is no query coverage filtering)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
491 --notrivial do not output trivial self-alignment block if the target and query
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
492 sequences are identical. Using --self enables this option automatically
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
493 --output=&lt;output_file&gt; write the alignments to the specified file name instead of stdout
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
494 --code=&lt;file&gt; give quantum code for query sequence (only for display)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
495 --format=&lt;type&gt; specify output format; one of lav, axt, maf, maf+, maf-, text,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
496 lav+text, cigar, text, rdplot, general, or general:&lt;fields&gt;
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
497 (by default output is LAV)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
498 --rdotplot=&lt;file&gt; create an additional output file suitable for plotting the alignments
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
499 with the R statistical package.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
500 --markend Just before normal completion, write "# lastz end-of-file" to output file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
501 --census[=&lt;output_file&gt;] count and report how many times each target base aligns, up
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
502 to 255. Ns are included in the count
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
503 --census16[=&lt;output_file&gt;] count and report how many times each target base aligns, up
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
504 up 65 thousand
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
505 --census32[=&lt;output_file&gt;] count and report how many times each target bas aligns, up
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
506 to 4 billion
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
507 --writecapsule=&lt;capsule_file&gt; just write out a target capsule file and quit; don't
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
508 search for seeds or perform subsequent stages
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
509 --verbosity=&lt;level&gt; set info level (0 is minimum, 10 is everything)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
510 (default is 0)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
511 --[no]runtime report runtime in the output file
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
512 (default is to not report runtime)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
513 --tableonly[=count] just produce the target position table, don't
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
514 search for seeds
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
515 --[no]stats[=&lt;file&gt;] show search statistics (or don't)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
516 (not available in this build)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
517 --version report the program version and quit
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
518 --help list all options
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
519 --help=files list information about file specifiers
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
520 --help=short[cuts] list blastz-compatible shortcuts
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
521 --help=yasra list yasra-specific shortcuts
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
522
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
523 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
524 </tool>