# HG changeset patch # User lionelguy # Date 1378308793 14400 # Node ID 2bb7c28ea68ff201db01e108b2327a0677afe01c # Parent 5c0b71c6a2b0102604a100225070e9d853ea44cd Committed version 0.2: added dependency management and a readme file, and support prokka 1.7 diff -r 5c0b71c6a2b0 -r 2bb7c28ea68f prokka.xml --- a/prokka.xml Tue Sep 03 10:15:54 2013 -0400 +++ b/prokka.xml Wed Sep 04 11:33:13 2013 -0400 @@ -1,14 +1,14 @@ - + prokaryotic genome annotation - prokka + prokka aragorn - rnammer prodigal - signalp - infernal - hmmer - blast+ + barrnap + + + hmmer + blast+ tbl2asn prokka --version @@ -17,12 +17,26 @@ --prefix prokka $addgenes --locustag $locustag + $compliant --increment $increment + #if str($centre) != "" --centre $centre - --genus $genus --species $species --strain $strain + #end if + #if str($genus) != "" + --genus $genus + #end if + #if str($species) != "" + --species $species + #end if + #if str($strain) != "" + --strain $strain + #end if + #if str($plasmid) != "" + --plasmid $plasmid + #end if --kingdom $kingdom --gcode $gcode - #if $gram != "none" + #if $gram != "None" --gram $gram #end if $usegenus @@ -31,6 +45,9 @@ --cpus $cpus --mincontig $mincontig --evalue $evalue + $rfam + $norrna + $notrna $input @@ -38,10 +55,12 @@ - + + + @@ -60,6 +79,8 @@ + + @@ -74,8 +95,13 @@ - - + + + + **What it does** diff -r 5c0b71c6a2b0 -r 2bb7c28ea68f readme.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/readme.rst Wed Sep 04 11:33:13 2013 -0400 @@ -0,0 +1,35 @@ +Prokka wrapper +============== + +Warning +------- + +Prokka comes with custom databases and is thus very large: **~2Gb**! + +Note +---- + +- **infernal** >= 1.1rc4 is an optional dependency to find non-coding RNAs. An executable is shipped with prokka. +- **SignalP** >= 3.0 is an optional dependency to find signal peptides. For licensing reasons, no automatic dependency is managed. +- **tbl2asn** >= 21.0 is required. This dependency is not managed here. The reason is that versions are increasing very rapidly. The software can be downloaded from the NCBI (ftp) at the following address. +ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/converters/by_program/tbl2asn/ +- **BioPerl** >= 1.6 is required, but the dependency is not managed here, although it might in future. +- **GNU Parallel** >= 20120322 is required but is shipped with Prokka and thus is not managed by the tool dependency system + +Version history +--------------- + +- v0.2: added this readme file, supports prokka 1.7 and adds dependencies management. +- v0.1: initial release in the toolshed, supports prokka 1.6. + + +Copyright +--------- + +prokka is developed by Torsten Seemann at Victorian Bioinformatics Consortium http://www.bioinformatics.net.au/. prokka is released under GPLv3 or later. + +This wrapper is copyrighted by Lionel Guy, and is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. diff -r 5c0b71c6a2b0 -r 2bb7c28ea68f repository_dependencies.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/repository_dependencies.xml Wed Sep 04 11:33:13 2013 -0400 @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff -r 5c0b71c6a2b0 -r 2bb7c28ea68f tool_dependencies.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_dependencies.xml Wed Sep 04 11:33:13 2013 -0400 @@ -0,0 +1,38 @@ + + + + + + http://www.vicbioinformatics.com/prokka-1.7.tar.gz + + $INSTALL_DIR/bin + $INSTALL_DIR/binaries + $INSTALL_DIR/db + $INSTALL_DIR/doc + + bin + $INSTALL_DIR/bin + + + binaries + $INSTALL_DIR/binaries + + + db + $INSTALL_DIR/db + + + doc + $INSTALL_DIR/doc + + + $INSTALL_DIR/bin + + + + + +This installs prokka 1.7 +Note: this is about a 2.0 GB download due to included custom databases. + +