annotate diamond_makedb.xml @ 0:98037ef3d2a9 draft

Imported from capsule None
author bgruening
date Sun, 08 Feb 2015 10:05:26 -0500
parents
children df7738595640
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
1 <tool id="bg_diamond_makedb" name="Diamond makedb" version="0.6.13">
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
2 <description>Build database from a FASTA file</description>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
3 <requirements>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
4 <requirement type="package" version="0.6.13">diamond</requirement>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
5 </requirements>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
6 <command>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
7 <!-- DB has two files, *.dmnd and *.tx -->
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
8 <![CDATA[
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
9 diamond makedb
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
10 --threads "\${GALAXY_SLOTS:-12}"
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
11 --in $infile
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
12 --db ./database
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
13 &&
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
14 mv ./database.dmnd $outfile
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
15 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
16 </command>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
17 <inputs>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
18 <param name="infile" type="data" format="fasta" label="Input reference file in FASTA format" />
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
19 </inputs>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
20
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
21 <outputs>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
22 <data format="diamond_database" name="outfile" label="Diamond database ${on_string}"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
23 </outputs>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
24 <tests>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
25 <test>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
26 <param name="infile" value="protein.fasta" ftype="fasta"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
27 <output name="outfile" file="diamond_makedb_result1.dmnd" ftpye="diamond_database"/>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
28 </test>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
29 </tests>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
30 <help>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
31 <![CDATA[
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
32
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
33 .. class:: infomark
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
34
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
35 **What it does**
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
36
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
37 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
38 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
39 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
40 times faster than BLASTX, finding more than 94% of all matches.
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
41
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
42 .. _DIAMOND: http://ab.inf.uni-tuebingen.de/software/diamond/
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
43
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
44
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
45 ]]>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
46 </help>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
47 <citations>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
48 <citation type="doi">10.1038/nmeth.3176</citation>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
49 </citations>
98037ef3d2a9 Imported from capsule None
bgruening
parents:
diff changeset
50 </tool>