Mercurial > repos > bgruening > diamond
annotate diamond.xml @ 8:54f751e413f4 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
author | iuc |
---|---|
date | Mon, 22 Mar 2021 13:21:23 +0000 |
parents | 62c9df8382c2 |
children | f921014aba5a |
rev | line source |
---|---|
7
62c9df8382c2
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
bgruening
parents:
6
diff
changeset
|
1 <tool id="bg_diamond" name="Diamond" version="@VERSION@.0" profile="19.01"> |
0 | 2 <description>alignment tool for short sequences against a protein database</description> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
3 <macros> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
4 <import>macros.xml</import> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
5 </macros> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
6 <expand macro="requirements" /> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
7 <expand macro="stdio" /> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
8 <expand macro="version_command" /> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
9 <command detect_errors="aggressive"> |
0 | 10 <![CDATA[ |
11 | |
12 #if $ref_db_source.db_source == "history": | |
13 ln -s $ref_db_source.reference_database ./database.dmnd | |
14 #else: | |
15 ln -s ${ref_db_source.index.fields.db_path} ./database.dmnd | |
16 #end if | |
17 | |
18 && | |
19 | |
20 diamond | |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
21 $method_cond.method_select |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
22 --quiet |
0 | 23 --threads "\${GALAXY_SLOTS:-12}" |
24 --db ./database | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
25 --query '$query' |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
26 #if $method_cond.method_select == "blastx" |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
27 --query-gencode '$method_cond.query_gencode' |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
28 --strand '$method_cond.query_strand' |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
29 --min-orf $method_cond.min_orf |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
30 #if $method_cond.frameshift_cond.frameshift_select == 'yes' |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
31 --frameshift $method_cond.frameshift_cond.frameshift |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
32 $method_cond.frameshift_cond.range_culling |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
33 #end if |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
34 #else if $method_cond.method_select == "blastp" |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
35 $method_cond.no_self_hits |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
36 #end if |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
37 |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
38 @OUTPUT_ARGS@ |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
39 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
40 --compress '0' |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
41 $sens_cond.sensitivity |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
42 |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
43 #if str($gapopen) != "": |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
44 --gapopen '$gapopen' |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
45 #end if |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
46 #if str($gapextend) != "": |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
47 --gapextend '$gapextend' |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
48 #end if |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
49 --matrix '$matrix' |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
50 --comp-based-stats '$method_cond.comp_based_stats' |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
51 --masking '$masking' |
0 | 52 |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
53 @HITFILTER_ARGS@ |
0 | 54 |
55 #if str($filter_score.filter_score_select) == 'evalue': | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
56 --evalue '$filter_score.evalue' |
0 | 57 #else: |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
58 --min-score '$filter_score.min_score' |
0 | 59 #end if |
60 | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
61 --id '$id' |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
62 --query-cover '$query_cover' |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
63 --subject-cover '$subject_cover' |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
64 --block-size '$sens_cond.block_size' |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
65 #if str($unal) == '1': |
7
62c9df8382c2
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
bgruening
parents:
6
diff
changeset
|
66 --unal 1 --un '$unalqueries' |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
67 #end if |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
68 #if $tax_cond.tax_select == 'file': |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
69 --taxonlist `cat '$tax_cond.taxonlistfile' | grep -v "^#" | grep -v "^$" | tr "\n" "," | sed 's/,$//'` |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
70 #else if $tax_cond.tax_select == 'list': |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
71 --taxonlist '$tax_cond.taxonlist' |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
72 #end if |
0 | 73 ]]> |
74 </command> | |
75 <inputs> | |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
76 <conditional name="method_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
77 <param name="method_select" type="select" label="What do you want to align?" help="(blastp/blastx)"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
78 <option value="blastp">Align amino acid query sequences (blastp)</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
79 <option value="blastx">Align DNA query sequences (blastx)</option> |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
80 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
81 <when value="blastx"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
82 <param name="query_gencode" argument="--query-gencode" type="select" label="Genetic code used for translation of query in BLASTX mode" help=""> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
83 <option value="1">The Standard Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
84 <option value="2">The Vertebrate Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
85 <option value="3">The Yeast Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
86 <option value="4">The Mold, Protozoan, and Coelenterate Mitochondrial Code and the Mycoplasma/Spiroplasma Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
87 <option value="5">The Invertebrate Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
88 <option value="6">The Ciliate, Dasycladacean and Hexamita Nuclear Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
89 <option value="9">The Echinoderm and Flatworm Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
90 <option value="10">The Euplotid Nuclear Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
91 <option value="11">The Bacterial, Archaeal and Plant Plastid Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
92 <option value="12">The Alternative Yeast Nuclear Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
93 <option value="13">The Ascidian Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
94 <option value="14">The Alternative Flatworm Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
95 <option value="16">Chlorophycean Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
96 <option value="21">Trematode Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
97 <option value="22">Scenedesmus obliquus Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
98 <option value="23">Thraustochytrium Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
99 <option value="24">Pterobranchia Mitochondrial Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
100 <option value="25">Candidate Division SR1 and Gracilibacteria Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
101 <option value="26">Pachysolen tannophilus Nuclear Code</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
102 </param> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
103 <param argument="--min-orf" name="min_orf" type="integer" value="1" label="ignore translated sequences without an open reading frame of at least this length" help="By default this feature is disabled for sequences of length below 30, set to 20 for sequences of length below 100, and set to 40 otherwise. Setting this option to 1 will disable this feature" /> |
7
62c9df8382c2
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
bgruening
parents:
6
diff
changeset
|
104 |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
105 <param name="query_strand" argument="--strand" type="select" label="query strands to search" help=""> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
106 <option value="both" selected="True">Both</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
107 <option value="plus">Plus</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
108 <option value="minus">Minus</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
109 </param> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
110 <conditional name="frameshift_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
111 <param name="frameshift_select" type="select" label="Allow for frameshifts?" help=""> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
112 <option value="yes">yes</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
113 <option value="no" selected="true">no</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
114 </param> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
115 <when value="yes"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
116 <param argument="--range-culling" name="range_culling" type="boolean" truevalue="--range-culling" falsevalue="" checked="false" label="restrict hit culling to overlapping query ranges" help="This feature is designed for long query DNA sequences that may span several genes. In these cases, the default of reporting the 25 best overall hits could cause hits to a lower scoring gene to be overshadowed. But just increasing the number of alignments reported will bloat the output size and reduce performance. Using this feature along with -k 25 (default), a hit will only be deleted if at least 50% of its query range is spanned by at least 25 higher or equal scoring hits. Using this feature along with --top 10, a hit will only be deleted if its score is more than 10% lower than that of a higher scoring hit over at least 50% of its query range. The percentage is configurable using --range-cover. Note that this feature is currently only available in frameshift alignment mode"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
117 <param argument="--frameshift" type="integer" value="0" label="frame shift penalty" help="Values around 15 are reasonable for this parameter. Enabling this feature will have the aligner tolerate missing bases in DNA sequences and is most recommended for long, error-prone sequences like MinION reads. In the pairwise output format, frameshifts will be indicated by \ and / for a shift by +1 and -1 nucleotide in the direction of translation respectively." /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
118 </when> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
119 <when value="no"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
120 </conditional> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
121 |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
122 <param name="comp_based_stats" argument="--comp-based-stats" type="select" label="Composition based statistics" help="Compositionally biased sequences often cause false positive matches, which are effectively filtered by this algorithm in a way similar to the composition based statistics used by BLAST"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
123 <option value="0">Disable</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
124 <option value="1" selected="True">Default mode (Hauser, 2016)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
125 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
126 </when> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
127 <when value="blastp"> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
128 <param name="no_self_hits" argument="--no-self-hits" type="boolean" truevalue="--no-self-hits" falsevalue="" checked="true" label="suppress reporting of identical self hits?" help=""/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
129 |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
130 <param name="comp_based_stats" argument="--comp-based-stats" type="select" label="Composition based statistics" help="Compositionally biased sequences often cause false positive matches, which are effectively filtered by this algorithm in a way similar to the composition based statistics used by BLAST"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
131 <option value="0">Disable</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
132 <option value="1" selected="True">Default mode (Hauser, 2016)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
133 <option value="2">Compositional matrix adjust conditioned on sequence properties, simplified (Yu, 2005)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
134 <option value="3">Compositional matrix adjust conditioned on sequence properties (Yu, 2005)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
135 <option value="4">Compositional matrix adjust unconditionally (Yu, 2005)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
136 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
137 </when> |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
138 </conditional> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
139 <param argument="--query" type="data" format="fasta,fastq" label="Input query file in FASTA or FASTQ format" /> |
0 | 140 <conditional name="ref_db_source"> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
141 <param name="db_source" type="select" label="Will you select a reference database from your history or use a built-in index?" help="Built-ins were indexed using default options"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
142 <option value="indexed">Use a built-in index</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
143 <option value="history">Use one from the history</option> |
0 | 144 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
145 <when value="indexed"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
146 <param name="index" type="select" label="Select a reference database" help="If your database of interest is not listed, contact your Galaxy admin"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
147 <options from_data_table="diamond_database"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
148 <filter type="sort_by" column="2"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
149 <validator type="no_options" message="No indexes are available for the selected input dataset"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
150 </options> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
151 </param> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
152 </when> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
153 <when value="history"> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
154 <param name="reference_database" argument="--db" type="data" format="dmnd" label="Select the reference database" /> |
0 | 155 </when> |
156 </conditional> | |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
157 <expand macro="output_type_macro"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
158 <!-- Taxonomy features are not supported for the DAA format (i.e. |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
159 can't be used in diamond view) --> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
160 <option value="staxids">unique Subject Taxonomy ID(s), separated by a ';' (in numerical order)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
161 <option value="sskingdoms">Subject super kingdoms</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
162 <option value="skingdoms">Subject kingdoms</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
163 <option value="sphylums">Subject phylums</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
164 </expand> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
165 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
166 <param name='sensitivity' type="select" label="Sensitivity Mode" help="Choose one of the sensitivity modes. The default mode is mainly designed for short read alignment, i.e. finding significant matches of >50 bits on 30-40aa fragments. The sensitive mode is a lot more sensitive than the default and generally recommended for aligning longer sequences. The more sensitive mode provides even more sensitivity. More sensitivity may increase computation time."> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
167 <option value="" selected="True">Default</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
168 <option value="--mid-sensitive">Mid Sensitive (--mid-sensitive)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
169 <option value="--sensitive">Sensitive (--sensitive)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
170 <option value="--more-sensitive">More Sensitive (--more-sensitive)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
171 <option value="--very-sensitive">Very Sensitive (--very-sensitive)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
172 <option value="--ultra-sensitive">Ultra Sensitive (--ultra-sensitive)</option> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
173 </param> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
174 <when value=""> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
175 <expand macro="block_size_low_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
176 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
177 <when value="--mid-sensitive"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
178 <expand macro="block_size_low_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
179 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
180 <when value="--sensitive"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
181 <expand macro="block_size_low_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
182 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
183 <when value="--more-sensitive"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
184 <expand macro="block_size_low_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
185 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
186 <when value="--very-sensitive"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
187 <expand macro="block_size_hi_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
188 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
189 <when value="--ultra-sensitive"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
190 <expand macro="block_size_hi_sens"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
191 </when> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
192 </conditional> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
193 <param argument="--matrix" type="select" label="Scoring matrix" help="In parentheses are the supported values for (gap open)/(gap extend). In brackets are default gap penalties"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
194 <option value="BLOSUM45">BLOSUM45 ((10-13)/3; (12-16)/2; (16-19)/1) [14/2]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
195 <option value="BLOSUM50">BLOSUM50 ((9-13)/3; (12-16)/2; (15-19)/1) [13/2]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
196 <option value="BLOSUM62" selected="True">BLOSUM62 ((6-11)/2; (9-13)/1) [11/1]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
197 <option value="BLOSUM80">BLOSUM80 ((6-9)/2; 13/2; 25/2; (9-11)/1) [10/1]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
198 <option value="BLOSUM90">BLOSUM90 ((6-9)/2; (9-11)/1) [10/1]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
199 <option value="PAM250">PAM250 ((11-15)/3; (13-17)/2; (17-21)/1) [14/2]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
200 <option value="PAM70">PAM70 ((6-8)/2; (9-11)/1) [10/1]</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
201 <option value="PAM30">PAM30 ((5-7)/2; (8-10)/1) [9/1]</option> |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
202 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
203 <param argument="--gapopen" type="integer" optional="True" value="" label="Gap open penalty" help="leave empty for default (see scoring matrix)" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
204 <param argument="--gapextend" type="integer" optional="True" value="" label="Gap extension penalty" help="leave empty for default (see scoring matrix)" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
205 <param argument="--masking" type="boolean" truevalue="1" falsevalue="0" checked="true" label="enable masking of low complexity regions?" help="Masked residues appear in the output as X"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
206 <conditional name="tax_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
207 <param name="tax_select" type="select" label="Restrict search taxonomically?" help="Any taxonomic rank can be used, and only reference sequences matching one of the specified taxon ids will be searched against"> |
7
62c9df8382c2
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
bgruening
parents:
6
diff
changeset
|
208 <option value="no" selected="True">No</option> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
209 <option value="list">list of taxids entered manually</option> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
210 <option value="file">list of taxids from single column tabular file</option> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
211 </param> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
212 <when value="no"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
213 <when value="list"> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
214 <param name="taxonlist" argument="--taxonlist" type="text" value="" label="comma separated list of taxon ids" help=""> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
215 <validator type="regex" message="taxonlist needs to be a comma separated list of integers">[0-9,]*</validator> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
216 <validator type="expression" message="taxon ids 0 and 1 are not allowed">not ("0" in value.split(",") or "1" in value.split(","))</validator> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
217 </param> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
218 </when> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
219 <when value="file"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
220 <param name="taxonlistfile" argument="--taxonlist" type="data" format="tabular" label="Keep alignments within the given percentage range of the top alignment score for a quer" help="" /> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
221 </when> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
222 </conditional> |
0 | 223 <conditional name="filter_score"> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
224 <param name="filter_score_select" type="select" label="Method to filter?" help="(--evalue/--min-score)"> |
7
62c9df8382c2
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
bgruening
parents:
6
diff
changeset
|
225 <option value="evalue" selected="True">Maximum e-value to report alignments</option> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
226 <option value="min-score">Minimum bit score to report alignments</option> |
0 | 227 </param> |
228 <when value="evalue"> | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
229 <param argument="--evalue" type="float" value="0.001" label="Maximum expected value to keep an alignment" /> |
0 | 230 </when> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
231 <when value="min-score"> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
232 <param name="min_score" argument="--min-score" type="integer" value="0" label="Minimum bit score to keep an alignment" help="(--min-score)" /> |
0 | 233 </when> |
234 </conditional> | |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
235 <expand macro="hit_filter_macro" /> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
236 <param argument="--id" type="integer" value="0" label="Minimum identity percentage to report an alignment" help="" /> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
237 <param name="query_cover" argument="--query-cover" type="integer" value="0" label="Minimum query cover percentage to report an alignment" help="" /> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
238 <param name="subject_cover" argument="--subject-cover" type="integer" value="0" label="Minimum subject cover percentage to report an alignment" help="" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
239 <param argument="--unal" type="boolean" truevalue="1" falsevalue="0" checked="false" label="report unaligned queries" help=""/> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
240 </inputs> |
0 | 241 <outputs> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
242 <expand macro="output_macro" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
243 <data format="fasta" name="unalqueries" label="${tool.name} on ${on_string} (unaligned queries)"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
244 <filter>unal == "1"</filter> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
245 </data> |
0 | 246 </outputs> |
247 <tests> | |
248 <test> | |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
249 <conditional name="method_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
250 <param name="method_select" value="blastp" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
251 </conditional> |
0 | 252 <param name="query" value="protein.fasta" ftype="fasta"/> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
253 <conditional name="ref_db_source"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
254 <param name="db_source" value="history"/> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
255 <param name="reference_database" value="db-wtax.dmnd"/> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
256 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
257 <conditional name="output"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
258 <param name="outfmt" value="6"/> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
259 <param name="fields" value="qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore,cigar,scovhsp,sskingdoms,skingdoms,sphylums"/> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
260 </conditional> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
261 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
262 <param name="sensitivity" value=""/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
263 </conditional> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
264 <param name="matrix" value="BLOSUM62"/> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
265 <param name="comp-based-stat" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
266 <param name="masking" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
267 <conditional name="hit_filter"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
268 <param name="hit_filter_select" value="max"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
269 <param name="max_target_seqs" value="25" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
270 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
271 <conditional name="filter_score"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
272 <param name="filter_score_select" value="evalue"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
273 <param name="evalue" value="0.001" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
274 </conditional> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
275 <param name="id" value="0"/> |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
276 <param name="query_cover" value="0"/> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
277 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
278 <param name="block_size" value="2"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
279 </conditional> |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
280 <output name="blast_tabular" file="diamond_results.tabular"/> |
0 | 281 </test> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
282 <test> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
283 <conditional name="method_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
284 <param name="method_select" value="blastp" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
285 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
286 <param name="query" value="protein.fasta" ftype="fasta"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
287 <conditional name="ref_db_source"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
288 <param name="db_source" value="history"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
289 <param name="reference_database" value="db-wtax.dmnd"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
290 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
291 <conditional name="tax_cond"> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
292 <param name="tax_select" value="list"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
293 <param name="taxonlist" value="2" /> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
294 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
295 <conditional name="output"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
296 <param name="outfmt" value="6"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
297 <param name="fields" value="qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
298 </conditional> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
299 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
300 <param name="sensitivity" value=""/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
301 </conditional> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
302 <param name="matrix" value="BLOSUM62"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
303 <param name="comp-based-stat" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
304 <param name="masking" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
305 <conditional name="hit_filter"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
306 <param name="hit_filter_select" value="max"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
307 <param name="max_target_seqs" value="25" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
308 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
309 <conditional name="filter_score"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
310 <param name="filter_score_select" value="evalue"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
311 <param name="evalue" value="0.001" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
312 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
313 <param name="id" value="0"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
314 <param name="query_cover" value="0"/> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
315 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
316 <param name="block_size" value="2"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
317 </conditional> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
318 <output name="blast_tabular" file="diamond_results.wtax.tabular"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
319 </test> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
320 <test> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
321 <conditional name="method_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
322 <param name="method_select" value="blastx" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
323 <conditional name="frameshift_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
324 <param name="frameshift_select" value="yes"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
325 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
326 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
327 <param name="query" value="nucleotide.fasta" ftype="fasta"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
328 <conditional name="ref_db_source"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
329 <param name="db_source" value="history"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
330 <param name="reference_database" value="db.dmnd"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
331 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
332 <conditional name="output"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
333 <param name="outfmt" value="0"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
334 </conditional> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
335 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
336 <param name="sensitivity" value=""/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
337 </conditional> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
338 <param name="matrix" value="BLOSUM62"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
339 <param name="comp-based-stat" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
340 <param name="masking" value="1"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
341 <conditional name="hit_filter"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
342 <param name="hit_filter_select" value="top"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
343 <param name="top" value="10" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
344 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
345 <conditional name="filter_score"> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
346 <param name="filter_score_select" value="min-score"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
347 <param name="min_score" value="1" /> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
348 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
349 <param name="id" value="0"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
350 <param name="query_cover" value="0"/> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
351 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
352 <param name="block_size" value="2"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
353 </conditional> |
6
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
354 <output name="blast_tabular" file="diamond_results.pairwise"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
355 </test> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
356 <test> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
357 <conditional name="method_cond"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
358 <param name="method_select" value="blastp" /> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
359 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
360 <param name="query" value="protein.fasta" ftype="fasta"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
361 <conditional name="ref_db_source"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
362 <param name="db_source" value="history"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
363 <param name="reference_database" value="db-wtax.dmnd"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
364 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
365 <conditional name="output"> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
366 <param name="outfmt" value="100"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
367 </conditional> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
368 <output name="daa_output" file="diamond_results.daa" compare="sim_size" delta="10"/> |
64be1ac21109
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 2f6d48e1d2161d03411d9fbb4fc3d16f0fa3d2e1
bgruening
parents:
3
diff
changeset
|
369 </test> |
8
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
370 <test> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
371 <conditional name="method_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
372 <param name="method_select" value="blastx" /> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
373 <conditional name="frameshift_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
374 <param name="frameshift_select" value="yes"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
375 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
376 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
377 <param name="query" value="nucleotide.fasta" ftype="fasta"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
378 <conditional name="ref_db_source"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
379 <param name="db_source" value="indexed"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
380 <param name="index" value="testDb"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
381 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
382 <conditional name="output"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
383 <param name="outfmt" value="0"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
384 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
385 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
386 <param name="sensitivity" value=""/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
387 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
388 <param name="matrix" value="BLOSUM62"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
389 <param name="comp-based-stat" value="1"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
390 <param name="masking" value="1"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
391 <conditional name="hit_filter"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
392 <param name="hit_filter_select" value="top"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
393 <param name="top" value="10" /> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
394 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
395 <conditional name="filter_score"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
396 <param name="filter_score_select" value="min-score"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
397 <param name="min_score" value="1" /> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
398 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
399 <param name="id" value="0"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
400 <param name="query_cover" value="0"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
401 <conditional name="sens_cond"> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
402 <param name="block_size" value="2"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
403 </conditional> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
404 <output name="blast_tabular" file="diamond_results.pairwise"/> |
54f751e413f4
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond commit 75abf7d4b23ed7ae8abce80609d81b20bc882863"
iuc
parents:
7
diff
changeset
|
405 </test> |
0 | 406 </tests> |
407 <help> | |
408 <![CDATA[ | |
409 | |
410 **What it does** | |
411 | |
412 DIAMOND_ is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR. | |
413 On Illumina reads of length 100-150bp, in fast mode, DIAMOND is about 20,000 times faster than BLASTX, while reporting | |
414 about 80-90% of all matches that BLASTX finds, with an e-value of at most 1e-5. In sensitive mode, DIAMOND ist about 2,500 | |
415 times faster than BLASTX, finding more than 94% of all matches. | |
416 | |
3
830516f9521b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents:
1
diff
changeset
|
417 The DIAMOND algorithm is designed for the alignment of large datasets. The algorithm is not efficient for a small number of query sequences or only a single one of them, and speed will be low. BLAST is recommended for small datasets. |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
418 |
0 | 419 .. _DIAMOND: http://ab.inf.uni-tuebingen.de/software/diamond/ |
420 | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
421 **Input** |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
422 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
423 Input data is a large protein or nucleotide sequence file. |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
424 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
425 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
426 **Output** |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
427 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
428 Diamond gives you a tabular output file with 12 columns: |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
429 |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
430 Column Description |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
431 1 Query Seq-id (ID of your sequence) |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
432 2 Subject Seq-id (ID of the database hit) |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
433 3 Percentage of identical matches |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
434 4 Alignment length |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
435 5 Number of mismatches |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
436 6 Number of gap openings |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
437 7 Start of alignment in query |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
438 8 End of alignment in query |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
439 9 Start of alignment in subject (database hit) |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
440 10 End of alignment in subject (database hit) |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
441 11 Expectation value (E-value) |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
442 12 Bit score |
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
443 |
0 | 444 |
445 Supported values for gap open and gap extend parameters depending on the selected scoring matrix. | |
446 | |
447 ======== ============================================ | |
448 Matrix Supported values for (gap open)/(gap extend) | |
449 ======== ============================================ | |
450 BLOSUM45 (10-13)/3; (12-16)/2; (16-19)/1 | |
451 BLOSUM50 (9-13)/3; (12-16)/2; (15-19)/1 | |
452 BLOSUM62 (6-11)/2; (9-13)/1 | |
453 BLOSUM80 (6-9)/2; 13/2; 25/2; (9-11)/1 | |
454 BLOSUM90 (6-9)/2; (9-11)/1 | |
455 PAM250 (11-15)/3; (13-17)/2; (17-21)/1 | |
456 PAM70 (6-8)/2; (9-11)/1 | |
457 PAM30 (5-7)/2; (8-10)/1 | |
458 ======== ============================================ | |
459 | |
460 | |
461 ]]> | |
462 </help> | |
1
df7738595640
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents:
0
diff
changeset
|
463 <expand macro="citations" /> |
0 | 464 </tool> |