1
|
1 <tool id="blast2html_test" name="blast2html_test" version="0.0.18">
|
0
|
2
|
|
3 <description>Convert BLAST XML to HTML</description>
|
|
4
|
|
5 <requirements>
|
|
6 <requirement name="package" version="0.2">blast2html_venv</requirement>
|
|
7 </requirements>
|
|
8
|
|
9 <command interpreter="python">blast2html.py -i "${input}" -o "${output}" --db-config-dir "${GALAXY_DATA_INDEX_DIR}"</command>
|
|
10
|
|
11 <stdio>
|
|
12 <!-- Any exit code other than 0 is an error -->
|
|
13 <exit_code range="1:" />
|
|
14 <exit_code range=":-1" />
|
|
15 </stdio>
|
|
16
|
|
17 <inputs>
|
|
18 <param format="blastxml" name="input" type="data" label="Source file"/>
|
|
19 </inputs>
|
|
20
|
|
21 <outputs>
|
|
22 <data format="html" name="output" />
|
|
23 </outputs>
|
|
24
|
|
25 <help>
|
|
26 Blast2html: Blast XML to HTML conversion tool
|
|
27 =============================================
|
|
28
|
1
|
29 This is the help section in blast2html.xml
|
|
30
|
0
|
31 This tool accepts Blast XML as input, and creates an HTML page with a human readable version of the result. The output includes graphical displays of where a sequence matches a target and metrics on the quality of the match.
|
|
32
|
|
33 Example output:
|
|
34
|
|
35 .. image:: blast2html_screenshot1.png
|
|
36 :alt: Screenshot of sample output
|
|
37 :align: center
|
|
38
|
|
39 The output format is based on the graphical summary pages on the `NCBI Blast website`_. But as the code for generating such pages is not available we implemented our own clone.
|
|
40
|
|
41 .. _`NCBI Blast website`: http://blast.ncbi.nlm.nih.gov/Blast.cgi
|
|
42
|
|
43
|
|
44 Galaxy configuration
|
|
45 --------------------
|
|
46
|
|
47 This tool generates an HTML page from Blast XML input. It can be used as a stand-alone command line tool, but it is meant to be used in workflows in Galaxy_. To use this tool in Galaxy some configuration may be required.
|
|
48
|
|
49 By default Galaxy strips a lot of style information from HTML files before showing them on the screen. The results of this tool will still be somewhat useful but they will be a lot uglier without the styles. You can still download the original generated HTML of course. If you want to view the full result within Galaxy you need to disable this stripping of style information by adding the following line to your Galaxy's ``galaxy.ini``::
|
|
50
|
|
51 sanitize_all_html = False
|
|
52
|
|
53 In order to generate links to a gene bank in the result, you will need to tell blast2html what gene bank to use. If you do not configure a gene bank the result will contain links to the NCBI gene bank, and as a name for the gene bank the generic "Gene Bank" is used. These links will only work if the database you are using uses the same accession codes as the NCBI gene bank. To show links to a different gene bank this needs to be configured in Galaxy.
|
|
54
|
|
55 As at the moment this tool was built Galaxy did not have a good way to specify such configuration directives to tools, we use a slightly ugly solution. The gene bank configuration are added to the NCBI BLAST+ database definition files in Galaxy's ``tool-data`` directory. This directory should contain some files named ``blastdb.loc``, ``blastdb_p.loc``, ``blastdb_d.loc`` etc. that define the databases that the NCBI BLAST+ tool knows about. For BLAST, these files contain three columns of tab-separated data that define the databases. The normal format is::
|
|
56
|
|
57 <unique_id> <database_caption> <base_name_path>
|
|
58
|
|
59 with tabs separating the three components. For blast2html we extend this format with two columns that contain a human-readable gene bank name, and a link template. So each row then contains these tab-separated items::
|
|
60
|
|
61 <unique_id> <database_caption> <base_name_path> <genebank_name> <genebank_link_template>
|
|
62
|
|
63 NCBI Blast+ will ignore the extra fields in the file.
|
|
64
|
|
65 So, for example, for a database named ``nt`` with path ``/depot/data2/galaxy/blastdb/nt/nt.chunk`` that uses NCBI nucleontide database accession codes you can use the following definition line::
|
|
66
|
|
67 nt_02_Dec_2009 nt 02 Dec 2009 /depot/data2/galaxy/blastdb/nt/nt.chunk NCBI Gene Bank http://www.ncbi.nlm.nih.gov/nucleotide/{accession}?report=genbank&log$=nuclalign
|
|
68
|
|
69 The syntax for the link template is the same as that used by the ``--genelink-template`` command line option (see next section): It can contain the following replacement elements: ``{id[N]}``, ``{fullid}``, ``{defline[N]}``, ``{fulldefline}``, ``{accession}``, where ``N`` is a number. ``id[N]`` and ``defline[N]`` will be replaced by the Nth element of the id or defline, where '``|``' is the field separator.
|
|
70
|
|
71
|
|
72 .. _Galaxy: https://www.galaxyproject.org/
|
|
73
|
|
74
|
|
75 Command line usage
|
|
76 ------------------
|
|
77
|
|
78 ::
|
|
79
|
|
80 usage: ./blast2html.py [-i] INPUT [-o OUTPUT] [--genelink-template URL_TEMPLATE] [--dbname DBNAME]
|
|
81
|
|
82 Convert a BLAST XML result into a nicely readable html page
|
|
83
|
|
84 positional arguments:
|
|
85 INPUT The input Blast XML file, same as -i/--input
|
|
86
|
|
87 optional arguments:
|
|
88 -h, --help show this help message and exit
|
|
89 -i INPUT, --input INPUT
|
|
90 The input Blast XML file
|
|
91 -o OUTPUT, --output OUTPUT
|
|
92 The output html file
|
|
93 --template TEMPLATE The template file to use. Defaults to
|
|
94 blast_html.html.jinja
|
|
95 --dbname DBNAME The link text to use for external links to a gene bank
|
|
96 database. Defaults to 'Gene Bank'
|
|
97 --genelink-template URL_TEMPLATE
|
|
98 A link template to link hits to a gene bank webpage.
|
|
99 The template string is a Python format string. It can
|
|
100 contain the following replacement elements: {id[N]},
|
|
101 {fullid}, {defline[N]}, {fulldefline}, {accession},
|
|
102 where N is a number. id[N] and defline[N] will be
|
|
103 replaced by the Nth element of the id or defline,
|
|
104 where '|' is the field separator. The default is 'http
|
|
105 ://www.ncbi.nlm.nih.gov/nucleotide/{accession}?report=
|
|
106 genbank&log$=nuclalign', which is a link to the NCBI
|
|
107 nucleotide database.
|
|
108 --db-config-dir DB_CONFIG_DIR
|
|
109 The directory where databases are configured in
|
|
110 blastdb*.loc files. These files are consulted for
|
|
111 creating a gene bank link. The files should conform to
|
|
112 the format that Galaxy's BLAST expect, i.e. tab-
|
|
113 separated tables (with lines starting with '#'
|
|
114 ignored), with two extra fields, for a total of five
|
|
115 fields per line instead of three.. The third field of
|
|
116 each line should be a database path as used by BLAST.
|
|
117 The fourth field is the human readable database name,
|
|
118 and the fifth a template link to the gene bank
|
|
119 conforming to the syntax for the --genelink-template
|
|
120 option. Entries in these config files override links
|
|
121 specified using --genelink-template and --dbname.
|
|
122
|
|
123
|
|
124 Authorship
|
|
125 ----------
|
|
126
|
|
127 This tool was created and published by `The Hyve B.V.`_ open source bioinformatics solutions.
|
|
128
|
|
129 .. image:: thehyve_logo.png
|
|
130 :alt: The Hyve
|
|
131 :align: center
|
|
132 :target: http://thehyve.nl
|
|
133
|
|
134 .. _`The Hyve B.V.`: http://thehyve.nl/
|
|
135
|
|
136
|
|
137 Licensing information
|
|
138 ---------------------
|
|
139
|
|
140 Blast2html is free software: you can redistribute it and/or modify
|
|
141 it under the terms of the GNU General Public License as published by
|
|
142 the Free Software Foundation, either version 3 of the License, or
|
|
143 (at your option) any later version.
|
|
144
|
|
145 This program is distributed in the hope that it will be useful,
|
|
146 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
147 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
148 GNU General Public License for more details.
|
|
149
|
|
150 You should have received a copy of the GNU General Public License
|
|
151 along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
152 </help>
|
|
153
|
|
154 </tool>
|