annotate lexicmap.xml @ 5:f0e5afff062b draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
author iuc
date Thu, 22 Jan 2026 09:42:53 +0000
parents feedc23590ad
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
1 <tool id="lexicmap_search" name="LexicMap Search" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE_VERSION@">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
2 <description>nucleotide sequence tool for querying genomes</description>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
3 <macros>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
4 <import>macros.xml</import>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
5 </macros>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
6 <expand macro="bio_tools"/>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
8
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
10 #if $db_opts.db_opts_selector == "histdb"
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
11 #set INDICES = [db.extra_files_path for db in $db_opts.histdb]
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
12 #else:
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
13 #set INDICES = $db_opts.lexicmap_index.fields.path.split(",")
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
14 #end if
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
15
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
16 #for $counter, $index in enumerate($INDICES):
5
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
17 set -eu;
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
18 lexicmap search
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
19 --threads "\${GALAXY_SLOTS:-1}"
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
20 ${load_whole_seeds}
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
21 ${all}
2
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
22
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
23 --index '${index}'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
24
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
25 #for $q in $query
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
26 '$q'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
27 #end for
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
28
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
29 --out-file 'lexicmap_search_result__index${counter}.tsv'
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
30
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
31 --top-n-genomes '$top_n_genomes'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
32
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
33 --align-band '$align_band'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
34 --align-ext-len '$align_ext_len'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
35 --align-max-gap '$align_max_gap'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
36 --align-min-match-len '$align_min_match_len'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
37 --align-min-match-pident '$align_min_match_pident'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
38 --max-evalue '$max_evalue'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
39 --max-query-conc '$max_query_conc'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
40 --seed-max-dist '$seed_max_dist'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
41 --seed-max-gap '$seed_max_gap'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
42 --seed-min-prefix '$seed_min_prefix'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
43 --seed-min-single-prefix '$seed_min_single_prefix'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
44
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
45 #if $min_qcov_per_genome
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
46 --min-qcov-per-genome '$min_qcov_per_genome'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
47 #end if
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
48
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
49 #if $min_qcov_per_hsp
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
50 --min-qcov-per-hsp '$min_qcov_per_hsp'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
51 #end if
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
52 &&
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
53 #end for
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
54
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
55 #if len($INDICES) > 1
5
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
56 query_ids="";
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
57 #for $query_file in $query
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
58 #if $query_file.is_of_type("fasta.gz")
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
59 query_ids+=\$(zcat '$query_file' | grep '^>' | while IFS= read -r line; do clean="\${line#>}"; echo "\${clean%% *}>"; done);
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
60 #else
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
61 query_ids+=\$(cat '$query_file' | grep '^>' | while IFS= read -r line; do clean="\${line#>}"; echo "\${clean%% *}>"; done);
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
62 #end if
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
63 #end for
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
64 IFS='>' read -r -a query_array <<< "\$query_ids";
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
65 counter=0 &&
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
66 for ((i=0; i<\${#query_array[@]}; i++)); do
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
67 counter=\$((counter + 1));
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
68 lexicmap utils merge-search-results
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
69 --out-file "combined_result.\${counter}.tsv"
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
70 -q "\${query_array[\$i]}" lexicmap_search_result__index*.tsv
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
71 -j "\${GALAXY_SLOTS:-1}";
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
72 done &&
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
73 cat combined_result.*.tsv | awk 'NR==1 || $0 !~ /^query\tqlen\thits/' > '$out_file'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
74 #else
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
75 mv lexicmap_search_result__index0.tsv '$out_file'
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
76 #end if
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
77 ]]></command>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
78 <inputs>
5
f0e5afff062b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents: 4
diff changeset
79 <param name="query" type="data" format="@FASTA_TYPES@" label="LexicMap query file" multiple="true" help=""/>
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
80 <conditional name="db_opts">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
81 <param name="db_opts_selector" type="select" label="LexiMap index source">
4
feedc23590ad planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents: 3
diff changeset
82 <option value="histdb">From your history</option>
feedc23590ad planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents: 3
diff changeset
83 <option value="db" selected="true">Locally installed LexicMap indexes</option>
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
84 </param>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
85 <when value="histdb">
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
86 <param name="histdb" type="data" format="lexicmap_index" optional="false" multiple="true" label="LexicMap index" />
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
87 </when>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
88 <when value="db">
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
89 <param name="lexicmap_index" type="select" optional="false" multiple="true" label="LexicMap index file">
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
90 <options from_data_table="lexicmap_index"/>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
91 </param>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
92 </when>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
93 </conditional>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
94 <param argument="--top-n-genomes" type="integer" value="0" label="Keep top N genome matches for a query (0 for all)" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
95 <section name="advanced_settings" title="Advanced settings" expanded="false">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
96 <param argument="--align-band" value="100" type="integer" label="Align band" help="Band size in backtracking the score matrix (pseudo alignment" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
97 <param argument="-align-ext-len" min="0" value="1000" type="integer" label="Align extend length" help="Extend length of upstream and downstream of seed regions, for extracting query and target sequences for alignment. It should be &lt;= contig interval length in database." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
98 <param argument="-align-max-gap" value="20" type="integer" label="Align max gap" help="Maximum gap in a HSP segment." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
99 <param argument="--align-min-match-len" value="50" type="integer" label="Align min match length" help="Minimum aligned length in a HSP segment." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
100 <param argument="--align-min-match-pident" value="70" type="float" label="Align min match pident" help="Minimum base identity (percentage) in a HSP segment." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
101 <param argument="--all" type="boolean" truevalue="--all" falsevalue="" checked="false" label="All all columns" help="Output more columns, e.g., matched sequences. Use this if you want to output blast-style format with 'lexicmap utils 2blast'." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
102 <param argument="--load-whole-seeds" type="boolean" truevalue="--load-whole-seeds" falsevalue="" checked="false" label="Load whole seeds" help="Load the whole seed data into memory for faster search" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
103 <param argument="--max-evalue" value="10" type="float" label="Max evalue" help="Maximum evalue of a HSP segment." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
104 <param argument="--max-query-conc" value="12" type="integer" label="Max query conc" help="Maximum number of concurrent queries. Bigger values do not improve the batch searching speed and consume much memory." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
105 <param argument="--min-qcov-per-genome" type="float" optional="true" help="Minimum query coverage (percentage) per genome." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
106 <param argument="--min-qcov-per-hsp" type="float" optional="true" help="Minimum query coverage (percentage) per HSP." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
107 <param argument="--seed-max-dist" value="1000" type="integer" label="Seed max dist" help="Minimum distance between seeds in seed chaining. It should be &lt;= contig interval length in database." />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
108 <param argument="--seed-max-gap" value="1000" type="integer" label="Seed max gap" help="Minimum gap in seed chaining." />
4
feedc23590ad planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents: 3
diff changeset
109 <param argument="--seed-min-prefix" value="17" type="integer" label="Seed min prefix" help="Minimum (prefix/suffix) length of matched seeds (anchors)." />
feedc23590ad planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents: 3
diff changeset
110 <param argument="--seed-min-single-prefix" value="19" type="integer" label="Seed min single prefix" help="Minimum (prefix/suffix) length of matched seeds (anchors) if there's only one pair of seeds matched." />
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
111 </section>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
112 </inputs>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
113 <outputs>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
114 <data name="out_file" format="tabular">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
115 <actions>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
116 <conditional name="advanced_settings.all">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
117 <when value="true">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
118 <action name="column_names" type="metadata" default="Qquery,qlen,hits,sgenome,sseqid,qcovGnm,cls,hsp,qcovHSP,alenHSP,pident,gaps,qstart,qend,sstart,send,sstr,slen,evalue,bitscore,cigar,qseq,sseq,align" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
119 </when>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
120 <when value="false">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
121 <action name="column_names" type="metadata" default="Qquery,qlen,hits,sgenome,sseqid,qcovGnm,cls,hsp,qcovHSP,alenHSP,pident,gaps,qstart,qend,sstart,send,sstr,slen,evalue,bitscore" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
122 </when>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
123 </conditional>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
124 </actions>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
125 </data>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
126 </outputs>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
127 <tests>
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
128 <!-- Test 1 - query one local index with one query -->
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
129 <test expect_num_outputs="1">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
130 <conditional name="db_opts">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
131 <param name="db_opts_selector" value="db"/>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
132 <param name="lexicmap_index" value="LexicMapIndex1" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
133 </conditional>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
134 <param name="query" value="lexicmap_query.fasta.gz" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
135 <section name="advanced_settings">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
136 <param name="load_whole_seeds" value="true" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
137 </section>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
138 <output name="out_file" value="lexicmap_query_result.tsv" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
139 </test>
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
140 <!-- Test 2 - query one local index with multiple query files -->
2
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
141 <test expect_num_outputs="1">
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
142 <conditional name="db_opts">
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
143 <param name="db_opts_selector" value="db"/>
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
144 <param name="lexicmap_index" value="LexicMapIndex1" />
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
145 </conditional>
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
146 <param name="query" value="lexicmap_query.fasta.gz,lexicmap_query2.fasta.gz" />
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
147 <section name="advanced_settings">
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
148 <param name="load_whole_seeds" value="true" />
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
149 </section>
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
150 <output name="out_file" value="lexicmap_query_result2.tsv" />
d1a30eb26392 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents: 0
diff changeset
151 </test>
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
152 <!-- Test 3 - query two local index with one query file -->
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
153 <test expect_num_outputs="1">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
154 <conditional name="db_opts">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
155 <param name="db_opts_selector" value="db"/>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
156 <param name="lexicmap_index" value="LexicMapIndexCombined" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
157 </conditional>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
158 <param name="query" value="lexicmap_query.fasta.gz" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
159 <section name="advanced_settings">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
160 <param name="load_whole_seeds" value="true" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
161 </section>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
162 <output name="out_file" value="lexicmap_query_result.tsv" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
163 </test>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
164 <!-- Test 4 - query two local index with multiple query files -->
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
165 <test expect_num_outputs="1">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
166 <conditional name="db_opts">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
167 <param name="db_opts_selector" value="db"/>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
168 <param name="lexicmap_index" value="LexicMapIndexCombined" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
169 </conditional>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
170 <param name="query" value="lexicmap_query.fasta.gz,lexicmap_query2.fasta.gz,lexicmap_query3.fasta" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
171 <section name="advanced_settings">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
172 <param name="load_whole_seeds" value="true" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
173 </section>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
174 <output name="out_file" value="lexicmap_query_result4.tsv" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
175 </test>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
176 <!-- Test 5 - query one local index with multiple query files, where only one query will get hits -->
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
177 <test expect_num_outputs="1">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
178 <conditional name="db_opts">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
179 <param name="db_opts_selector" value="db"/>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
180 <param name="lexicmap_index" value="LexicMapIndex2" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
181 </conditional>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
182 <param name="query" value="lexicmap_query.fasta.gz,lexicmap_query2.fasta.gz,lexicmap_query3.fasta" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
183 <section name="advanced_settings">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
184 <param name="load_whole_seeds" value="true" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
185 </section>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
186 <output name="out_file" value="lexicmap_query_result3.tsv" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
187 </test>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
188 <!-- Test 6 - query multiple local index with multiple query files -->
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
189 <test expect_num_outputs="1">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
190 <conditional name="db_opts">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
191 <param name="db_opts_selector" value="db"/>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
192 <param name="lexicmap_index" value="LexicMapIndex1,LexicMapIndex2,LexicMapIndexCombined" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
193 </conditional>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
194
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
195 <param name="query" value="lexicmap_query.fasta.gz,lexicmap_query2.fasta.gz,lexicmap_query3.fasta" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
196 <section name="advanced_settings">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
197 <param name="load_whole_seeds" value="true" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
198 </section>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
199 <output name="out_file" value="lexicmap_query_result6.tsv" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
200 </test>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
201 <!-- Test 7 - query one index found in the history with one query -->
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
202 <test expect_num_outputs="1">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
203 <conditional name="db_opts">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
204 <param name="db_opts_selector" value="histdb"/>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
205 <param name="histdb" ftype="lexicmap_index" class="Directory" value="db.lmi" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
206 </conditional>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
207 <param name="top_n_genomes" value="0" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
208 <param name="query" value="lexicmap_query.fasta.gz" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
209 <section name="advanced_settings">
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
210 <param name="load_whole_seeds" value="true" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
211 </section>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
212 <output name="out_file" value="lexicmap_query_result.tsv" />
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
213 </test>
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
214 <!-- Test 8 - query two index found in the history with one query -->
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
215 <test expect_num_outputs="1">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
216 <conditional name="db_opts">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
217 <param name="db_opts_selector" value="histdb"/>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
218 <param name="histdb" ftype="lexicmap_index" class="Directory" value="db.lmi,db2.lmi" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
219 </conditional>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
220 <param name="top_n_genomes" value="0" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
221 <param name="query" value="lexicmap_query.fasta.gz,lexicmap_query3.fasta" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
222 <section name="advanced_settings">
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
223 <param name="load_whole_seeds" value="true" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
224 </section>
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
225 <output name="out_file" value="lexicmap_query_result5.tsv" />
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
226 </test>
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
227 </tests>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
228 <help><![CDATA[
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
229
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
230 Search sequences against an LexicMap index Database. For more information about settings
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
231 please visit: https://bioinf.shenwei.me/LexicMap/usage/search
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
232
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
233 Output format:
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
234 Tab-delimited format with 20+ columns, with 1-based positions.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
235
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
236 1. query, Query sequence ID.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
237 2. qlen, Query sequence length.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
238 3. hits, Number of subject genomes.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
239 4. sgenome, Subject genome ID.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
240 5. sseqid, Subject sequence ID.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
241 6. qcovGnm, Query coverage (percentage) per genome: $(aligned bases in the genome)/$qlen.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
242 7. cls, Nth HSP cluster in the genome. (just for improving readability)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
243 It's useful to show if multiple adjacent HSPs are collinear.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
244 8. hsp, Nth HSP in the genome. (just for improving readability)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
245 9. qcovHSP Query coverage (percentage) per HSP: $(aligned bases in a HSP)/$qlen.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
246 10. alenHSP, Aligned length in the current HSP.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
247 11. pident, Percentage of identical matches in the current HSP.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
248 12. gaps, Gaps in the current HSP.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
249 13. qstart, Start of alignment in query sequence.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
250 14. qend, End of alignment in query sequence.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
251 15. sstart, Start of alignment in subject sequence.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
252 16. send, End of alignment in subject sequence.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
253 17. sstr, Subject strand.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
254 18. slen, Subject sequence length.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
255 19. evalue, Expect value.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
256 20. bitscore, Bit score.
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
257 21. cigar, CIGAR string of the alignment. (optional with --all)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
258 22. qseq, Aligned part of query sequence. (optional with --all)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
259 23. sseq, Aligned part of subject sequence. (optional with --all)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
260 24. align, Alignment text ("|" and " ") between qseq and sseq. (optional with --all)
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
261
3
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
262 When running against multiple indices lexicmap utils merge-search-results will be used to
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
263 merge the search results. For more information please visit:
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
264 https://bioinf.shenwei.me/LexicMap/usage/utils/merge-search-results/
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
265
cefde4c7f92e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents: 2
diff changeset
266 Note: if the query id contains spaces, only the first part (before the first space) will be kept as the query id.
0
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
267 @info@
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
268 ]]></help>
d4134260b442 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff changeset
269 <expand macro="citations" />
4
feedc23590ad planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents: 3
diff changeset
270 </tool>