annotate blast_report_basic.xml @ 0:a61ee7b075c0 draft default tip

"planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
author public-health-bioinformatics
date Tue, 03 Mar 2020 06:11:45 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
1 <tool id="blast_report_basic" name="BLAST report" version="0.1.0+galaxy0" >
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
2 <description>Produce an HTML table report of BLAST results</description>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
3 <command>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
4 <![CDATA[
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
5 python '${__tool_directory__}/blast_report.py'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
6 --min-identity ${min_identity}
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
7 --filter-keywords '${filter_keywords}'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
8 $discard_redundant
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
9 '${tabular_blast_report_input}'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
10 '${__tool_directory__}/templates/template2.tmpl'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
11 '${out_html}'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
12 '${out_tab}'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
13 #if str($reference_database_bins) != "None"
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
14 #for $name, $path in zip(str($reference_database_bins.fields.name).split(','), str($reference_database_bins.fields.path).split(',')):
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
15 -b '${name}' '${path}'
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
16 #end for
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
17 #end if
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
18 ]]>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
19 </command>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
20 <inputs>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
21 <param name="tabular_blast_report_input" type="data" format="tabular" label="Tabular BLAST results (extended 25 columns + qcov)"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
22 <param name="min_identity" type="integer" min="90" max="100" value="97" label="Minimum percentage identity"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
23 <param name="filter_keywords" type="text" size="50" label="Comma-separated list of description keyword filters" value="bovine,clone,environmental,swine,uncultivated,uncultured,unidentified"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
24 <param name="reference_database_bins" type="select" label="Reference Database Bins" multiple="true" display="checkboxes">
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
25 <options from_data_table="blast_report_reference_database_bins">
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
26 <validator type="no_options" message="No BLAST reference bins available" />
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
27 </options>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
28 </param>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
29 <param name="discard_redundant" type="boolean" truevalue="-r" falsevalue="" label="Throw out redundant hits?"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
30 </inputs>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
31 <outputs>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
32 <data name="out_html" format="html" label="$tool.name on data $tabular_blast_report_input.hid: report"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
33 <data name="out_tab" format="tabular" label="$tool.name on data $tabular_blast_report_input.hid: tabular results"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
34 </outputs>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
35 <tests>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
36 <test>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
37 <param name="reference_database_bins" value="test_entry"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
38 <param name="tabular_blast_report_input" value="NR_114042.1_vs_NCBI16SMicrobial_top20_standard25col_plus_qcovs.tsv"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
39 <output name="out_tab" file="NR_114042.1_vs_NCBI16SMicrobial_output_report_tabular.tsv" ftype="tabular"/>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
40 </test>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
41 </tests>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
42 <help>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
43
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
44 .. class:: infomark
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
45
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
46 **What it does**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
47
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
48 This tool produces a HTML report for each query in a tabular BLAST file.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
49
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
50 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
51
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
52 **Tabular BLAST results**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
53
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
54 One or more query's BLAST results in extended 26 column tabular format.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
55
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
56 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
57
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
58 **Report template**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
59
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
60 The report template dictates the format of the HTML report.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
61 Note that changing the template from the standard "Top 20 hits shown, toggle remainder" to "Euzby results shown first" causes
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
62 the order of the results in the HTML report and the tabular BLAST results (if outputted) to be inconsistent with each other.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
63
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
64 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
65
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
66 **Minimum percentage identity**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
67
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
68 Filter by percentage identity. This filter is applied before the description keyword filters.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
69
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
70 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
71
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
72 **Comma-separated list of description keyword filters**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
73
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
74 Filter by description keywords. Do not include spaces (unless your keyword is two words). These are applied
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
75 after the percentage identity filter.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
76
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
77 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
78
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
79 **Database bins**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
80
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
81 Bin the results by accession number into "database bins."
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
82
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
83 ----
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
84
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
85 **Throw out redundant hits?**
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
86
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
87 Only the first hit for any accession number will be reported.
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
88
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
89 </help>
a61ee7b075c0 "planemo upload for repository https://github.com/public-health-bioinformatics/galaxy_tools/blob/master/tools/blast_report_basic commit b9c92df78fd78bf5881ab0cc5f5692d2bc71f5f6"
public-health-bioinformatics
parents:
diff changeset
90 </tool>