Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
easyblock = 'PerlModule'

name = 'Bio-SearchIO-hmmer'
version = '1.7.3'

homepage = 'https://metacpan.org/pod/Bio::SearchIO::hmmer3'
description = """Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatible
with both version 2 and version 3 of the HMMER package from http://hmmer.org."""

toolchain = {'name': 'GCC', 'version': '11.3.0'}

source_urls = ['https://cpan.metacpan.org/authors/id/C/CJ/CJFIELDS/']
sources = [SOURCE_TAR_GZ]
checksums = ['686152f8ce7c611d27ee35ac002ecc309f6270e289a482993796a23bb5388246']

dependencies = [
('Perl', '5.34.1'),
('BioPerl', '1.7.8'),
]

options = {'modulename': 'Bio::SearchIO::hmmer3'}

sanity_check_paths = {
'files': ['bin/bp_%s.pl' % x for x in ['hmmer_to_table', 'parse_hmmsearch']],
'dirs': [],
}

moduleclass = 'bio'
50 changes: 50 additions & 0 deletions easybuild/easyconfigs/p/prokka/prokka-1.14.5-gompi-2022a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# EasyBuild easyconfig
#
# John Dey jfdey@fredhutch.org
# Fred Hutchenson Cancer Research Center
#
# Updated: Pavel Grochal (INUITS)

easyblock = 'Tarball'

name = 'prokka'
version = '1.14.5'

homepage = 'https://www.vicbioinformatics.com/software.prokka.shtml'
description = "Prokka is a software tool for the rapid annotation of prokaryotic genomes."

toolchain = {'name': 'gompi', 'version': '2022a'}

source_urls = ['https://github.com/tseemann/prokka/archive/']
sources = ['v%(version)s.zip']
checksums = ['0c13dd5621c352633565f5831c4e85ce2e1e400c2f17ba50800282ae121803ff']

dependencies = [
('BioPerl', '1.7.8'),
('BLAST+', '2.13.0'),
('Java', '11', '', SYSTEM),
('Bio-SearchIO-hmmer', '1.7.3'),
('parallel', '20220722'),
('tbl2asn', '20220427', '-linux64', SYSTEM),
]

local_bin_files = ['prokka', 'prokka-cdd_to_hmm', 'prokka-genpept_to_fasta_db', 'prokka-tigrfams_to_hmm',
'prokka-biocyc_to_fasta_db', 'prokka-clusters_to_hmm', 'prokka-hamap_to_hmm',
'prokka-uniprot_to_fasta_db', 'prokka-build_kingdom_dbs', 'prokka-genbank_to_fasta_db',
'prokka-make_tarball']

postinstallcmds = ["%(installdir)s/bin/prokka --setupdb"]

sanity_check_paths = {
'files': ['bin/%s' % x for x in local_bin_files] + ['binaries/linux/aragorn', 'db/cm/Bacteria', 'doc/ToDoList.txt'],
'dirs': ['bin', 'binaries', 'db', 'db/cm', 'db/genus', 'db/hmm', 'db/kingdom', 'doc'],
}

sanity_check_commands = [
"prokka --version",
"prokka --listdb",
]

modloadmsg = "prokka scripts are located in $EBROOTPROKKA/bin; databases are located in $EBROOTPROKKA/db\n"

moduleclass = 'bio'