Mercurial > repos > iuc > lexicmap
annotate lexicmap.xml @ 5:1dc577370a86 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:30 +0000 |
| parents | 0004a511baff |
| children |
| rev | line source |
|---|---|
|
0
2e6641136004
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@"> |
|
2e6641136004
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> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
3 <macros> |
|
2e6641136004
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> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
5 </macros> |
|
2e6641136004
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"/> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
8 |
|
2e6641136004
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
73480ee77517
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" |
|
73480ee77517
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] |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
12 #else: |
|
73480ee77517
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(",") |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
15 |
|
3
73480ee77517
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
1dc577370a86
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
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
18 lexicmap search |
|
73480ee77517
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}" |
|
73480ee77517
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} |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
21 ${all} |
|
2
73accf8f68a9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents:
0
diff
changeset
|
22 |
|
3
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
23 --index '${index}' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
24 |
|
73480ee77517
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 |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
26 '$q' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
27 #end for |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
28 |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
30 |
|
3
73480ee77517
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' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
32 |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
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' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
44 |
|
73480ee77517
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 |
|
73480ee77517
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' |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
48 |
|
3
73480ee77517
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 |
|
73480ee77517
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' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
51 #end if |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
52 && |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
54 |
|
3
73480ee77517
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
1dc577370a86
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents:
4
diff
changeset
|
56 query_ids=""; |
|
1dc577370a86
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 |
|
1dc577370a86
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") |
|
1dc577370a86
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); |
|
1dc577370a86
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents:
4
diff
changeset
|
60 #else |
|
1dc577370a86
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); |
|
1dc577370a86
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents:
4
diff
changeset
|
62 #end if |
|
1dc577370a86
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 45c03ff07e2d5bba1d490a67434347ec17eb30f4
iuc
parents:
4
diff
changeset
|
63 #end for |
|
1dc577370a86
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
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
65 counter=0 && |
|
73480ee77517
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 |
|
73480ee77517
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)); |
|
73480ee77517
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 |
|
73480ee77517
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" |
|
73480ee77517
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 |
|
73480ee77517
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}"; |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
72 done && |
|
73480ee77517
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' |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
74 #else |
|
73480ee77517
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' |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
77 ]]></command> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
78 <inputs> |
|
5
1dc577370a86
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
2e6641136004
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"> |
|
2e6641136004
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
0004a511baff
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> |
|
0004a511baff
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
84 </param> |
|
2e6641136004
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
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
87 </when> |
|
2e6641136004
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
73480ee77517
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
2e6641136004
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"/> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
91 </param> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
92 </when> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
93 </conditional> |
|
2e6641136004
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)" /> |
|
2e6641136004
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"> |
|
2e6641136004
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" /> |
|
2e6641136004
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 <= contig interval length in database." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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'." /> |
|
2e6641136004
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" /> |
|
2e6641136004
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." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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." /> |
|
2e6641136004
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 <= contig interval length in database." /> |
|
2e6641136004
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
0004a511baff
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)." /> |
|
0004a511baff
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
111 </section> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
112 </inputs> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
113 <outputs> |
|
2e6641136004
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"> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
115 <actions> |
|
2e6641136004
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"> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
117 <when value="true"> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
119 </when> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
120 <when value="false"> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
122 </when> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
123 </conditional> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
124 </actions> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
125 </data> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
126 </outputs> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
127 <tests> |
|
3
73480ee77517
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
2e6641136004
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"> |
|
2e6641136004
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"> |
|
2e6641136004
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"/> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
133 </conditional> |
|
2e6641136004
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" /> |
|
2e6641136004
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"> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
137 </section> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
139 </test> |
|
3
73480ee77517
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
73accf8f68a9
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"> |
|
73accf8f68a9
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"> |
|
73accf8f68a9
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"/> |
|
73accf8f68a9
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" /> |
|
73accf8f68a9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents:
0
diff
changeset
|
145 </conditional> |
|
73accf8f68a9
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" /> |
|
73accf8f68a9
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"> |
|
73accf8f68a9
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" /> |
|
73accf8f68a9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents:
0
diff
changeset
|
149 </section> |
|
73accf8f68a9
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" /> |
|
73accf8f68a9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit 27bb723932bd00a1cca05557712c473f0088bbfb
iuc
parents:
0
diff
changeset
|
151 </test> |
|
3
73480ee77517
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 --> |
|
73480ee77517
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"> |
|
73480ee77517
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"> |
|
73480ee77517
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"/> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
157 </conditional> |
|
73480ee77517
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" /> |
|
73480ee77517
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"> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
161 </section> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
163 </test> |
|
73480ee77517
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 --> |
|
73480ee77517
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"> |
|
73480ee77517
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"> |
|
73480ee77517
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"/> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
169 </conditional> |
|
73480ee77517
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" /> |
|
73480ee77517
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"> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
173 </section> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
175 </test> |
|
73480ee77517
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 --> |
|
73480ee77517
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"> |
|
73480ee77517
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"> |
|
73480ee77517
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"/> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
181 </conditional> |
|
73480ee77517
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" /> |
|
73480ee77517
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"> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
185 </section> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
187 </test> |
|
73480ee77517
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 --> |
|
73480ee77517
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"> |
|
73480ee77517
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"> |
|
73480ee77517
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"/> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
193 </conditional> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
194 |
|
73480ee77517
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" /> |
|
73480ee77517
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"> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
198 </section> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
200 </test> |
|
73480ee77517
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
2e6641136004
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"> |
|
2e6641136004
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"> |
|
2e6641136004
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"/> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
206 </conditional> |
|
2e6641136004
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" /> |
|
2e6641136004
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" /> |
|
2e6641136004
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"> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
211 </section> |
|
2e6641136004
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" /> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
213 </test> |
|
3
73480ee77517
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 --> |
|
73480ee77517
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"> |
|
73480ee77517
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"> |
|
73480ee77517
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"/> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
219 </conditional> |
|
73480ee77517
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" /> |
|
73480ee77517
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" /> |
|
73480ee77517
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"> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
224 </section> |
|
73480ee77517
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" /> |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
226 </test> |
|
0
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
227 </tests> |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
228 <help><![CDATA[ |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
229 |
|
2e6641136004
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 |
|
2e6641136004
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 |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
232 |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
233 Output format: |
|
2e6641136004
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. |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
235 |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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) |
|
2e6641136004
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. |
|
2e6641136004
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) |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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. |
|
2e6641136004
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) |
|
2e6641136004
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) |
|
2e6641136004
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) |
|
2e6641136004
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) |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
261 |
|
3
73480ee77517
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 |
|
73480ee77517
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: |
|
73480ee77517
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/ |
|
73480ee77517
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit a9227295a4cebc34b17def7b5ca3e4506222b963
iuc
parents:
2
diff
changeset
|
265 |
|
73480ee77517
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
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
267 @info@ |
|
2e6641136004
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit d966ed462a49d1949345717ae4fdb685c6a1450a
iuc
parents:
diff
changeset
|
268 ]]></help> |
|
2e6641136004
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
0004a511baff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/lexicmap commit eceb4b3a69c5a755feac55801e85eb914a669042
iuc
parents:
3
diff
changeset
|
270 </tool> |
