comparison tools/effectiveT3/README.rst @ 12:914f7ae776fc draft

Uploaded v0.0.12a, MIT licence, RST README, citation information
author peterjc
date Wed, 11 Sep 2013 06:11:20 -0400
parents
children 1e681e19e35c
comparison
equal deleted inserted replaced
11:392279f2e120 12:914f7ae776fc
1 Galaxy wrapper for EffectiveT3 v1.0.1
2 =====================================
3
4 This wrapper is copyright 2011-2013 by Peter Cock, The James Hutton Institute
5 (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved.
6 See the licence text below.
7
8 This is a wrapper for the command line Java tool EffectiveT3, v1.0.1,
9
10 Jehl, Arnold and Rattei.
11 Effective - a database of predicted secreted bacterial proteins
12 Nucleic Acids Research, 39(Database issue), D591-5, 2011.
13 http://dx.doi.org/10.1093/nar/gkq1154
14
15 Arnold, Brandmaier, Kleine, Tischler, Heinz, Behrens, Niinikoski, Mewes, Horn and Rattei.
16 Sequence-based prediction of type III secreted proteins.
17 PLoS Pathog. 5(4):e1000376, 2009.
18 http://dx.doi.org/10.1371/journal.ppat.1000376
19
20 http://effectors.org/
21
22 This wrapper is available from the Galaxy Tool Shed at:
23 http://toolshed.g2.bx.psu.edu/view/peterjc/effectivet3
24
25
26 Automated Installation
27 ======================
28
29 This should be straightforward, Galaxy should automatically download and install
30 the Jar files for effectiveT3 v1.0.1 and the three models (animal, plant and std).
31
32
33 Manual Installation
34 ===================
35
36 You can change the path by setting the environment variable EFFECTIVET3 to the
37 relevant folder, but by default it expects the following files to be installed
38 at these locations::
39
40 /opt/EffectiveT3/TTSS_GUI-1.0.1.jar
41 /opt/EffectiveT3/module/TTSS_ANIMAL-1.0.1.jar
42 /opt/EffectiveT3/module/TTSS_PLANT-1.0.1.jar
43 /opt/EffectiveT3/module/TTSS_STD-1.0.1.jar
44
45 To install the wrapper copy or move the following files under the Galaxy tools
46 folder, e.g. in a tools/effectiveT3 folder:
47
48 * effectiveT3.xml (the Galaxy tool definition)
49 * effectiveT3.py (the Python wrapper script)
50 * README.rst (this file)
51
52 Also copy effectiveT3.loc.sample to effectiveT3.loc in the tool-data folder
53 (and edit if appropriate, e.g. to add or remove a model).
54
55 You will also need to modify the tools_conf.xml file to tell Galaxy to offer the
56 tool. If you are using other protein analysis tools like TMHMM or SignalP, put
57 it next to them. Just add the line::
58
59 <tool file="effectiveT3/effectiveT3.xml" />
60
61 If you wish to run the unit tests, also add this to tools_conf.xml.sample
62 and move/copy the test-data files under Galaxy's test-data folder. Then::
63
64 $ ./run_functional_tests.sh -id effectiveT3
65
66 That's it.
67
68
69 History
70 =======
71
72 ======= ======================================================================
73 Version Changes
74 ------- ----------------------------------------------------------------------
75 v0.0.7 - Initial public release
76 v0.0.8 - Include effectiveT3.loc.sample in Tool Shed
77 v0.0.9 - Check the return code for errors in the XML
78 v0.0.10 - Added unit test
79 v0.0.11 - Automated installation
80 - Record version of Python script when called from Galaxy
81 - Link to Tool Shed added to help text and this documentation.
82 v0.0.12 - More explicit naming of the output dataset.
83 - Adopt standard MIT licence.
84 - Use reStructuredText for this README file.
85 - Updated citation information (Cock et al. 2013).
86 ======= ======================================================================
87
88
89 Developers
90 ==========
91
92 This script and related tools are being developed on the following hg branch:
93 http://bitbucket.org/peterjc/galaxy-central/src/tools
94
95 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball use
96 the following command from the Galaxy root folder::
97
98 $ tar -czf effectiveT3.tar.gz tools/effectiveT3/README.rst tools/effectiveT3/effectiveT3.xml tools/effectiveT3/effectiveT3.py tools/effectiveT3/tool_dependencies.xml tool-data/effectiveT3.loc.sample test-data/four_human_proteins.fasta test-data/four_human_proteins.effectiveT3.tabular test-data/empty.fasta test-data/empty_effectiveT3.tabular
99
100
101 Check this worked::
102
103 $ tar -tzf effectiveT3.tar.gz
104 tools/effectiveT3/README.rst
105 tools/effectiveT3/effectiveT3.xml
106 tools/effectiveT3/effectiveT3.py
107 tools/effectiveT3/tool_dependencies.xml
108 tool-data/effectiveT3.loc.sample
109 test-data/four_human_proteins.fasta
110 test-data/four_human_proteins.effectiveT3.tabular
111 test-data/empty.fasta
112 test-data/empty_effectiveT3.tabular
113
114
115 Licence (MIT)
116 =============
117
118 Permission is hereby granted, free of charge, to any person obtaining a copy
119 of this software and associated documentation files (the "Software"), to deal
120 in the Software without restriction, including without limitation the rights
121 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
122 copies of the Software, and to permit persons to whom the Software is
123 furnished to do so, subject to the following conditions:
124
125 The above copyright notice and this permission notice shall be included in
126 all copies or substantial portions of the Software.
127
128 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
129 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
130 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
131 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
132 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
133 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
134 THE SOFTWARE.
135
136 NOTE: This is the licence for the Galaxy Wrapper only.
137 EffectiveT3 is available and licenced separately.