This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
prokka-software [2017/02/20 11:19] joguya created |
prokka-software [2020/09/18 11:47] (current) aorth |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== | + | ====== |
| + | |||
| + | Prokka is a software tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files. | ||
| - | Prokka is a software tool for the rapid annotation of prokaryotic genomes. | ||
| ===== Information ===== | ===== Information ===== | ||
| - | * Version: 1.11 | + | * Version: 1.14.6 |
| * Added: February, 2017 | * Added: February, 2017 | ||
| + | * Updated: May, 2020 | ||
| * Link: http:// | * Link: http:// | ||
| Line 14: | Line 16: | ||
| < | < | ||
| - | Load prokka | + | Load one version into your environment and run it: |
| - | < | + | < |
| + | $ prokka</ | ||
| + | |||
| + | **Note:** Please use the %%'' | ||
| ===== Installation ====== | ===== Installation ====== | ||
| Line 21: | Line 26: | ||
| Notes from the sysadmin during installation: | Notes from the sysadmin during installation: | ||
| - | < | + | < |
| - | $ cd /tmp/ | + | $ wget https:// |
| - | $ wget -qO- https:// | + | $ tar xf v1.14.6.tar.gz |
| - | $ cd prokka-1.11/ | + | $ cd prokka-1.14.6 |
| - | $ scl enable devtoolset-3 bash | + | $ module load perl/5.28.2 |
| - | $ module load perl/5.22.3 | + | $ mkdir perl5 |
| - | $ cpanm SWISS:: | + | $ cpanm -l perl5 Time::Piece XML:: |
| - | $ sed -i 's#/usr/bin/perl.*#/usr/bin/env perl#' bin/* | + | $ export PERL5LIB=perl5/lib/perl5 |
| - | $ sudo mkdir -p / | + | $ grep -rh -oE "use Bio:: |
| - | $ sudo cp -rv . / | + | $ cpanm -l perl5 Bio:: |
| + | # we apparently also need Bio:: | ||
| + | $ cpanm -l perl5 Bio:: | ||
| + | $ ./bin/prokka --setupdb | ||
| + | $ sudo mkdir -p / | ||
| + | $ sudo cp -r . / | ||
| </ | </ | ||
| + | **Note 1:** Prokka only says that it requires BioPerl, but the BioPerl distribution frowns upon requiring the entire distribution. Here I have attempted to guess which modules are needed by checking the actual Perl " | ||
| + | |||
| + | **Note 2:** You can try without %%'' | ||