Mercurial > repos > iuc > last
annotate lasttrain.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 |
rev | line source |
---|---|
7
eca7ac1eb423
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit ddb5e058a7877e627ed24ef8cb9a046ccb450cb4
iuc
parents:
6
diff
changeset
|
1 <tool id="last_train" name="LAST-train" version="@TOOL_VERSION@+galaxy1" profile="20.01"> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
2 <description>finds the rates (probabilities) of insertion, deletion, and substitutions between two sets of sequences.</description> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
3 <macros> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
4 <import>macros_last.xml</import> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
5 </macros> |
7
eca7ac1eb423
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit ddb5e058a7877e627ed24ef8cb9a046ccb450cb4
iuc
parents:
6
diff
changeset
|
6 <expand macro="bio_tools"/> |
eca7ac1eb423
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit ddb5e058a7877e627ed24ef8cb9a046ccb450cb4
iuc
parents:
6
diff
changeset
|
7 <expand macro="requirements"/> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
4
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
9 set -e -o pipefail; |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
10 #if $db_opts.db_opts_input == 'lastdb' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
11 ln -s '$db_opts.lastdatabase.extra_files_path' './db_files' && |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
12 #end if |
4
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
13 #if $query_fasta.ext.endswith('.gz') |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
14 zcat |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
15 #else |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
16 cat |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
17 #end if |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
18 '$query_fasta' | last-train |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
19 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
20 -Q $init_options.Q |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
21 -r $init_options.r |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
22 -q $init_options.q |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
23 -a $init_options.cost_opt.a |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
24 -b $init_options.cost_opt.b |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
25 -A $init_options.cost_opt.A |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
26 -B $init_options.cost_opt.B |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
27 -D $last_train_opt.align_opt.D |
3
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
28 #if $last_train_opt.align_opt.E != "" |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
29 -E $last_train_opt.align_opt.E |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
30 #end if |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
31 -s $last_train_opt.align_opt.s |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
32 -S $last_train_opt.align_opt.S |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
33 -T $last_train_opt.align_opt.T |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
34 -m $last_train_opt.align_opt.m |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
35 -k $last_train_opt.align_opt.k |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
36 -X $last_train_opt.align_opt.X |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
37 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
38 -P \${GALAXY_SLOTS:-1} |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
39 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
40 #if $db_opts.db_opts_input == 'db' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
41 '${"' '".join(str($db_opts.database.fields.path).split(","))}' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
42 #else if $db_opts.db_opts_input == 'lastdb' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
43 'db_files/lastdb' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
44 #end if |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
45 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
46 >'$outfile' |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
47 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
48 ]]></command> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
49 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
50 <inputs> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
51 <expand macro="input_db" /> |
4
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
52 <param name="query_fasta" type="data" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz" label="Queries input files" /> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
53 <conditional name="init_options"> |
1
86206f93fb13
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 67b8e5adffa4015ee60b1b4a0cd220f632ba1082"
iuc
parents:
0
diff
changeset
|
54 <param argument="-Q" type="select" multiple="false" label="Query input format"> |
86206f93fb13
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 67b8e5adffa4015ee60b1b4a0cd220f632ba1082"
iuc
parents:
0
diff
changeset
|
55 <option value="0" selected="true">FASTA</option> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
56 <option value="1">Fastq-sanger</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
57 </param> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
58 <when value="0"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
59 <param argument="-r" type="integer" value="5" label="Match score"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
60 <param argument="-q" type="integer" value="5" label="Mismatch cost"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
61 <expand macro="cost_macro" a="15" b="3"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
62 </when> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
63 <when value="1"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
64 <param argument="-r" type="integer" value="6" label="Match score"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
65 <param argument="-q" type="integer" value="18" label="Mismatch cost"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
66 <expand macro="cost_macro" a="21" b="9"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
67 </when> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
68 </conditional> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
69 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
70 <section name="last_train_opt" title="Last-train options" expanded="false"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
71 <!-- Training options missing --> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
72 <section name="align_opt" title="Alignment options" expanded="true"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
73 <param argument="-D" type="integer" value="1000000" label="Query letters per random alignment"/> |
3
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
74 <param argument="-E" type="integer" value="" optional="true" label="Maximum expected alignments per square giga"/> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
75 <param argument="-s" type="select" multiple="false" label="Query strand to use"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
76 <option value="0">Reverse</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
77 <option value="1" selected="true">Forward</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
78 <option value="2">Both</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
79 </param> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
80 <param argument="-S" type="select" multiple="false" label="Score matrix applies to forward strand of:"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
81 <option value="0">Reference</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
82 <option value="1" selected="true">Query</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
83 </param> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
84 <!--<param name="gapless_align" argument="-C" type="integer" value="" label="Omit gapless alignments in COUNT others with > score-per-length"/>--> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
85 <param argument="-T" type="select" multiple="false" label="Type of alignment:"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
86 <option value="0" selected="true">Local</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
87 <option value="1">Overlap</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
88 </param> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
89 <param argument="-m" type="integer" value="10" label="Maximum initial matches per query position"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
90 <param argument="-k" type="integer" value="1" label="Use initial matches starting at every STEP-th position in each query"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
91 <param argument="-X" type="select" multiple="false" label="N/X is ambiguous in:"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
92 <option value="0" selected="true">Neither sequence</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
93 <option value="1">Reference</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
94 <option value="2">Query</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
95 <option value="3">Both</option> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
96 </param> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
97 </section> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
98 </section> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
99 </inputs> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
100 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
101 <outputs> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
102 <data name="outfile" format="txt" label="LAST train from ${on_string}" /> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
103 </outputs> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
104 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
105 <tests> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
106 <test> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
107 <conditional name="db_opts"> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
108 <param name="db_opts_input" value="db"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
109 <param name="database" value="humdb"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
110 </conditional> |
3
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
111 <section name="last_train_opt"> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
112 <section name="align_opt"> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
113 <param name="E" value="10"/> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
114 </section> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
115 </section> |
4
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
116 <param name="query_fasta" value="fuguMito.fa.gz" ftype="fasta.gz"/> |
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
117 <output name="outfile" file="last_train_E.txt" ftype="txt" lines_diff="28"/> |
3
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
118 </test> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
119 <test> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
120 <conditional name="db_opts"> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
121 <param name="db_opts_input" value="db"/> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
122 <param name="database" value="humdb"/> |
3de2195f32c0
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 72dc050116d14e7a1342e7f9a2f7e095033d9a3a"
iuc
parents:
1
diff
changeset
|
123 </conditional> |
4
8705e0d74a0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit 6b601baaf89634bc8d110ea06e3e64c7a585f3ba"
iuc
parents:
3
diff
changeset
|
124 <param name="query_fasta" value="fuguMito.fq.gz" ftype="fastqsanger.gz"/> |
0
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
125 <output name="outfile" file="last_train.txt" ftype="txt" lines_diff="22"/> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
126 </test> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
127 </tests> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
128 |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
129 <help>@LAST_HELP@</help> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
130 <citations><expand macro="citations"/></citations> |
9a7e91fc6562
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/last commit c5689f5fc818d1538b2e15251c7de203c70e2219"
iuc
parents:
diff
changeset
|
131 </tool> |