annotate blast2go/blast2go.xml @ 6:872cf247c899 draft

Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
author peterjc
date Mon, 23 Sep 2013 05:50:58 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
1 <tool id="blast2go" name="Blast2GO" version="0.0.8">
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
2 <description>Maps BLAST results to GO annotation terms</description>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
3 <requirements>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
4 <requirement type="package" version="2.5">b2g4pipe</requirement>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
5 </requirements>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
6 <command interpreter="python">
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
7 blast2go.py "${xml}" "${prop.fields.path}" "${tab}"
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
8 </command>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
9 <stdio>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
10 <!-- Wrapper ensures anything other than zero is an error -->
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
11 <exit_code range="1:" />
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
12 <exit_code range=":-1" />
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
13 </stdio>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
14 <inputs>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
15 <param name="xml" type="data" format="blastxml" label="BLAST XML results" description="You must have run BLAST against a protein database such as the NCBI non-redundant (NR) database. Use BLASTX for nucleotide queries, BLASTP for protein queries." />
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
16 <param name="prop" type="select" label="Blast2GO settings" description="One or more configurations can be setup, such as using the Blast2GO team's server in Spain, or a local database.">
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
17 <options from_file="blast2go.loc">
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
18 <column name="value" index="0"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
19 <column name="name" index="1"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
20 <column name="path" index="2"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
21 </options>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
22 </param>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
23 </inputs>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
24 <outputs>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
25 <data name="tab" format="tabular" label="Blast2GO ${prop.fields.name}" />
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
26 </outputs>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
27 <tests>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
28 <test>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
29 <param name="xml" value="blastp_sample.xml" ftype="blastxml"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
30 <param name="prop" value="Spain_2011_June"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
31 <output name="tab" file="blastp_sample.blast2go.tabular" ftype="tabular"/>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
32 </test>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
33 </tests>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
34 <help>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
35 .. class:: warningmark
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
36
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
37 **Note**. Blast2GO may take a substantial amount of time, especially if
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
38 running against the public server in Spain. For large input datasets it
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
39 is advisable to allow overnight processing, or consider subdividing.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
40
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
41 -----
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
42
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
43 **What it does**
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
44
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
45 This runs b2g4Pipe v2.5, which is the command line (no GUI) version of
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
46 Blast2GO designed for use in pipelines.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
47
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
48 It takes as input BLAST XML results against a protein database, typically
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
49 the NCBI non-redundant (NR) database. This tool will accept concatenated
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
50 BLAST XML files (although they are technically invalid XML), which is very
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
51 useful if you have sub-divided your protein FASTA files and run BLAST on
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
52 them in batches.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
53
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
54 The BLAST matches are used to assign Gene Ontology (GO) annotation terms
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
55 to each query sequence.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
56
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
57 The output from this tool is a tabular file containing three columns, with
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
58 the order taken from query order in the original BLAST XML file:
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
59
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
60 ====== ====================
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
61 Column Description
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
62 ------ --------------------
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
63 1 ID of query sequence
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
64 2 GO term
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
65 3 GO description
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
66 ====== ====================
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
67
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
68 Note that if no GO terms are assigned to a sequence (e.g. if it had no
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
69 BLAST matches), then it will not be present in the output file.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
70
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
71 This tabular file is called an "Annotation File" in the Blast2GO GUI.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
72 If you download the tabular file, and rename it to use the extension
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
73 ".annot", then it can be opened with the Blast2GO GUI via the "File",
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
74 "Load Annotation (.annot)" menu (keyboard shortcut ALT+L). You can
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
75 then run some of the interactive analyses offered in the GUI tool.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
76
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
77
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
78 **Advanced Settings**
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
79
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
80 Blast2GO has a properties setting file which includes which database
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
81 server to connect to (e.g. the public server in Valencia, Spain, or a
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
82 local server), as well as more advanced options such as thresholds and
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
83 evidence code weights. To change these settings, your Galaxy administrator
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
84 must create a new properties file, and add it to the drop down menu above.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
85
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
86
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
87 **References**
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
88
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
89 If you use this Galaxy tool in work leading to a scientific publication please
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
90 cite the following papers:
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
91
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
92 Peter Cock, Bjoern Gruening, Konrad Paszkiewicz and Leighton Pritchard (2013).
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
93 Galaxy tools and workflows for sequence analysis with applications
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
94 in molecular plant pathology. PeerJ 1:e167
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
95 http://dx.doi.org/10.7717/peerj.167
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
96
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
97 S. Götz et al. (2008).
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
98 High-throughput functional annotation and data mining with the Blast2GO suite.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
99 Nucleic Acids Res. 36(10):3420–3435.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
100 http://dx.doi.org/10.1093/nar/gkn176
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
101
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
102 A. Conesa and S. Götz (2008).
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
103 Blast2GO: A Comprehensive Suite for Functional Analysis in Plant Genomics.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
104 International Journal of Plant Genomics. 619832.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
105 http://dx.doi.org/10.1155/2008/619832
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
106
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
107 A. Conesa et al. (2005).
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
108 Blast2GO: A universal tool for annotation, visualization and analysis in functional genomics research.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
109 Bioinformatics 21:3674-3676.
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
110 http://dx.doi.org/10.1093/bioinformatics/bti610
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
111
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
112 See also http://www.blast2go.com/
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
113
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
114 This wrapper is available to install into other Galaxy Instances via the Galaxy
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
115 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/blast2go
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
116
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
117 </help>
872cf247c899 Uploaded v0.0.8, auto-installation, RST README, MIT licence, citation information, development moved to GitHub, split out XML formatter into standalone script
peterjc
parents:
diff changeset
118 </tool>