annotate tools/protein_analysis/nlstradamus.txt @ 1:f93ad4882338 draft

Uploaded v0.0.6, adds unit tests and minor documentation changes.
author peterjc
date Wed, 17 Apr 2013 08:26:25 -0400
parents 0ad90e5eb390
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
1 Galaxy wrapper for NLStradamus v1.7 or v1.8 (C++ version)
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
2 =========================================================
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
3
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
4 This wrapper is copyright 2011-2013 by Peter Cock, The James Hutton Institute
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
5 (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
6 See the licence text below.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
7
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
8 NLStradamus is a command line tools for predicting nuclear localization
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
9 signals (NLSs) in a FASTA file of proteins using a Hidden Markov Model (HMM).
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
10
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
11 A. N. Nguyen Ba, A. Pogoutse, N. Provart, A. M. Moses.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
12 NLStradamus: a simple Hidden Markov Model for nuclear localization signal prediction.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
13 BMC Bioinformatics. 2009 Jun 29;10(1):202.
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
14 http://dx.doi.org/10.1186/1471-2105-10-202
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
15
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
16 http://www.moseslab.csb.utoronto.ca/NLStradamus
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
17
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
18 Early versions of NLStradamus did not have a native tabular output format, this
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
19 was added in version 1.7. Additionally a fast C++ implementation was added at
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
20 this point (early versions of NLStradamus came as a perl script only).
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
21
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
22 Version 1.8 fixed a C++ compilation issue on modern compilers, but is otherwise
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
23 unchanged.
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
24
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
25
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
26 Installation
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
27 ============
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
28 This wrapper expects the compiled C++ binary "NLStradamus" to be on the system
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
29 PATH.
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
30
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
31 To install the wrapper copy or move the following files under the Galaxy tools
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
32 folder, e.g. in a tools/protein_analysis folder:
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
33
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
34 * nlstradamus.xml (the Galaxy tool definition)
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
35 * nlstradamus.txt (this README file)
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
36
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
37 You will also need to modify the tools_conf.xml file to tell Galaxy to offer the
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
38 tool. If you are using other protein analysis tools like TMHMM or SignalP, put
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
39 it next to them. Just add the line:
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
40
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
41 <tool file="protein_analysis/nlstradamus.xml" />
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
42
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
43 If you wish to run the unit tests, also add this to tools_conf.xml.sample
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
44 and move/copy the test-data files under Galaxy's test-data folder.
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
45
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
46 That's it.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
47
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
48
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
49 History
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
50 =======
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
51
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
52 v0.0.3 - Initial public release
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
53 v0.0.4 - Adding DOI link to reference
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
54 (Documentation change only)
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
55 v0.0.5 - Assume non-zero return codes are errors
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
56 v0.0.6 - Show output help text using a table
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
57 - Added unit tests
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
58
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
59
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
60 Developers
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
61 ==========
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
62
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
63 This script and related tools are being developed on the following hg branch:
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
64 http://bitbucket.org/peterjc/galaxy-central/src/tools
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
65
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
66 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball use
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
67 the following command from the Galaxy root folder:
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
68
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
69 $ tar -czf nlstradmus.tar.gz tools/protein_analysis/nlstradamus.xml tools/protein_analysis/nlstradamus.txt test-data/four_human_proteins.fasta test-data/four_human_proteins.nlstradamus.tabular test-data/empty.fasta test-data/empty_nlstradamus.tabular
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
70
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
71 Check this worked:
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
72
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
73 $ tar -tzf nlstradmus.tar.gz
1
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
74 tools/protein_analysis/nlstradamus.xml
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
75 tools/protein_analysis/nlstradamus.txt
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
76 test-data/four_human_proteins.fasta
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
77 test-data/four_human_proteins.nlstradamus.tabular
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
78 test-data/empty.fasta
f93ad4882338 Uploaded v0.0.6, adds unit tests and minor documentation changes.
peterjc
parents: 0
diff changeset
79 test-data/empty_nlstradamus.tabular
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
80
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
81
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
82 Licence (MIT/BSD style)
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
83 =======================
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
84
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
85 Permission to use, copy, modify, and distribute this software and its
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
86 documentation with or without modifications and for any purpose and
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
87 without fee is hereby granted, provided that any copyright notices
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
88 appear in all copies and that both those copyright notices and this
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
89 permission notice appear in supporting documentation, and that the
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
90 names of the contributors or copyright holders not be used in
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
91 advertising or publicity pertaining to distribution of the software
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
92 without specific prior permission.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
93
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
94 THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
95 WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
96 WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
97 CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
98 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
99 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
100 OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
101 OR PERFORMANCE OF THIS SOFTWARE.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
102
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
103 NOTE: This is the licence for the Galaxy Wrapper only. NLStradamus
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
104 is available and licenced separately.