comparison macros_last.xml @ 7:eca7ac1eb423 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit ddb5e058a7877e627ed24ef8cb9a046ccb450cb4
author iuc
date Mon, 23 Oct 2023 20:45:02 +0000
parents 19c265784f35
children
comparison
equal deleted inserted replaced
6:19c265784f35 7:eca7ac1eb423
1 <macros> 1 <macros>
2 <token name="@TOOL_VERSION@">1205</token> 2 <token name="@TOOL_VERSION@">1205</token>
3 <token name="@LAST_HELP@"><![CDATA[ 3 <token name="@LAST_HELP@"><![CDATA[
4 Documentation : http://last.cbrc.jp/ 4 Documentation : https://gitlab.com/mcfrith/last
5 5
6 LAST finds similar regions between sequences. 6 LAST finds similar regions between sequences.
7 7
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). 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).
9 9
18 - Calculate the likelihood of chance similarities between random sequences. 18 - Calculate the likelihood of chance similarities between random sequences.
19 - Do split and spliced alignment. 19 - Do split and spliced alignment.
20 - Train alignment parameters for unusual kinds of sequence (e.g. nanopore). 20 - Train alignment parameters for unusual kinds of sequence (e.g. nanopore).
21 21
22 ]]></token> 22 ]]></token>
23 <xml name="requirements">
24 <requirements>
25 <requirement type="package" version="@TOOL_VERSION@">last</requirement>
26 </requirements>
27 </xml>
23 <xml name="bio_tools"> 28 <xml name="bio_tools">
24 <xrefs> 29 <xrefs>
25 <xref type="bio.tools">last</xref> 30 <xref type="bio.tools">last</xref>
26 </xrefs> 31 </xrefs>
27 </xml> 32 </xml>
34 <param name="db_opts_input" type="select" label="Reference database"> 39 <param name="db_opts_input" type="select" label="Reference database">
35 <option value="db">Locally installed LAST database</option> 40 <option value="db">Locally installed LAST database</option>
36 <option value="lastdb" selected="true">LAST database from history</option> 41 <option value="lastdb" selected="true">LAST database from history</option>
37 </param> 42 </param>
38 <when value="db"> 43 <when value="db">
39 <param name="database" type="select" multiple="true" label="LAST database"> 44 <param name="database" type="select" label="LAST database">
40 <options from_data_table="lastdb" /> 45 <options from_data_table="lastdb" />
41 </param> 46 </param>
42 </when> 47 </when>
43 <when value="lastdb"> 48 <when value="lastdb">
44 <param name="lastdatabase" type="data" format="lastdb" label="LAST database" /> 49 <param name="lastdatabase" type="data" format="lastdb" label="LAST database" />