comparison diamand_makedb.xml @ 0:ee4371aa0666 draft

Uploaded
author bgruening
date Sat, 07 Feb 2015 05:23:48 -0500
parents
children 09a565cfc192
comparison
equal deleted inserted replaced
-1:000000000000 0:ee4371aa0666
1 <tool id="bg_diamond_makedb" name="Diamond" version="0.6.13">
2 <description>Build database from a FASTA file</description>
3 <requirements>
4 <requirement type="package" version="0.6.13">diamond</requirement>
5 </requirements>
6 <command>
7 <!-- DB has two files, *.dmnd and *.tx -->
8 <![CDATA[
9 diamond makedb
10 --threads "\${GALAXY_SLOTS:-12}"
11 --in $infile
12 --db $outfile
13 ]]>
14 </command>
15 <inputs>
16 <param name="infile" type="data" format="fasta" label="Input reference file in FASTA format" />
17 </inputs>
18
19 <outputs>
20 <data format="compressed_archive" name="outfile" label="Diamond database ${on_string}"/>
21 </outputs>
22 <tests>
23 <test>
24 <param name="infile" value="protein.fasta" ftype="fasta"/>
25 <output name="outfile" file="diamond_makedb_result1.dmnd" ftpye="compressed_archive"/>
26 </test>
27 </tests>
28 <help>
29 <![CDATA[
30
31 .. class:: infomark
32
33 **What it does**
34
35 DIAMOND_ is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.
36 On Illumina reads of length 100-150bp, in fast mode, DIAMOND is about 20,000 times faster than BLASTX, while reporting
37 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
38 times faster than BLASTX, finding more than 94% of all matches.
39
40 .. _DIAMOND: http://ab.inf.uni-tuebingen.de/software/diamond/
41
42
43 ]]>
44 </help>
45 <citations>
46 <citation type="doi">10.1038/nmeth.3176</citation>
47 </citations>
48 </tool>