annotate diamond.xml @ 1:df7738595640 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
author bgruening
date Mon, 06 Feb 2017 07:08:25 -0500
parents 98037ef3d2a9
children 830516f9521b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
1 <tool id="bg_diamond" name="Diamond" version="@VERSION@">
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
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
21 $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'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
25 --query-gencode '$query_gencode'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
26
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
27 #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
28 --outfmt '5'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
29 --out '$blast_xml'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
30 $output.salltitles
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
31 #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
32 --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
33 --out '$blast_tabular'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
34 #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
35 --outfmt '101'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
36 --out '$sam_output'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
37 $output.salltitles
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
38 #end if
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'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
41 $sensitive
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
42 $more_sensitive
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
43 --gapopen '$gapopen'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
44 --gapextend '$gapextend'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
45 --matrix '$matrix'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
46 --seg '$seg'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
47
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
48 #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
49 --max-target-seqs '$hit_filter.max_target_seqs'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
50 #else:
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
51 --top '$hit_filter.top'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
52 #end if
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
53
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
54 #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
55 --evalue '$filter_score.evalue'
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 --min-score '$filter_score.min_score'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
58 #end if
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
59
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
60 --id '$id'
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
61 --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
62 --block-size '$block_size'
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
63 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
64 </command>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
65
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
66 <inputs>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
67 <param name="method_select" type="select" label="What do you want to align?" help="(--blastp/--blastx)">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
68 <option value="blastp">Align amino acid query sequences (blastp)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
69 <option value="blastx">Align DNA query sequences (blastx)</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
70 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
71 <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
72 <conditional name="ref_db_source">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
73 <param name="db_source" type="select" label="Will you select a reference genome from your history or use a built-in index?" help="Built-ins were indexed using default options">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
74 <option value="indexed">Use a built-in index</option>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
75 <option value="history">Use one from the history</option>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
76 </param>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
77 <when value="indexed">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
78 <param name="index" type="select" label="Select a reference genome" help="If your genome of interest is not listed, contact your Galaxy admin">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
79 <options from_data_table="diamond_database">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
80 <filter type="sort_by" column="2"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
81 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
82 </options>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
83 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
84 </when>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
85 <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
86 <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
87 </when>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
88 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
89 <param name="query_gencode" argument="--query-gencode" type="select" label="Genetic code used for translation of query in BLASTX mode" help="">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
90 <option value="1">The Standard Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
91 <option value="2">The Vertebrate Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
92 <option value="3">The Yeast Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
93 <option value="4">The Mold, Protozoan, and Coelenterate Mitochondrial Code and the Mycoplasma/Spiroplasma Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
94 <option value="5">The Invertebrate Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
95 <option value="6">The Ciliate, Dasycladacean and Hexamita Nuclear Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
96 <option value="9">The Echinoderm and Flatworm Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
97 <option value="10">The Euplotid Nuclear Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
98 <option value="11">The Bacterial, Archaeal and Plant Plastid Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
99 <option value="12">The Alternative Yeast Nuclear Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
100 <option value="13">The Ascidian Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
101 <option value="14">The Alternative Flatworm Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
102 <option value="16">Chlorophycean Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
103 <option value="21">Trematode Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
104 <option value="22">Scenedesmus obliquus Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
105 <option value="23">Thraustochytrium Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
106 <option value="24">Pterobranchia Mitochondrial Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
107 <option value="5">Candidate Division SR1 and Gracilibacteria Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
108 <option value="26">Pachysolen tannophilus Nuclear Code</option>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
109 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
110 <conditional name="output">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
111 <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
112 <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
113 <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
114 <option value="101">SAM</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
115 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
116 <when value="5">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
117 <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
118 </when>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
119 <when value="6">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
120 <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
121 <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
122 <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
123 <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
124 <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
125 <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
126 <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
127 <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
128 <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
129 <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
130 <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
131 <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
132 <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
133 <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
134 <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
135 <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
136 <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
137 <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
138 <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
139 <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
140 <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
141 <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
142 <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
143 <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
144 <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
145 <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
146 <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
147 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
148 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
149 <when value="101">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
150 <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
151 </when>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
152 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
153 <param argument="--sensitive" type="boolean" truevalue="--sensitive" falsevalue="" checked="false" label="Trigger the sensitive alignment mode with a 16x9 seed shape configuration?" help=""/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
154 <param name="more_sensitive" argument="--more-sensitive" type="boolean" truevalue="--more-sensitive" falsevalue="" checked="false" label="Trigger the more sensitive mode?" help="This mode provides some additional sensitivity compared to the sensitive mode."/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
155 <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
156 <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
157 <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
158 <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
159 <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
160 <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
161 <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
162 <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
163 <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
164 <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
165 <option value="PAM30">PAM30 ((5-7)/2; (8-10)/1)</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
166 </param>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
167 <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
168 <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
169 <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
170 <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
171 <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
172 </param>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
173 <when value="max">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
174 <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
175 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
176 <when value="top">
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
177 <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
178 </when>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
179 </conditional>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
180 <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
181 <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
182 <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
183 <option value="min-score">Minimum bit score to report alignments</option>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
184 </param>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
185 <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
186 <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
187 </when>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
188 <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
189 <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
190 </when>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
191 </conditional>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
192 <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
193 <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
194 <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
195 </inputs>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
196
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
197 <outputs>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
198 <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
199 <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
200 </data>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
201 <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
202 <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
203 </data>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
204 <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
205 <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
206 </data>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
207 </outputs>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
208
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
209 <tests>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
210 <test>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
211 <param name="method_select" value="blastp" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
212 <param name="query" value="protein.fasta" ftype="fasta"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
213 <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
214 <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
215 <param name="query_gencode" value="1"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
216 <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
217 <param name="fields" value="qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore"/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
218 <param name="sensitive" value=""/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
219 <param name="more_sensitive" value=""/>
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
220 <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
221 <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
222 <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
223 <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
224 <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
225 <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
226 <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
227 <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
228 <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
229 <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
230 <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
231 <output name="blast_tabular" file="diamond_results.tabular"/>
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
232 </test>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
233 </tests>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
234
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
235 <help>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
236 <![CDATA[
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
237
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
238 **What it does**
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
239
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
240 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
241 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
242 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
243 times faster than BLASTX, finding more than 94% of all matches.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
244
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
245 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 recommend for small datasets.
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
246
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
247 .. _DIAMOND: http://ab.inf.uni-tuebingen.de/software/diamond/
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
248
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
249 **Input**
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
250
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
251 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
252
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
253
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
254 **Output**
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
255
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
256 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
257
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
258 Column Description
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
259 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
260 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
261 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
262 4 Alignment length
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
263 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
264 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
265 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
266 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
267 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
268 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
269 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
270 12 Bit score
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
271
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
272
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
273 Supported values for gap open and gap extend parameters depending on the selected scoring matrix.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
274
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
275 ======== ============================================
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
276 Matrix Supported values for (gap open)/(gap extend)
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
277 ======== ============================================
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
278 BLOSUM45 (10-13)/3; (12-16)/2; (16-19)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
279 BLOSUM50 (9-13)/3; (12-16)/2; (15-19)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
280 BLOSUM62 (6-11)/2; (9-13)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
281 BLOSUM80 (6-9)/2; 13/2; 25/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
282 BLOSUM90 (6-9)/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
283 PAM250 (11-15)/3; (13-17)/2; (17-21)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
284 PAM70 (6-8)/2; (9-11)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
285 PAM30 (5-7)/2; (8-10)/1
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
286 ======== ============================================
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 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
290 </help>
1
df7738595640 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit cc80b878817d052398db16574917900ebe15292e
bgruening
parents: 0
diff changeset
291 <expand macro="citations" />
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
292 </tool>