annotate macros_last.xml @ 10:a07c62dc88f9 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 88d7f81768f05f490f444b646f47241cf2547b44"
author iuc
date Sat, 27 Nov 2021 10:11:58 +0000
parents 18ff8319181f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
1 <macros>
10
a07c62dc88f9 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 88d7f81768f05f490f444b646f47241cf2547b44"
iuc
parents: 9
diff changeset
2 <token name="@TOOL_VERSION@">1205</token>
0
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
3 <token name="@LAST_HELP@"><![CDATA[
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
4 Documentation : http://last.cbrc.jp/
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
5
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
6 LAST finds similar regions between sequences.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
7
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
8 The main technical innovation is that LAST finds initial matches based on their multiplicity, instead of using a fixed length (e.g. BLAST uses 11-mers). To find these variable-length matches, it uses a suffix array (inspired by Vmatch). To achieve high sensitivity, it uses a spaced suffix array (or subset suffix array), analogous to spaced seeds (or subset seeds).
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
9
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
10 LAST can:
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
11 - Handle big sequence data, e.g:
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
12 - Compare two vertebrate genomes.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
13 - Align billions of DNA reads to a genome.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
14 - Indicate the reliability of each aligned column.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
15 - Use sequence quality data properly.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
16 - Compare DNA to proteins, with frameshifts.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
17 - Compare PSSMs to sequences.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
18 - Calculate the likelihood of chance similarities between random sequences.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
19 - Do split and spliced alignment.
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
20 - Train alignment parameters for unusual kinds of sequence (e.g. nanopore).
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
21
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
22 ]]></token>
9
18ff8319181f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
23 <xml name="bio_tools">
18ff8319181f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
24 <xrefs>
18ff8319181f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
25 <xref type="bio.tools">last</xref>
18ff8319181f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
26 </xrefs>
18ff8319181f "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents: 8
diff changeset
27 </xml>
0
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
28 <xml name="citations">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
29 <citation type="doi">10.1101/gr.113985.110</citation>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
30 </xml>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
31
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
32 <xml name="input_db">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
33 <conditional name="db_opts">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
34 <param name="db_opts_input" type="select" label="Reference database">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
35 <option value="db">Locally installed LAST database</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
36 <option value="lastdb" selected="true">LAST database from history</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
37 </param>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
38 <when value="db">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
39 <param name="database" type="select" multiple="true" label="LAST database">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
40 <options from_data_table="lastdb" />
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
41 </param>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
42 </when>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
43 <when value="lastdb">
8
bd3a1cc88f0a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 4568799de240022f4058ec1602e08f536916e2af"
iuc
parents: 7
diff changeset
44 <param name="lastdatabase" type="data" format="lastdb" label="LAST database" />
0
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
45 </when>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
46 </conditional>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
47 </xml>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
48
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
49 <xml name="step_macro" token_step="1">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
50 <param argument="-w" type="integer" value="@STEP@" label="Use initial matches starting at every w-th position in each sequence"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
51 <param argument="-W" type="integer" value="1" label="Use minimum positions in sliding windows of W consecutive positions"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
52 <!-- -m ignored if -u is defined scheme -->
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
53 <param argument="-m" type="integer" value="1" label="Seed pattern"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
54 </xml>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
55
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
56 <xml name="score_macro">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
57 <section name="score_opt" title="Score options" expanded="false">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
58 <param argument="-X" type="select" multiple="false" label="N/X is ambiguous">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
59 <option value="0" selected="true">Neither sequence</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
60 <option value="1">Reference</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
61 <option value="2">Query</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
62 <option value="3">Both</option>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
63 </param>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
64 <!--
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
65 <param name="residue_pair_cost" argument="-c" type="integer" value="0" label="Unaligned residue pair cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
66 <param name="frameshift_cost" argument="-F" type="integer" value="0" label="Frameshift cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
67 -->
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
68 <param argument="-x" type="integer" value="21" label="Maximum score drop for preliminary gapped alignments"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
69 <param argument="-y" type="integer" value="9" label="Maximum score drop for gapless alignments"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
70 <param argument="-z" type="integer" value="21" label="Maximum score drop for final gapped alignments"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
71 <param argument="-d" type="integer" value="13" label="Minimum score for gapless alignments"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
72 <param argument="-e" type="integer" value="22" label="Minimum score for gapped alignments"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
73 </section>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
74 </xml>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
75
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
76 <xml name="cost_macro" token_a="7" token_b="1">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
77 <section name="cost_opt" title="Cost options" expanded="false">
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
78 <param argument="-a" type="integer" value="@A@" label="Gap existence cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
79 <param argument="-b" type="integer" value="@B@" label="Gap extension cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
80 <param argument="-A" type="integer" value="@A@" label="Insertion existence cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
81 <param argument="-B" type="integer" value="@B@" label="Insertion extension cost"/>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
82 </section>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
83 </xml>
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
84
7f7e48d3b85d "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit eee0dd5282b34bcfbfd79381be8474e8fcf2dbb8"
iuc
parents:
diff changeset
85 </macros>