annotate diamond.xml @ 3:830516f9521b draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
author bgruening
date Wed, 26 Jul 2017 10:30:52 -0400
parents df7738595640
children 64be1ac21109
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
1 <tool id="bg_diamond" name="Diamond" version="@VERSION@.1">
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
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" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
9 <command>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
10 <![CDATA[
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
11
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
12 #if $ref_db_source.db_source == "history":
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
13 ln -s $ref_db_source.reference_database ./database.dmnd
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
14 #else:
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
15 ln -s ${ref_db_source.index.fields.db_path} ./database.dmnd
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
16 #end if
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
17
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
18 &&
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
19
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
20 diamond
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
21 $method_select.method_select
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
22 --threads "\${GALAXY_SLOTS:-12}"
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
23 --db ./database
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
24 --query '$query'
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
25 #if $method_select.method_select == "blastx"
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
26 --query-gencode '$query_gencode'
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
27 #end if
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
28
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
29 #if $output.outfmt == "5"
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
30 --outfmt '5'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
31 --out '$blast_xml'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
32 $output.salltitles
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
33 #else if $output.outfmt == "6"
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
34 --outfmt '6' #echo ' '.join(str($output.fields).split(','))
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
35 --out '$blast_tabular'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
36 #else if $output.outfmt == "101"
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
37 --outfmt '101'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
38 --out '$sam_output'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
39 $output.salltitles
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
40 #end if
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
41
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
42 --compress '0'
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
43 #if $sensitivity == "1"
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
44 --sensitive
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
45 #else if $sensitivity == "2"
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
46 --more-sensitive
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
47 #end if
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
48
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
49 --gapopen '$gapopen'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
50 --gapextend '$gapextend'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
51 --matrix '$matrix'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
52 --seg '$seg'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
53
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
54 #if str($hit_filter.hit_filter_select) == 'max':
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
55 --max-target-seqs '$hit_filter.max_target_seqs'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
56 #else:
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
57 --top '$hit_filter.top'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
58 #end if
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
59
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
60 #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
61 --evalue '$filter_score.evalue'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
62 #else:
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
63 --min-score '$filter_score.min_score'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
64 #end if
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
65
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
66 --id '$id'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
67 --query-cover '$query_cover'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
68 --block-size '$block_size'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
69 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
70 </command>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
71
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
72 <inputs>
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
73 <conditional name="method_select">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
74 <param name="method_select" type="select" label="What do you want to align?" help="(--blastp/--blastx)">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
75 <option value="blastp">Align amino acid query sequences (blastp)</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
76 <option value="blastx">Align DNA query sequences (blastx)</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
77 </param>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
78 <when value="blastx">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
79 <param name="query_gencode" argument="--query-gencode" type="select" label="Genetic code used for translation of query in BLASTX mode" help="">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
80 <option value="1">The Standard Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
81 <option value="2">The Vertebrate Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
82 <option value="3">The Yeast Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
83 <option value="4">The Mold, Protozoan, and Coelenterate Mitochondrial Code and the Mycoplasma/Spiroplasma Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
84 <option value="5">The Invertebrate Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
85 <option value="6">The Ciliate, Dasycladacean and Hexamita Nuclear Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
86 <option value="9">The Echinoderm and Flatworm Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
87 <option value="10">The Euplotid Nuclear Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
88 <option value="11">The Bacterial, Archaeal and Plant Plastid Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
89 <option value="12">The Alternative Yeast Nuclear Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
90 <option value="13">The Ascidian Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
91 <option value="14">The Alternative Flatworm Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
92 <option value="16">Chlorophycean Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
93 <option value="21">Trematode Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
94 <option value="22">Scenedesmus obliquus Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
95 <option value="23">Thraustochytrium Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
96 <option value="24">Pterobranchia Mitochondrial Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
97 <option value="5">Candidate Division SR1 and Gracilibacteria Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
98 <option value="26">Pachysolen tannophilus Nuclear Code</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
99 </param>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
100 </when>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
101 <when value="blastp">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
102 </when>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
103 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
104 <param argument="--query" type="data" format="fasta,fastq" label="Input query file in FASTA or FASTQ format" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
105 <conditional name="ref_db_source">
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
106 <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">
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
107 <option value="indexed">Use a built-in index</option>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
108 <option value="history">Use one from the history</option>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
109 </param>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
110 <when value="indexed">
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
111 <param name="index" type="select" label="Select a reference database" help="If your database of interest is not listed, contact your Galaxy admin">
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
112 <options from_data_table="diamond_database">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
113 <filter type="sort_by" column="2"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
114 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
115 </options>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
116 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
117 </when>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
118 <when value="history">
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
119 <param name="reference_database" type="data" format="dmnd" label="Select the reference database" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
120 </when>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
121 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
122 <conditional name="output">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
123 <param argument="--outfmt" type="select" label="Format of output file " help="">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
124 <option value="5">BLAST XML</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
125 <option value="6">BLAST tabular</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
126 <option value="101">SAM</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
127 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
128 <when value="5">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
129 <param argument="--salltitles" type="boolean" truevalue="--salltitles" falsevalue="" checked="true" label="Include full length subject titles in output?" help=""/>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
130 </when>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
131 <when value="6">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
132 <param name="fields" type="select" label="Tabular fields" help="" multiple="true">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
133 <option value="qseqid" selected="true">Query Seq - id</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
134 <option value="sseqid" selected="true">Subject Seq - id</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
135 <option value="sallseqid">All subject Seq - id(s)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
136 <option value="qlen">Query sequence length</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
137 <option value="slen">Subject sequence length</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
138 <option value="pident" selected="true">Percentage of identical matches</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
139 <option value="length" selected="true">Alignment length</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
140 <option value="nident">Number of identical matches</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
141 <option value="mismatch" selected="true">Number of mismatches</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
142 <option value="positive">Number of positive - scoring matches</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
143 <option value="gapopen" selected="true">Number of gap openings</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
144 <option value="gaps">Total number of gaps</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
145 <option value="ppos">Percentage of positive - scoring matches</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
146 <option value="qstart" selected="true">Start of alignment in query</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
147 <option value="qend" selected="true">End of alignment in query</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
148 <option value="sstart" selected="true">Start of alignment in subject</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
149 <option value="send" selected="true">End of alignment in subject</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
150 <option value="qseq">Aligned part of query sequence</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
151 <option value="sseq">Aligned part of subject sequence</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
152 <option value="evalue" selected="true">Expect value</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
153 <option value="bitscore" selected="true">Bit score</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
154 <option value="score">Raw score</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
155 <option value="qframe">Query frame</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
156 <option value="stitle">Subject Title</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
157 <option value="salltitles">All Subject Title(s)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
158 <option value="qcovhsp">Query Coverage Per HSP</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
159 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
160 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
161 <when value="101">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
162 <param argument="--salltitles" type="boolean" truevalue="--salltitles" falsevalue="" checked="true" label="Include full length subject titles in output?" help=""/>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
163 </when>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
164 </conditional>
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
165 <param name='sensitivity' type="select" label="Sensitivity Mode" help="Choose one of the sensitivity modes. More sensitivity may increase computation time">
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
166 <option value="0" selected="True">Default</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
167 <option value="1">Sensitive</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
168 <option value="2">More Sensitive</option>
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
169 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
170 <param argument="--gapopen" type="integer" value="11" label="Gap open penalty" help="" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
171 <param argument="--gapextend" type="integer" value="1" label="Gap extension penalty" help="" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
172 <param argument="--matrix" type="select" label="Scoring matrix" help="In brackets are the supported values for (gap open)/(gap extend)">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
173 <option value="BLOSUM45">BLOSUM45 ((10-13)/3; (12-16)/2; (16-19)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
174 <option value="BLOSUM50">BLOSUM50 ((9-13)/3; (12-16)/2; (15-19)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
175 <option value="BLOSUM62" selected="True">BLOSUM62 ((6-11)/2; (9-13)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
176 <option value="BLOSUM80">BLOSUM80 ((6-9)/2; 13/2; 25/2; (9-11)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
177 <option value="BLOSUM90">BLOSUM90 ((6-9)/2; (9-11)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
178 <option value="PAM250">PAM250 ((11-15)/3; (13-17)/2; (17-21)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
179 <option value="PAM70">PAM70 ((6-8)/2; (9-11)/1)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
180 <option value="PAM30">PAM30 ((5-7)/2; (8-10)/1)</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
181 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
182 <param argument="--seg" type="boolean" truevalue="yes" falsevalue="no" checked="true" label="Enable SEG masking of low complexity segments in the query?" help=""/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
183 <conditional name="hit_filter">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
184 <param name="hit_filter_select" type="select" label="Method to restrict the number of hits?">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
185 <option value="max">Maximum number of target sequences</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
186 <option value="top">Percentage of top alignment score</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
187 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
188 <when value="max">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
189 <param name="max_target_seqs" argument="--max-target-seqs" type="integer" value="25" label="The maximum number of target sequences per query to keep alignments for" help="" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
190 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
191 <when value="top">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
192 <param argument="--top" type="integer" value="0" label="Keep alignments within the given percentage range of the top alignment score for a quer" help="" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
193 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
194 </conditional>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
195 <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
196 <param name="filter_score_select" type="select" label="Method to filter?" help="(--evalue/--min-score)">
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
197 <option value="evalue">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
198 <option value="min-score">Minimum bit score to report alignments</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
199 </param>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
200 <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
201 <param argument="--evalue" type="float" value="0.001" label="Maximum expected value to keep an alignment" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
202 </when>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
203 <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
204 <param name="min_score" argument="--min-score" type="integer" value="0" label="Minimum bit score to keep an alignment" help="(--min-score)" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
205 </when>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
206 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
207 <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
208 <param name="query_cover" argument="--query-cover" type="integer" value="0" label="Minimum query cover 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
209 <param name="block_size" argument="--block-size" type="float" value="2" label="Block size in billions of sequence letters to be processed at a time" help="" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
210 </inputs>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
211
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
212 <outputs>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
213 <data format="xml" name="blast_xml" label="${tool.name} on ${on_string}">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
214 <filter>output["outfmt"] == "5"</filter>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
215 </data>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
216 <data format="tabular" name="blast_tabular" label="${tool.name} on ${on_string}">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
217 <filter>output["outfmt"] == "6"</filter>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
218 </data>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
219 <data format="sam" name="sam_output" label="${tool.name} on ${on_string}">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
220 <filter>output["outfmt"] == "101"</filter>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
221 </data>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
222 </outputs>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
223
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
224 <tests>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
225 <test>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
226 <param name="method_select" value="blastp" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
227 <param name="query" value="protein.fasta" ftype="fasta"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
228 <param name="db_source" value="history"/>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
229 <param name="reference_database" value="db.dmnd"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
230 <param name="outfmt" value="6"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
231 <param name="fields" value="qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore"/>
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
232 <param name="sensitivity" value="0"/>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
233 <param name="gapopen" value="11"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
234 <param name="gapextend" value="1"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
235 <param name="matrix" value="BLOSUM62"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
236 <param name="seg" value="yes"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
237 <param name="hit_filter_select" value="max"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
238 <param name="max_target_seqs" value="25" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
239 <param name="filter_score_select" value="evalue"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
240 <param name="evalue" value="0.001" />
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
241 <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
242 <param name="query_cover" value="0"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
243 <param name="block_size" value="2"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
244 <output name="blast_tabular" file="diamond_results.tabular"/>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
245 </test>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
246 </tests>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
247
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
248 <help>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
249 <![CDATA[
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
250
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
251 **What it does**
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
252
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
253 DIAMOND_ is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
254 On Illumina reads of length 100-150bp, in fast mode, DIAMOND is about 20,000 times faster than BLASTX, while reporting
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
255 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
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
256 times faster than BLASTX, finding more than 94% of all matches.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
257
3
830516f9521b planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit 0a893f1ee7f73d24004a43ec1ba6a4cc03fbfab0
bgruening
parents: 1
diff changeset
258 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
259
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
260 .. _DIAMOND: http://ab.inf.uni-tuebingen.de/software/diamond/
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
261
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
262 **Input**
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
263
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
264 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
265
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
266
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
267 **Output**
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
268
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
269 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
270
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
271 Column Description
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
272 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
273 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
274 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
275 4 Alignment length
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
276 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
277 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
278 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
279 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
280 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
281 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
282 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
283 12 Bit score
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
284
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
285
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
286 Supported values for gap open and gap extend parameters depending on the selected scoring matrix.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
287
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
288 ======== ============================================
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
289 Matrix Supported values for (gap open)/(gap extend)
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
290 ======== ============================================
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
291 BLOSUM45 (10-13)/3; (12-16)/2; (16-19)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
292 BLOSUM50 (9-13)/3; (12-16)/2; (15-19)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
293 BLOSUM62 (6-11)/2; (9-13)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
294 BLOSUM80 (6-9)/2; 13/2; 25/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
295 BLOSUM90 (6-9)/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
296 PAM250 (11-15)/3; (13-17)/2; (17-21)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
297 PAM70 (6-8)/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
298 PAM30 (5-7)/2; (8-10)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
299 ======== ============================================
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
300
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
301
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
302 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
303 </help>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
304 <expand macro="citations" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
305 </tool>