annotate readme.txt @ 4:796814f16b12

Add tool_dependencies.xml and update to new augustus version. Thanks to James Johnson for the patch.
author bjoern-gruening
date Tue, 30 Oct 2012 06:29:50 -0400
parents d5d5999ff4f1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
1 Galaxy wrapper for Augustus
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
2 =====================================
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
3
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
4 This wrapper is copyright 2012 by Björn Grüning.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
5
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
6 This is a wrapper for the command line tool of augustus.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
7 http://bioinf.uni-greifswald.de/augustus/
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
8
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
9 AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
10
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
11 Oliver Keller, Martin Kollmar, Mario Stanke, Stephan Waack (2011)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
12 A novel hybrid gene prediction method employing protein multiple sequence alignments
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
13 Bioinformatics, doi: 10.1093/bioinformatics/btr010
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
14
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
15 Mario Stanke, Mark Diekhans, Robert Baertsch, David Haussler (2008)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
16 Using native and syntenically mapped cDNA alignments to improve de novo gene finding
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
17 Bioinformatics, doi: 10.1093/bioinformatics/btn013
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
18
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
19 Mario Stanke and Stephan Waack (2003)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
20 Gene Prediction with a Hidden-Markov Model and a new Intron Submodel.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
21 Bioinformatics, Vol. 19, Suppl. 2, pages ii215-ii225
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
22
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
23
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
24
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
25
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
26 Installation
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
27 ============
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
28
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
29 Install or downlaod augustus from:
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
30
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
31 http://bioinf.uni-greifswald.de/augustus/binaries/
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
32
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
33 and follow the installation instructions or copy the binaries into your $PATH
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
34
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
35 To install the wrapper copy the augustus folder in the galaxy tools
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
36 folder and modify the tools_conf.xml file to make the tool available to Galaxy.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
37 For example:
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
38
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
39 <section name="Gene Prediction" id="gene_prediction">
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
40 <tool file="gene_prediction/tools/augustus/augustus.xml" />
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
41 </section>
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
42
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
43
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
44 Set the AUGUSTUS_CONFIG_PATH to /path_to_augustus/augustus/config with
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
45 export AUGUSTUS_CONFIG_PATH=/path_to_augustus/augustus/config
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
46 or modify the wrapper and use the following additional commandline switch:
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
47 --AUGUSTUS_CONFIG_PATH=/path_to_augustus/augustus/config
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
48
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
49
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
50
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
51
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
52 History
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
53 =======
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
54
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
55 v0.1 - Initial public release
4
796814f16b12 Add tool_dependencies.xml and update to new augustus version. Thanks to James Johnson for the patch.
bjoern-gruening
parents: 2
diff changeset
56 v0.2 - Added tool_dependencies.xml file and update the augustus version (thanks to James Johnson)
0
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
57
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
58
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
59 Wrapper Licence (MIT/BSD style)
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
60 ===============================
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
61
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
62 Permission to use, copy, modify, and distribute this software and its
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
63 documentation with or without modifications and for any purpose and
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
64 without fee is hereby granted, provided that any copyright notices
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
65 appear in all copies and that both those copyright notices and this
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
66 permission notice appear in supporting documentation, and that the
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
67 names of the contributors or copyright holders not be used in
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
68 advertising or publicity pertaining to distribution of the software
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
69 without specific prior permission.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
70
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
71 THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
72 WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
73 WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
74 CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
75 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
76 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
77 OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
78 OR PERFORMANCE OF THIS SOFTWARE.
9fb7ae02453c initial uploaded
bjoern-gruening
parents:
diff changeset
79