comparison README.rst @ 6:8615fd8abc04 draft

Uploaded v0.0.16, moving to MIT license and development on GitHub. No functional changes.
author peterjc
date Mon, 29 Jul 2013 12:55:49 -0400
parents
children a44a7a5456e1
comparison
equal deleted inserted replaced
5:b3a3ba0c1d47 6:8615fd8abc04
1 Galaxy datatypes for NCBI BLAST+ suite
2 ======================================
3
4 These Galaxy datatypes are copyright 2010-2013 by Peter Cock, The James Hutton
5 Institute (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved.
6 Contributions/revisions copyright 2012 Edward Kirton. All rights reserved.
7 Contributions/revisions copyright 2013 Nicola Soranzo. All rights reserved.
8
9 See the licence text below.
10
11 Note that these files (and the associated BLAST+ wrappers) were originally
12 distributed as part of the main Galaxy repository, but as of August 2012 moved
13 to the Galaxy Tool Shed as 'blast_datatypes' (and 'ncbi_blast_plus' for the
14 wrappers). My thanks to Dannon Baker from the Galaxy development team for his
15 assistance with this.
16
17
18 History
19 =======
20
21 These versions numbers initially matched those for 'ncbi_blast_plus', but are
22 not used explicitly in the datatypes themselves.
23
24 ======= ======================================================================
25 Version Changes
26 ------- ----------------------------------------------------------------------
27 v0.0.11 - Final revision as part of the Galaxy main repository, and the
28 first release via the Tool Shed
29 v0.0.13 - Uses blast.py instead of xml.py to define the datatypes
30 v0.0.14 - Includes datatypes for protein and nucleotide BLAST databases
31 (based on work by Edward Kirton)
32 v0.0.15 - Fixes a MetadataElement bug and includes more of the optional
33 BLAST database files (contribution from Nicola Soranzo)
34 v0.0.16 - Adopt standard MIT License.
35 - Development moved to GitHub, https://github.com/peterjc/galaxy_blast
36 ======= ======================================================================
37
38
39 Installation
40 ============
41
42 Doing this automatically via the Galaxy Tool Shed is probably simplest.
43
44
45 Manual Installation
46 ===================
47
48 Normally you would install this via the Galaxy ToolShed, which would move
49 the provided blast.py file into a suitable location and process the
50 datatypes_conf.xml entry to be combined with your local configuration.
51
52 However, if you really want to this should work for a manual install. Add
53 the following lines to the datatypes_conf.xml file in the Galaxy main folder::
54
55 <datatype extension="blastxml" type="galaxy.datatypes.blast:BlastXml" mimetype="application/xml" display_in_upload="true"/>
56 <datatype extension="blastdbn" type="galaxy.datatypes.blast:BlastNucDb" mimetype="text/html" display_in_upload="false"/>
57 <datatype extension="blastdbp" type="galaxy.datatypes.blast:BlastProtDb" mimetype="text/html" display_in_upload="false"/>
58
59 and later in the sniffer section::
60
61 <sniffer type="galaxy.datatypes.blast:BlastXml"/>
62
63 Also create the file lib/galaxy/datatypes/blast.py by moving, copying or linking
64 the blast.py file provided in this tar-ball. Finally add 'import blast' near
65 the start of file lib/galaxy/datatypes/registry.py (after the other import
66 lines).
67
68
69 Bug Reports
70 ===========
71
72 You can file an issue here https://github.com/peterjc/galaxy_blast/issues or ask
73 us on the Galaxy development list http://lists.bx.psu.edu/listinfo/galaxy-dev
74
75
76 Developers
77 ==========
78
79 BLAST+ datatypes and wrappers, and other tools were originally developed on the
80 following hg branch: http://bitbucket.org/peterjc/galaxy-central/src/tools
81
82 As of July 2013, development is continuing on a dedicated GitHub repository:
83 https://github.com/peterjc/galaxy_blast
84
85 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball I use
86 the following command from the blast_datatypes folder::
87
88 $ tar -czf blast_datatypes.tar.gz README.rst datatypes_conf.xml blast.py
89
90 Check this worked::
91
92 $ tar -tzf blast_datatypes.tar.gz
93 README.rst
94 datatypes_conf.xml
95 blast.py
96
97 For development, rather than having a local ToolShed running, I currently
98 use a symlink from lib/galaxy/datatypes/blast.py to the actual file as
99 described above.
100
101
102 Licence (MIT)
103 =============
104
105 Permission is hereby granted, free of charge, to any person obtaining a copy
106 of this software and associated documentation files (the "Software"), to deal
107 in the Software without restriction, including without limitation the rights
108 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
109 copies of the Software, and to permit persons to whom the Software is
110 furnished to do so, subject to the following conditions:
111
112 The above copyright notice and this permission notice shall be included in
113 all copies or substantial portions of the Software.
114
115 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
116 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
117 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
118 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
119 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
120 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
121 THE SOFTWARE.
122
123 NOTE: This is the licence for the Galaxy BLAST datatypes **only**. BLAST+
124 and associated data files are available and licenced separately.